0.1.9 • Published 12 months ago
@deemlol/next-icons v0.1.9
A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration. Each icon is designed on a 24x24 grid.
Installation (for standard modern project)
yarn add @deemlol/next-icons@latest
# or
npm install @deemlol/next-icons@latestExample Usage
import { Cookie } from "@deemlol/next-icons";
export default function Question() {
return (
<h1>
Do you want <Cookie />?
</h1>
);
}You can also include the whole icon pack:
import * as Icon from "@deemlol/next-icons";
export default function Question() {
return (
<h1>
Do you want <Icon.Cookie />?
</h1>
);
}Configuration
Our icons can be also configured with inline props
<Cookie size={40} color="#FF0000" className="flex items-center" />Our Website
For more information, visit our Official Website.
Support
If you encounter any issues or have questions, feel free to reach out to our Support Team.
License
This project is licensed under the MIT License. See the LICENSE for more information.