interface SettingsSectionProps { title: string; description?: string; children: React.ReactNode; headerAction?: React.ReactNode; } export function SettingsSection({ title, description, children, headerAction, }: SettingsSectionProps) { return (

{title}

{headerAction &&
{headerAction}
}
{description && (

{description}

)} {children}
); }