Icons
By Gagan BiswasUsage:
You can always click on the icons above to copy the svg and use it in your desired framework.
All icons are available as individual React components. Install icon set from npm:
Import the icons into your React project:
import { ArrowRight, Sun } from "@struct-ui/icons";
function MyComponent() {
return (
<div>
<ArrowRight />
<Sun />
</div>
);
}