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

15 lines (14 loc) 486 B
import { FC } from "react"; import { AccessibilikState, ChangeAccDraftHander } from "../../types"; interface AccessibilityMenuProps { display: string; accState: AccessibilikState; onChangeAccState: (fn: ChangeAccDraftHander) => void; onLangChange: (langCode: string) => void; onInit: () => void; onShow: () => void; showAcc: boolean; hasLanguages: boolean; } declare const AccessibilityMenu: FC<AccessibilityMenuProps>; export default AccessibilityMenu;