import { Label, Tooltip } from '@sim/emcn' import { Info } from 'lucide-react' interface SettingRowProps { label: string description?: string /** Optional supplementary guidance shown in a tooltip on an info icon beside the label. */ labelTooltip?: string children: React.ReactNode } export function SettingRow({ label, description, labelTooltip, children }: SettingRowProps) { return (
{description}
} {children}