@bronzelabs/tribe-icons
v1.0.11
Published
A collection of icons used as part of the Tribe Design System.
Downloads
49
Readme
Tribe icons
A collection of icons used as part of the Tribe Design System.
Installation
npm i @bronzelabs/tribe-iconsUsage
Use within in your jsx as a React component:
import { IcAccess } from "@bronzelabs/tribe-icons"
const MyComponent = () => {
return <IcAccess />
}Or, where available, pass to directly to another component:
import { Button } from "@bronzelabs/tribe-ui"
import { IcAccess } from "@bronzelabs/tribe-icons"
const MyComponent = () => {
return <Button icon={IcAccess}>Hello World</Button>
}