1.0.0-beta.7 • Published 11 months ago

@klnjs/react-icons v1.0.0-beta.7

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@klnjs/react-icons

A collection of ready to use icons for React.

The icons are all based on the the source from mdi.

All available icons can be viewed here.

Installation

Install the @klnjs/react-icons package using your preferred package manager.

npm install @klnjs/react-icons

How to Use

All icons are available as individual React components, and is rendered into the dom as SVG.

import { Abacus, Calendar } from '@klnjs/react-icons'

export const MyComponent = () => (
	<div>
		<Abacus />
		<Calendar />
	</div>
)