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