managarten/apps/picture/packages/mobile-ui/components/ui/Button/README.md
Wuesteon d36b321d9d style: auto-format codebase with Prettier
Applied formatting to 1487+ files using pnpm format:write
  - TypeScript/JavaScript files
  - Svelte components
  - Astro pages
  - JSON configs
  - Markdown docs

  13 files still need manual review (Astro JSX comments)
2025-11-27 18:33:16 +01:00

686 B

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