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

13 lines (11 loc) 445 B
import { AccessibilikState, ChangeAccDraftHander } from '../../../../types'; import { default as React } from 'react'; type Direction = "right" | "center" | "left"; interface AlignTextButtonProps { direction: Direction; accState: AccessibilikState; onChangeAccState: (fn: ChangeAccDraftHander) => void; translationKey: string; } declare const _default: React.NamedExoticComponent<AlignTextButtonProps>; export default _default;