props.ts 365 B

1234567891011121314151617
  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. safeAreaBottom?: boolean;
  15. };