import clsx from 'clsx'; import Price from './price'; const Label = ({ title, amount, currencyCode, size }: { title: string; amount: string; currencyCode: string; size?: string; }) => { return (

{title}

{!!size && ( <>
/
{size}
)}
); }; export default Label;