nuxt-svg-icons
Version:
A module for Nuxt 3 that allows you to use your own SVG icons as a component, url or raw text.
33 lines (32 loc) • 1.02 kB
TypeScript
type __VLS_Props = {
name: string;
fontSize?: string | number;
size?: string | number;
fill?: string;
color?: string;
stroke?: string;
fillOpacity?: string;
strokeOpacity?: string;
strokeWidth?: string;
useOriginalSize?: boolean;
showLoading?: boolean;
loadingClass?: string;
};
declare var __VLS_1: {};
type __VLS_Slots = {} & {
loading?: (props: typeof __VLS_1) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
mounted: () => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
onMounted?: (() => any) | undefined;
}>, {
showLoading: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};