import React from 'react'; import { Label } from '@/components/ui/label'; interface SettingsSectionProps { label: string; description?: string; required?: boolean; children: React.ReactNode; htmlFor?: string; } export function SettingsSection({ label, description, required = false, children, htmlFor, }: SettingsSectionProps) { return (
{description && (

{description}

)}
{children}
); }