@blockchain-com/icons
v0.0.6
Published
This package is responsible for providing the blockchain.com icons as an npm package
Downloads
249
Keywords
Readme
@blockchain-com/icons
This package is responsible for providing the blockchain.com icons as an npm package
Install
yarn add @blockchain-com/icons
Usage
import { IconActivity } from "@blockchain-com/icons";
export const App = () => {
return (
<div>
<IconActivity />
</div>
);
};
Add new icon
- add icon named like this
icon-{name}.svg
to/assets
folder - Run
yarn build
Now your new icon is included in the /dist
folder and you can publish a new version of this package
Publish
-- TODO