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
10 lines (8 loc) • 341 B
TypeScript
import { FC } from 'react';
import { AccessibilikState, ChangeAccDraftHander } from '../../../../types';
interface HighlightLinksButtonProps {
accState: AccessibilikState;
onChangeAccState: (fn: ChangeAccDraftHander) => void;
}
declare const HighlightLinksButton: FC<HighlightLinksButtonProps>;
export default HighlightLinksButton;