const textSizes = { "4xl": "text-4xl", "3xl": "text-3xl", "2xl": "text-2xl", xl: "text-xl", lg: "text-lg", md: "text-md", sm: "text-sm", xs: "text-xs", }; export default function Greeting({ options }) { if (options.text) { return (
{options.text}
); } }