Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-timeline-item/props.ts
2025-07-21 16:47:04 +08:00

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