A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration. Each icon is designed on a 24x24 grid.
yarn add @deemlol/next-icons@latest
or
npm i @deemlol/next-icons@latest
import { Check } from "@deemlol/next-icons";
export default function Home() {
return <Check />;
}
You can also include the whole icon pack:
import * as Icon from "@deemlol/next-icons";
export default function Home() {
return <Icon.Check />;
}
Our icons can be also configured with inline props.
<Check size={40} color="#FF0000" />
If you need, you can also use className="" in the props.
Do you like our icons? You can sponsor us via Ko-Fi, it will help us a lot!