@thinkbuff/figma-react
Version:
A Figma React UI components for creating plugins and widgets
10 lines (9 loc) • 530 B
TypeScript
import * as SeparatorPrimitive from '@radix-ui/react-separator';
/**
* Visually or semantically separates content.
*
* - [Docs](https://www.radix-ui.com/docs/primitives/components/separator)
* - [API Reference](https://www.radix-ui.com/primitives/docs/components/separator#api-reference)
*/
declare const Separator: import('react').ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & import('react').RefAttributes<HTMLDivElement>, "ref"> & import('react').RefAttributes<HTMLDivElement>>;
export { Separator };