Icon set for buildstash.com
First, install stashicons/react
from npm:
npm install stashicons/react
Now each icon can be imported individually as a React component:
import { CodeIcon } from 'stashicons/react/base'
function MyComponent() {
return (
<div>
<CodeIcon className="size-4" />
<p>...</p>
</div>
)
}
The icons can be imported from stashicons/react/base
or stashicons/react/brand
.
Icons use an upper camel case naming convention and are always suffixed with the word Icon
.
This library is MIT licensed. See license file for terms and copyright notices.