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