@ied/badge
v1.0.1
Published
## Install
Downloads
14
Readme
Badge
Install
yarn add @ied/badge
If you use icon props add this to your index.html
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
Use
import Badge from '@ied/badge'
<Badge firstName="Clark" lastName="Kent" />
<Badge firstName="Clark" lastName="Kent" small />
<Badge text="1" />
<Badge icon="people" />
<Badge icon="people" small />
Types
type Props = {
firstName?: string,
lastName?: string,
text?: string,
icon?: string,
small?: boolean,
}