0.1.0 • Published 2 years ago

@indigohive/mui-unicons-line-icons v0.1.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

MUI Unicons Line Icons

This package provides React components to use Line Icons from the Unicons icon library, compatible with icons from the MUI package.

For a complete list of icons, visit the Unicons icon library explorer.

Getting started

First, install the package:

npm install @indigohive/mui-unicons-line-icons

Then, import and use the icon you want:

import React from 'react'
import UilWifi from '@indigohive/mui-unicons-line-icons/UilWifi'

export default function App () {
  return (
    <div>
      <UilWifi />
    </div>
  )
}