This package is responsible for providing the blockchain.com icons as an npm package
yarn add @blockchain-com/iconsimport { IconActivity } from "@blockchain-com/icons";
export const App = () => {
return (
<div>
<IconActivity />
</div>
);
};- add icon named like this
icon-{name}.svgto/assetsfolder - Run
yarn build
Now your new icon is included in the /dist folder and you can publish a new version of this package
-- TODO