managarten/apps/picture/packages/mobile-ui/components/ui/Button
Wuesteon ff80aeec1f refactor: restructure
monorepo with apps/ and services/
  directories
2025-11-26 03:03:24 +01:00
..
Button.tsx refactor: restructure 2025-11-26 03:03:24 +01:00
index.ts refactor: restructure 2025-11-26 03:03:24 +01:00
README.md refactor: restructure 2025-11-26 03:03:24 +01:00

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={() => {}} />