"use client" import * as React from "react" import { Label } from "@/components/ui/label" import { cn } from "@/lib/utils" /** * Two-column settings row: label + helper on the left, controls on the right. */ export function SettingsFormRow({ label, description, htmlFor, children, className, }: { label: string description?: string htmlFor?: string children: React.ReactNode className?: string }) { return (
{description ? (

{description}

) : null}
{children}
) }