Skip to content

Latest commit

 

History

History
63 lines (44 loc) · 1.47 KB

README.md

File metadata and controls

63 lines (44 loc) · 1.47 KB

NextIcons

NPM Downloads NPM Version NPM License

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@latest

Example 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.