# Button

Clickable button with multiple variants and sizes

## Example

## Button

Clickable button with multiple variants and sizes

**Source:** [`packages/appkit-ui/src/react/ui/button.tsx`](https://github.com/databricks/appkit/blob/main/packages/appkit-ui/src/react/ui/button.tsx)

### Props

| Prop | Type | Required | Default | Description |
|------|------|----------|---------|-------------|
| `variant` | `"link" \| "default" \| "destructive" \| "secondary" \| "outline" \| "ghost" \| null` |  | - | - |
| `size` | `"default" \| "sm" \| "lg" \| "icon" \| "icon-sm" \| "icon-lg" \| null` |  | - | - |
| `asChild` | `boolean` |  | `false` | - |

### Usage

```tsx
import { Button } from '@databricks/appkit-ui';

```
