berry-ui-kit
v1.0.2
Published
The Official Strawberry AI UI component library for React/NextJS.
Maintainers
Readme
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-kitPeer Dependencies
This library requires the following peer dependencies:
react: ^17.0.0 or ^18.0.0react-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>
)
}