@project-jade-garden/bits-ui
Version:
Bits UI anatomy slots for headless design
22 lines (21 loc) • 775 B
TypeScript
import { SVATraits } from 'jade-garden';
/**
* **Separator**
* @description Visually separates content or UI elements for clarity and organization.
* @see [source](https://www.bits-ui.com/docs/components/separator#api-reference)
*/
export declare const slots: readonly ["root"];
/**
* **Separator**
* @description Visually separates content or UI elements for clarity and organization.
* @see [source](https://www.bits-ui.com/docs/components/separator#api-reference)
*/
export type Slots = (typeof slots)[number];
/**
* **Separator**
* @description Visually separates content or UI elements for clarity and organization.
* @see [source](https://www.bits-ui.com/docs/components/separator#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {};
}>;