@spaced-out/ui-design-system
Version:
Sense UI components library
19 lines • 594 B
TypeScript
import type { Flow } from 'flow-to-typescript-codemod';
type ClassNames = Readonly<{
wrapper?: string;
}>;
export declare const ORIENTATION: Readonly<{
horizontal: "horizontal";
vertical: "vertical";
}>;
export type OrientationType = (typeof ORIENTATION)[keyof typeof ORIENTATION];
export interface SeparatorProps {
classNames?: ClassNames;
orientation?: OrientationType;
width?: string;
height?: string;
testId?: string;
}
export declare const Separator: Flow.AbstractComponent<SeparatorProps, HTMLDivElement>;
export {};
//# sourceMappingURL=Separator.d.ts.map