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