import React from 'react';
import type { Size } from '../types';
export const getMastercardLogo = (size: Size) => {
return size === 'regular' ? mastercardLogoRegular() : mastercardLogoSmall();
};
const mastercardLogoRegular = () => {
return (
);
};
const mastercardLogoSmall = () => {
return (
);
};