element-plus
Version:
A Component Library for Vue 3
12 lines (11 loc) • 416 B
TypeScript
import type { StyleValue } from 'vue';
import type { TableV2RowCellRenderParam } from './row';
declare const ExpandIcon: (props: TableV2RowCellRenderParam['expandIconProps'] & {
class?: string | string[];
style: StyleValue;
size: number;
expanded: boolean;
expandable: boolean;
}) => JSX.Element;
export default ExpandIcon;
export declare type ExpandIconInstance = ReturnType<typeof ExpandIcon>;