import { PropsWithChildren, AriaAttributes } from 'react'; import clsx from 'clsx'; interface Props { className?: string; label?: string; } export function Wrapper({ className, children, label, ...ariaProps }: PropsWithChildren & AriaAttributes) { return (
  • a]:text-inherit [&>a]:hover:text-inherit [&>a]:hover:no-underline' )} aria-label={label} // eslint-disable-next-line react/jsx-props-no-spreading {...ariaProps} > {children}
  • ); }