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 install @deemlol/next-icons@latest
import { Cookie } from "@deemlol/next-icons";
export default function Question() {
return (
<h1>
Do you want <Cookie />?
</h1>
);
}
import * as Icon from "@deemlol/next-icons";
export default function Question() {
return (
<h1>
Do you want <Icon.Cookie />?
</h1>
);
}
Our icons can be also configured with inline props
<Cookie size={40} color="#FF0000" className="flex items-center" />
For more information, visit our Official Website.
If you encounter any issues or have questions, feel free to reach out to our Support Team.
This project is licensed under the MIT License. See the LICENSE for more information.