React icons for IFRC-GO project.
yarn add @ifrc-go/icons
#or
npm install @ifrc-go/icons
For local development
docker-compose up page-dev
For building the NextJS project
docker-compose up page-build
Each icon can be imported as a react component.
import { MenuLineIcon } from '@ifrc-go/icons';
function MyComponent() {
return (
<div>
<MenuLineIcon className={{ color: #3b82f6 }} />
</div>
)
}
Each icon has its stroke
and fill
property set to currentColor
. The icon style can be set using the color
CSS property.
This library is MIT licensed.