streamline-icons
v0.1.8
Published
A stream line icons library package for React applications
Readme
Available as basic SVG icons and via first-party React libraries.
Basic Usage
icon styles are preconfigured to be stylable by setting the fill CSS property,
either manually or using utility classes like fill-gray-500 in a framework like Tailwind CSS.
each icon can be imported individually as a React component:
import { AcademicAnnualGray, AcademicAnnualDark, AcademicAnnualLight } from 'streamline-icons'
function MyComponent() {
return (
<div>
<AcademicAnnualGray size={20} />
<AcademicAnnualDark className="h-8 w-8 " />
<AcademicAnnualLight fill="red" />
<p>...</p>
</div>
)
}License
This library is MIT licensed.
