solid-tabler-icons
v1.119.0
Published
SolidJS Components for Tabler Icons.
Downloads
15
Readme
solid-tabler-icons
SolidJS Components for Tabler Icons.
Usage
Install package from npmjs.com
npm install solid-tabler-icons
Use Icons :)
import { IconAward } from "solid-tabler-icons";
const MyComponent = () => {
return (
<IconAward
size={36} // set custom `width` and `height`
color="red" // set `stroke` color
stroke={3} // set `stroke-width`
/>
);
};