# Separator
Visual divider for grouping related sections.

## Import/Installation

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

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

## Preview

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

## Usage

```tsx
<Separator orientation="horizontal" />
<Separator orientation="vertical" />
```

## Props

Built on [Base UI Separator](https://base-ui.com/react/components/separator). See their docs for prop-level details.
