npm install @struct-ui/icons
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 Struct Icons from npm:
npm install @struct-ui/icons
Import the icons into your React project:
import { ArrowRight, Sun } from "@struct-ui/icons";function MyComponent() {return (<div><ArrowRight /><Sun /></div>);}