export function getLogos()

in client/components/mma/paymentUpdate/PaymentDetailUpdate.tsx [98:118]


export function getLogos(paymentMethod: PaymentMethod) {
	if (paymentMethod === PaymentMethod.Card) {
		return (
			<>
				{cardTypeToSVG('visa')}
				{cardTypeToSVG('mastercard')}
				{cardTypeToSVG('americanexpress')}
			</>
		);
	} else if (paymentMethod === PaymentMethod.DirectDebit) {
		return (
			<DirectDebitLogo
				fill={palette.brand[400]}
				additionalCss={css`
					width: 47px;
					height: 16px;
				`}
			/>
		);
	}
}