Install the icon pack from npm.
npm install kidogo
You can now import each icon that you want to use.
import { Box } from "kidogo/duoline";
function MyComponent() {
return (
<div>
<Box />
...
</div>
);
}You can control the color of each icon using the color and secondaryColor props.
<Box color="#00CBA6" secondaryColor="#C6DFDB" />This library is MIT licensed.