import { ReactNode } from "react"; interface SettingsRowProps { label: string; description?: ReactNode; children: ReactNode; htmlFor?: string; } export function SettingsRow({ label, description, children, htmlFor }: SettingsRowProps) { return (
{description}
)}