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