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

{title}

); }; export default Label;