Simple readme

This commit is contained in:
Alex Louden 2020-08-03 12:17:54 +08:00
parent c6c54f08e0
commit 7280e08c58
No known key found for this signature in database
GPG key ID: E5E90055152127FE
2 changed files with 24 additions and 1 deletions

23
react/README.md Normal file
View file

@ -0,0 +1,23 @@
# react-systemuicons
A react library for https://systemuicons.com/
### Usage
Install
```bash
npm install react-systemuicons
```
Import
```js
import { AlarmClock } from "react-systemuicons"
// 21px by default
<AlarmClock />
// custom size & color
<AlarmClock size={100} color="red" />
```

View file

@ -1 +1 @@
export { default as AlarmClock } from './icons/alarm_clock'
export { default as AlarmClock } from './alarm_clock'