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