1.0.2 • Published 6 months ago

berry-ui-kit v1.0.2

Weekly downloads
-
License
-
Repository
-
Last release
6 months ago

Berry UI Kit

The official Strawberry AI UI component library for React/NextJS.

It's storybook is publicly published at https://ui.usestrawberry.ai/.

Installation

npm install berry-ui-kit

Peer Dependencies

This library requires the following peer dependencies:

  • react: ^17.0.0 or ^18.0.0
  • react-dom: ^17.0.0 or ^18.0.0

Example of usageUsage

import { Button } from 'berry-ui-kit'

function App() {
  return (
    <BerryButton variant="primary">
      Click me
    </BerryButton>
  )
}