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