import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' interface SettingsSectionProps { title: string description?: string icon?: React.ReactNode children: React.ReactNode className?: string } export function SettingsSection({ title, description, icon, children, className }: SettingsSectionProps) { return ( {icon} {title} {description && (

{description}

)}
{children}
) }