Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 352 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 352 Bytes

react-basicons

React package for simple customizable icons https://basicons.xyz

Installation

npm i react-basicons

Usage

import { CheckGoodYes as Check } from 'react-basicons'

const DownloadCompleteComponent: React.FC<IconConfig> = () => (
    <div>
        <Check />
        <span>Download complete!</span>
    </div>
)