import { useIcon } from '../../internal/hooks/useIcon'; import { cn } from '../../styles/theme'; import type { FundCardPaymentMethodImageProps } from '../types'; export function FundCardPaymentMethodImage({ className, paymentMethod, }: FundCardPaymentMethodImageProps) { const { icon } = paymentMethod; const iconSvg = useIcon({ icon }); return (