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.
- Host: GitHub
- URL: https://github.com/godaddy-wordpress/coblocks-icons
- Owner: godaddy-wordpress
- Created: 2020-08-06T20:12:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-05-30T18:53:01.000Z (about 3 years ago)
- Last Synced: 2025-04-04T03:33:31.709Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/@godaddy-wordpress/coblocks-icons
- Size: 486 KB
- Stars: 2
- Watchers: 5
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
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
```