Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 911 Bytes

README.md

File metadata and controls

46 lines (33 loc) · 911 Bytes

serif-ui-components

  • serif-ui-components is a component library with React, Typescript and Tailwind CSS.

See the Full Documentation

Install

  npm install serif-ui-components
  # or
  yarn add serif-ui-components

Usage

  • Add the index.css file to the root of your project.
  import 'serif-ui-components/dist/index.css'
  • Import components and use them.
import { Button } from 'serif-ui-components'

const App = () => {
  return (
    <div>
      <Button buttonType="outline" label="Serif test" />
    </div>
  )
}

See All Components in Chromatic

Roadmap

  • Button ✔️
  • Checkbox ✔️
  • Input 🚧
  • Select 🚧