import { cn } from '@/lib/utils'; import type * as React from 'react'; interface ScrollableSettingsWrapperProps { className?: string; legend?: string; children: React.ReactNode; } export function GroupWrapper({ className, legend, children, }: ScrollableSettingsWrapperProps) { return (
); }