1.0.0-beta.2 • Published 6 years ago

@ied/tag v1.0.0-beta.2

Weekly downloads
16
License
MIT
Repository
-
Last release
6 years ago

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,
}