UNPKG

accessibility-react-widget

Version:

A React-based web accessibility widget to enhance UI/UX for all users. This powerful tool seamlessly integrates with React applications, offering a wide range of features like adjustable font sizes, text alignment options, dyslexia-friendly fonts, and col

9 lines (8 loc) 265 B
import { ReactNode } from "react"; interface PortalProps { children: ReactNode; wrapperElementId?: string; [key: string]: unknown; } declare const Portal: ({ children, wrapperElementId }: PortalProps) => React.ReactPortal | null; export default Portal;