import { UsersIcon } from "lucide-react"; interface SegmentTitleProps { title?: string; description?: string | null | undefined; isPrivate?: boolean; } export const SegmentTitle = ({ title, description, isPrivate }: SegmentTitleProps) => { if (isPrivate) { return (

Send survey to audience who match...

); } return (

{title}

{description}

); };