@bearishfh/icons
v1.0.5
Published
SVG icon library for Bearish UI
Readme
🐻 @bearishfh/icons
Lightweight, tree-shakeable SVG icon set for React. Required by @bearishfh/components.
📦 Installation
npm install @bearishfh/iconspnpm add @bearishfh/iconsUsing
@bearishfh/components? Install both together:pnpm add @bearishfh/components @bearishfh/icons
⚡️ Usage
import { BearIcon, ArrowRightIcon, CheckIcon } from "@bearishfh/icons";
export default function App() {
return <BearIcon size={24} />;
}🧱 Props
| Prop | Type | Default |
|---|---|---|
| size | number \| string | 24 |
| color | string | "currentColor" |
| strokeWidth | number | 1.5 |
| className | string | — |
🤝 With Components
Icons work seamlessly alongside @bearishfh/components:
import "@bearishfh/components/styles.css";
import { Button } from "@bearishfh/components";
import { ArrowRightIcon } from "@bearishfh/icons";
export default function App() {
return (
<Button>
Continue <ArrowRightIcon size={16} />
</Button>
);
}📝 License
MIT © Bearish FH
