This package is responsible for providing the blockchain.com icons as an npm package
yarn add @blockchain-com/icons
import { IconActivity } from "@blockchain-com/icons";
export const App = () => {
return (
<div>
<IconActivity />
</div>
);
};
- 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
-- TODO