29 lines
340 B
Markdown
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
|
|
```
|
|
|