export default function Setting({ label, controlId, children, description = undefined, }: { label: string description: string | undefined controlId: string children: React.ReactNode }) { return (
{description && (
{description}
)}
{children}
) }