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