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

8 lines (7 loc) 164 B
import { FC } from "react"; interface HeaderProps { onShow: () => void; onInit: () => void; } declare const Header: FC<HeaderProps>; export default Header;