Skip to content

A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration.

License

Notifications You must be signed in to change notification settings

Next-Icons/next-icons

Repository files navigation

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.

About

A lightweight icon component library for React and Next.js, designed for simplicity and seamless integration.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published