UNPKG

@spaced-out/ui-design-system

Version:
28 lines 883 B
import * as React from 'react'; import type { Flow } from 'flow-to-typescript-codemod'; import type { ColorTypes } from '../../../types/typography'; import type { IconType } from '../../Icon'; import type { Orientation } from '../Timeline'; type ClassNames = Readonly<{ card?: string; icon?: string; title?: string; wrapper?: string; description?: string; }>; export type TimelineItemProps = { id?: string; title?: React.ReactNode; iconName: string; children: React.ReactNode; iconType?: IconType; iconColor?: ColorTypes; classNames?: ClassNames; description?: React.ReactNode; orientation?: Orientation; parentComponent?: React.ReactNode; enableCardWrapper?: boolean; }; export declare const TimelineItem: Flow.AbstractComponent<TimelineItemProps, HTMLDivElement>; export {}; //# sourceMappingURL=TimelineItem.d.ts.map