| 12345678910111213141516171819 |
- 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;
- };
|