import { ReactNode } from "react"; interface SettingsSectionProps { id: string; title: string; description?: string; children: ReactNode; showSeparator?: boolean; } export function SettingsSection({ id, title, description, children, showSeparator = true }: SettingsSectionProps) { return (

{title}

{description && (

{description}

)}
{children}
{showSeparator && (
)}
); }