import { cn } from "@/lib/utils"; import type { ReactNode } from "react"; type Props = { title: ReactNode; description?: string; children: React.ReactNode; className?: string; }; export function SettingRow({ title, description, children, className }: Props) { return (