@project-jade-garden/reka-ui
Version:
Reka UI anatomy slots for headless design
24 lines (23 loc) • 720 B
text/typescript
import { SVATraits } from 'jade-garden';
/**
* **Separator**
* @description Visually or semantically separates content.
* @see [source](https://reka-ui.com/docs/components/separator#anatomy)
*/
export declare const slots: readonly ["root"];
/**
* **Separator**
* @description Visually or semantically separates content.
* @see [source](https://reka-ui.com/docs/components/separator#anatomy)
*/
export type Slots = (typeof slots)[number];
/**
* **Separator**
* @description Visually or semantically separates content.
* @see [source](https://reka-ui.com/docs/components/separator#api-reference)
*/
export type Traits = SVATraits<Slots, {
root: {
orientation: "vertical" | "horizontal";
};
}>;