import type { PropsWithChildren } from "react"; import classNames from "@calcom/lib/classNames"; interface TroubleshooterListItemContainerProps { title: string; subtitle?: string; suffixSlot?: React.ReactNode; prefixSlot?: React.ReactNode; className?: string; } export function TroubleshooterListItemHeader({ prefixSlot, title, subtitle, suffixSlot, className, }: TroubleshooterListItemContainerProps) { return (
{title}
{subtitle &&{subtitle}
}