UNPKG

@antv/s2-react-components

Version:

React components for S2

13 lines (12 loc) 420 B
import React from 'react'; import type { DroppableType } from '../constant'; import type { DimensionCommonProps, SwitcherField } from '../interface'; import './index.less'; type DimensionProps = SwitcherField & DimensionCommonProps & { droppableType: DroppableType; text: string; icon: React.FunctionComponent; crossRows?: boolean; }; export declare const Dimension: React.FC<DimensionProps>; export {};