import clsx from 'clsx'; import { GiftIcon } from 'lucide-react'; /** * A component meant to be used in the landing page. * * Use this to show a discount or offer to encourage users to take action, typically used under call to action buttons. */ export const LandingDiscount = ({ className, discountValueText = '$200 off', discountDescriptionText = '', animated = true, }: { className?: string; discountValueText: string; discountDescriptionText?: string; animated?: boolean; }) => { return (

{' '} {discountValueText} {' '} {discountDescriptionText}

); };