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

{title}

); }; export default Label;