UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

10 lines 419 B
import type * as React from 'react'; import { Separator as SeparatorPrimitive } from 'radix-ui'; /** * Visually or semantically separates content. * * https://ui.shadcn.com/docs/components/separator */ declare function Separator({ className, orientation, decorative, ...props }: React.ComponentProps<typeof SeparatorPrimitive.Root>): React.ReactElement; export { Separator }; //# sourceMappingURL=separator.d.ts.map