@spaced-out/ui-design-system
Version:
Sense UI components library
30 lines • 966 B
TypeScript
import * as React from 'react';
import type { Flow } from 'flow-to-typescript-codemod';
import type { ColorTypes } from '../../../types/typography';
import type { IconType } from '../../../components/Icon';
import type { Orientation } from '../../../components/Timeline/Timeline';
type ClassNames = Readonly<{
card?: string;
icon?: string;
title?: string;
wrapper?: string;
description?: string;
}>;
export interface TimelineItemProps {
id?: string;
last?: boolean;
title?: React.ReactNode;
iconName: string;
children: React.ReactNode;
iconType?: IconType;
iconColor?: ColorTypes;
classNames?: ClassNames;
description?: React.ReactNode;
orientation?: Orientation;
parentComponent?: React.ReactNode;
enableCardWrapper?: boolean;
testId?: string;
}
export declare const TimelineItem: Flow.AbstractComponent<TimelineItemProps, HTMLDivElement>;
export {};
//# sourceMappingURL=TimelineItem.d.ts.map