import clsx from 'clsx'; /** * This component is meant to be used in the landing page, in the features list. * * Describes a single feature, with a title, description and icon. * Use this to highlight a feature or key aspect of your product. */ export const LandingFeature = ({ className, title, description, icon, variant = 'primary', }: { className?: string; title: string; description: string; icon: React.ReactNode; variant?: 'primary' | 'secondary'; }) => { return (
{icon}

{title}

{description}

); };