mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-19 11:21:24 +02:00
|
|
||
|---|---|---|
| .. | ||
| Button.tsx | ||
| index.ts | ||
| README.md | ||
Button
Pressable button with variants, sizes, and icon support.
Installation
```bash npx @memoro/ui add button ```
Usage
```tsx import { Button } from '@/components/ui/Button';
<Button title="Click me" variant="primary" onPress={() => {}} /> <Button title="With Icon" icon="add" onPress={() => {}} />