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