import type { HTMLAttributes, ReactNode } from 'react'; import { cn } from '../utils/cn.ts'; interface PanelProps extends HTMLAttributes { glass?: boolean; children: ReactNode; } export function Panel({ glass = true, className, children, ...props }: PanelProps) { return (
{children}
); }