props.ts 338 B

12345678910111213141516
  1. import type { PassThroughProps } from "../../types";
  2. export type ClLoadmorePassThrough = {
  3. className?: string;
  4. icon?: PassThroughProps;
  5. text?: PassThroughProps;
  6. };
  7. export type ClLoadmoreProps = {
  8. className?: string;
  9. pt?: ClLoadmorePassThrough;
  10. loading?: boolean;
  11. loadingText?: string;
  12. finish?: boolean;
  13. finishText?: string;
  14. };