@ucloud-fe/react-components
Version:
UCloud react components
12 lines (11 loc) • 430 B
TypeScript
import React, { MouseEvent } from 'react';
interface ExpandIconProps {
record: any;
prefixCls: string;
expandable: any;
expanded: boolean;
needIndentSpaced: boolean;
onExpand: (record: any, e: MouseEvent) => void;
}
declare const _default: React.MemoExoticComponent<({ expandable, prefixCls, onExpand, needIndentSpaced, expanded, record }: ExpandIconProps) => JSX.Element | null>;
export default _default;