import { PropsWithChildren, AriaAttributes } from 'react'; import clsx from 'clsx'; import styles from './SidebarItem.module.css'; interface Props { className?: string; label?: string; } export function Wrapper({ className, children, label, ...ariaProps }: PropsWithChildren & AriaAttributes) { return (
  • {children}
  • ); }