props.ts 412 B

12345678910111213141516171819
  1. import type { PassThroughProps } from "../../types";
  2. export type ClTimelineItemPassThrough = {
  3. classNames?: string;
  4. icon?: PassThroughProps;
  5. title?: PassThroughProps;
  6. content?: PassThroughProps;
  7. date?: PassThroughProps;
  8. };
  9. export type ClTimelineItemProps = {
  10. className?: string;
  11. pt?: ClTimelineItemPassThrough;
  12. title?: string;
  13. icon?: string;
  14. content?: string;
  15. date?: string;
  16. hideLine?: boolean;
  17. };