import type { IconProps } from '../../types'; import FilledSVG from './icon-fill.svg'; import OutlinedSVG from './icon.svg'; export const HomePinSVG = (opts?: IconProps): string => { const variant = opts?.variant ?? 'filled'; return variant === 'outlined' ? OutlinedSVG : FilledSVG; }; export default HomePinSVG;