| 1234567891011121314151617181920 |
- import type { PassThroughProps } from "../../types";
- export type ClReadMorePassThrough = {
- className?: string;
- content?: PassThroughProps;
- mask?: PassThroughProps;
- toggle?: PassThroughProps;
- };
- export type ClReadMoreProps = {
- className?: string;
- pt?: ClReadMorePassThrough;
- modelValue?: boolean;
- height?: any;
- expandText?: string;
- collapseText?: string;
- expandIcon?: string;
- collapseIcon?: string;
- disabled?: boolean;
- };
|