@spaced-out/ui-design-system
Version:
Sense UI components library
19 lines • 586 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
export declare const ORIENTATION: Readonly<{
left: "left";
right: "right";
}>;
type ClassNames = Readonly<{
wrapper?: string;
}>;
export type Orientation = (typeof ORIENTATION)[keyof typeof ORIENTATION];
export interface TimelineProps {
children: React.ReactNode;
classNames?: ClassNames;
orientation?: Orientation;
testId?: string;
}
export declare const Timeline: Flow.AbstractComponent<TimelineProps, HTMLDivElement>;
export {};
//# sourceMappingURL=Timeline.d.ts.map