An open API service indexing awesome lists of open source software.

https://github.com/godaddy-wordpress/coblocks-icons

Shared Component that includes all icons used by the CoBlocks plugin.
https://github.com/godaddy-wordpress/coblocks-icons

Last synced: about 1 year ago
JSON representation

Shared Component that includes all icons used by the CoBlocks plugin.

Awesome Lists containing this project

README

          

# CoBlocks Icons

Repository of icons used inside of CoBlocks, ready to use either as a React Component or plain SVG file.

See the [complete list](icons.md).

## Install

```bash
npm install @godaddy-wordpress/coblocks-icons
```

## Usage

### Standalone

```js
import { SettingsIcon } from '@godaddy-wordpress/coblocks-icons

return (

{ SettingsIcon }

)
```

### Using WordPress Icon for width/height control

```js
import { Icon } from '@wordpress/icons';
import { SettingsIcon } from '@godaddy-wordpress/coblocks-icons';

return (

)
```

## How to deploy

```bash
npm version minor
git push
git push --tags
npm publish
```