20 lines
412 B
TypeScript
20 lines
412 B
TypeScript
import type { PassThroughProps } from "../../types";
|
|
|
|
export type ClTimelineItemPassThrough = {
|
|
classNames?: string;
|
|
icon?: PassThroughProps;
|
|
title?: PassThroughProps;
|
|
content?: PassThroughProps;
|
|
date?: PassThroughProps;
|
|
};
|
|
|
|
export type ClTimelineItemProps = {
|
|
className?: string;
|
|
pt?: ClTimelineItemPassThrough;
|
|
title?: string;
|
|
icon?: string;
|
|
content?: string;
|
|
date?: string;
|
|
hideLine?: boolean;
|
|
};
|