import type {FunctionComponent, HTMLAttributes, PropsWithChildren} from 'react' export const PointerEvents: FunctionComponent< PropsWithChildren> > = ({children, style, ...rest}) => { return (
{children}
) }