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 (
{prefixSlot}

{title}

{subtitle &&

{subtitle}

}
{suffixSlot}
); } export function TroubleshooterListItemContainer({ children, ...rest }: PropsWithChildren) { return (
{children}
); }