@ucloud-pccl/react-components
Version:
UCloud pccl react components
12 lines (11 loc) • 436 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) => React.JSX.Element | null>;
export default _default;