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 (9 loc) • 344 B
TypeScript
import { CSSProperties, FC } from "react";
export type ValueControlType = "init" | "increase" | "decrease";
interface AccValueControlButtonProps {
controlType: ValueControlType;
onClick?: () => void;
style?: CSSProperties;
}
declare const AccValueControlButton: FC<AccValueControlButtonProps>;
export default AccValueControlButton;