@dcp-designable/components
Version:
公共组件及业务组件
17 lines (16 loc) • 405 B
TypeScript
import * as React from 'react';
import './index.less';
interface IndexProps {
content: string;
maxLen?: number;
expandText?: string;
collapseText?: string;
onExpand?: (expanded: boolean) => void;
}
/**
* 自定义文字展开收起组件
* @param props
* @constructor
*/
declare function TextExpand(props: IndexProps): React.JSX.Element;
export default TextExpand;