8 lines
296 B
TypeScript
8 lines
296 B
TypeScript
import { FunctionalComponent } from 'vue';
|
|
import { AntdIconProps } from '../components/AntdIcon';
|
|
export interface BoxPlotTwoToneIconType extends FunctionalComponent<AntdIconProps> {
|
|
displayName: string;
|
|
}
|
|
declare const BoxPlotTwoTone: BoxPlotTwoToneIconType;
|
|
export default BoxPlotTwoTone;
|