@devpaps/paps-icon
v1.0.4
Published
React icons library of PAPS-APP
Downloads
82
Readme
Paps Icons
A crisp set of 24×24 icons designed by the TeamBlue team.
Documentation
All icons are available as individual React components.
Install Paps Icons from npm or yarn:
npm install paps-icon --save
# or
yarn add paps-icon
Import the icons into your React project:
import { AccessAlarm, AccessTime, AccountBalance } from 'paps-icon';
function MyComponent() {
return (
<div>
<AccessAlarm />
<AccessTime />
<AccountBalance />
</div>
);
}
With props:
import { AccessAlarm } from 'paps-icon';
function MyComponent() {
return (
<div>
<AccessAlarm title={"AccessAlarm"} color={"red"} width={32} height={32} />
</div>
);
}
License
Licensed under the ISC License, Copyright © 2022-present WorkOS.
See LICENSE for more information.