` |
| `TableHead` | `| ` |
| `TableCell` | ` | ` |
| `TableCaption` | `` |
Each subcomponent extends the matching native HTML table element's
attributes.
---
# Tabs (https://murasaki.ichi10.com/docs/components/tabs)
## Usage [#usage]
```tsx
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@murasakijs/ui";
```
```tsx
Account
Password
Account settings.
Password settings.
```
## API Reference [#api-reference]
### Subcomponents [#subcomponents]
| Component | Description |
| ------------- | ------------------------------------------------------------------------------------ |
| `Tabs` | The root primitive. Accepts `value`, `defaultValue`, `onValueChange`, `orientation`. |
| `TabsList` | The row of triggers. |
| `TabsTrigger` | A tab button. Accepts `value` (required) and `disabled`. |
| `TabsContent` | The panel shown when its matching `value` is active. |
All subcomponents wrap Radix UI's [`Tabs`](https://www.radix-ui.com/primitives/docs/components/tabs)
primitives and forward every other prop.
---
# Textarea (https://murasaki.ichi10.com/docs/components/textarea)
## Usage [#usage]
```tsx
import { Textarea } from "@murasakijs/ui";
```
```tsx
```
## API Reference [#api-reference]
### Props [#props]
`Textarea` is a thin styled wrapper around the native ` |