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

{title}

{available ? ( ) : ( <> Sold Out )}
); }; export default LabelOverlay;