solicons3
v1.0.0
Published
Custom icon package generated by IconForge
Readme
solicons3
Custom React SVG icon package built using IconForge.
Installation
Install the package via npm, yarn, or pnpm:
npm install solicons3Usage
Import the icons and use them as standard React components:
import { Download } from 'solicons3';
function App() {
return (
<div>
<Download size={24} color="#8b5cf6" />
</div>
);
}Component Props
All icons inherit standard SVG attributes and support the following custom options:
| Property | Type | Default | Description |
|---|---|---|---|
| size | number \| string | 24 | Width & height of the icon. |
| color | string | 'currentColor' | Stroke/fill color of the SVG. |
| strokeWidth | number \| string | | Stroke width for line-based icons. |
| className | string | | Additional CSS classes for custom styling. |
