import { cx } from "@/cva.config"; interface NestedSettingsGroupProps { readonly children: React.ReactNode; readonly className?: string; } export function NestedSettingsGroup(props: NestedSettingsGroupProps) { const { children, className } = props; return (
{children}
); }