import type { ReactNode } from 'react'; import { cn } from '../../../lib/utils'; type SettingsSectionProps = { title: string; description?: string; children: ReactNode; className?: string; }; export default function SettingsSection({ title, description, children, className }: SettingsSectionProps) { return (

{title}

{description && (

{description}

)}
{children}
); }