import type { ReactNode } from "react"; interface SettingsSectionProps { title: string; description?: string; children: ReactNode; } export function SettingsSection({ title, description, children }: SettingsSectionProps) { return (

{title}

{description ?

{description}

: null}
{children}
); }