@ied/tag
v1.0.0-beta.2
Published
## Install
Downloads
8
Readme
Tag
Install
yarn add @ied/tag
Use
Simple
import Tag from '@ied/tag'
<Tag label="Bookkeeping" />
With dot
import Tag from '@ied/tag'
<Tag label="Bookkeeping" withDot />
Types
type Props = {
label: string,
style?: {},
onClick?: MouseEvent => void,
className?: string,
withDot?: boolean,
}