d29c1ebe93164aefd0d5c8fceea3fe6f4482d285c4980ac791459abf7058518225abc100d651507985a6552cceba129c7b34042a0b52beb01ec17af447aefc 408 B

1234567891011
  1. import type { StyleValue } from 'vue';
  2. import type { TableV2RowCellRenderParam } from './row';
  3. declare const ExpandIcon: (props: TableV2RowCellRenderParam["expandIconProps"] & {
  4. class?: string | string[];
  5. style: StyleValue;
  6. size: number;
  7. expanded: boolean;
  8. expandable: boolean;
  9. }) => JSX.Element;
  10. export default ExpandIcon;
  11. export type ExpandIconInstance = ReturnType<typeof ExpandIcon>;