Files
the_order/packages/ui/README.md

29 lines
340 B
Markdown

# @the-order/ui
Design system and UI components for The Order.
## Usage
```tsx
import { Button } from '@the-order/ui';
function MyComponent() {
return <Button variant="primary">Click me</Button>;
}
```
## Components
- `Button` - Button component with variants
## Development
```bash
# Build
pnpm build
# Watch mode
pnpm dev
```