import type { PropsWithChildren, ReactNode } from 'react'; import { Card } from '@/components/ui/Card'; interface ConfigSectionProps { title: ReactNode; description?: ReactNode; className?: string; } export function ConfigSection({ title, description, className, children }: PropsWithChildren) { return ( {description && (

{description}

)} {children}
); }