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