/** * @import { FunctionalComponent } from 'vue' */ /** * @typedef { object } IconProps * @property { string } [code] * * @typedef { FunctionalComponent } IconFC * @typedef { Parameters } IconParams * * @param { IconParams[0] } props * @param { IconParams[1] } ctx * @returns { ReturnType } */ export default function Icon({ code }: IconParams[0], { slots }: IconParams[1]): ReturnType; export type IconProps = { code?: string | undefined; }; export type IconFC = FunctionalComponent; export type IconParams = Parameters; import type { FunctionalComponent } from 'vue'; //# sourceMappingURL=Icon.d.ts.map