import { Button } from "@formbricks/ui"; import { useRouter } from "next/router"; import clsx from "clsx"; interface Props { featureTitle: string; text: string; img: React.ReactNode; isImgLeft?: boolean; cta?: string; href?: string; disabled?: boolean; } export default function FeatureHighlights({ featureTitle, text, img, isImgLeft, cta, href, disabled, }: Props) { const router = useRouter(); return (

{featureTitle}

{text}
{cta && href && ( )}
{img}
); }