import { IconProps } from './icon'; /** Nombres exportados en `componentes/outline` y `componentes/fill` (Legacy). */ export type LegacyIconName = keyof typeof import('@/shared/modules/Icons/componentes/outline') | keyof typeof import('@/shared/modules/Icons/componentes/fill'); export type LegacyIconProps = Omit & { name: LegacyIconName; }; //# sourceMappingURL=legacyIcon.d.ts.map