UNPKG

mozaic-ui

Version:

Mozaic UI is a minimal and extensible UI component library for React. It provides reusable, accessible, and customizable components, perfect for modern web interfaces. Built with scalability and developer experience in mind.

26 lines (25 loc) 459 B
import { Button } from './Button'; const meta = { title: 'Components/Button', component: Button, tags: ['autodocs'], }; export default meta; export const Primary = { args: { children: 'Primary', variant: 'primary', }, }; export const Success = { args: { children: 'Success', variant: 'success', }, }; export const Error = { args: { children: 'Error', variant: 'error', }, };