99.10.0 • Published 4 years ago

@temporg/ui-pill v99.10.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

category: packages

ui-pill

npm  build-status  MIT License  Code of Conduct

Use Pills to communicate concise status with an identifiable color and supportive text.

Components

The ui-pill package contains the following:

Installation

yarn add @temporg/ui-pill

Usage

---
example: false
---
import React from 'react'
import { Pill } from '@temporg/ui-pill'

const MyPill = () => {
  return (
    <Pill
      color="info"
      margin="x-small"
    >
      Draft
    </Pill>
  )
}