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