import { LandingRating } from '@/components/landing/rating/LandingRating'; import clsx from 'clsx'; import { CheckCheckIcon, GiftIcon, TrophyIcon, Wand2Icon } from 'lucide-react'; /** * Shows a social proof/key feature/milestone item with an optional graphic. * * Meant to be used inside a `LandingSocialProofBand`. */ export const LandingSocialProofBandItem = ({ className, graphic = 'checkmark', customGraphic, children, }: { className?: string; graphic?: 'none' | 'checkmark' | 'gift' | 'magic' | 'trophy' | 'rating'; customGraphic?: React.ReactNode; children: React.ReactNode; }) => { return (
{graphic ? ( {graphic === 'checkmark' ? ( ) : null} {graphic === 'magic' ? ( ) : null} {graphic === 'trophy' ? ( ) : null} {graphic === 'gift' ? ( ) : null} {graphic === 'rating' ? ( ) : null} ) : null} {customGraphic} {children}
); };