props.ts 436 B

1234567891011121314151617181920
  1. import type { PassThroughProps } from "../../types";
  2. export type ClReadMorePassThrough = {
  3. className?: string;
  4. content?: PassThroughProps;
  5. mask?: PassThroughProps;
  6. toggle?: PassThroughProps;
  7. };
  8. export type ClReadMoreProps = {
  9. className?: string;
  10. pt?: ClReadMorePassThrough;
  11. modelValue?: boolean;
  12. height?: any;
  13. expandText?: string;
  14. collapseText?: string;
  15. expandIcon?: string;
  16. collapseIcon?: string;
  17. disabled?: boolean;
  18. };