ShopFilled.d.ts 280 B

1234567
  1. import { FunctionalComponent } from 'vue';
  2. import { AntdIconProps } from '../components/AntdIcon';
  3. export interface ShopFilledIconType extends FunctionalComponent<AntdIconProps> {
  4. displayName: string;
  5. }
  6. declare const ShopFilled: ShopFilledIconType;
  7. export default ShopFilled;