# Label
Form label component with default, title, and inline variants.

## Import/Installation

<Tabs items={[{ label: 'Package', value: 'package' }, { label: 'Registry', value: 'registry' }]}>
  <TabsContent value="package">
    ```tsx
    import { Label } from "@lottiefiles/creator-plugins-ui";
    ```
  </TabsContent>

  <TabsContent value="registry">
    ```bash
    npx shadcn@latest add @lottiefiles/label
    ```
  </TabsContent>
</Tabs>

## Preview

<iframe src="https://creator-plugins-ds.lottiefiles.com/?story=label--all-variants&mode=preview" style={{ width: "100%", border: "1px solid rgba(128, 128, 128, 0.4)", borderRadius: "8px" }} height="478" title="Label component live preview" frameBorder="no" loading="lazy" />

## Usage

```tsx
<Label htmlFor="field">Field</Label>
<Label variant="title">Section</Label>
<Label variant="inline">Inline label</Label>
```

## Props

<PropsTable
  props={[
  {
    name: "variant",
    type: '"default" | "title" | "inline"',
    default: '"default"',
    description:
      "Visual presentation of the label. Use `title` for section headings, `inline` for radio/checkbox rows.",
  },
]}
/>
