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
23 lines (22 loc) • 544 B
TypeScript
import { IconSvgComponent } from "./types";
export declare const langOptions: {
label: string;
value: string;
}[];
export declare const langMap: Record<string, {
label: string;
value: string;
}>;
type Collapsed = {
name: string;
isExpanded: boolean;
icon: IconSvgComponent;
};
export interface CollapsedState {
content: Collapsed;
colors: Collapsed;
tools: Collapsed;
}
export declare const collapsedStateInit: CollapsedState;
export type CollapsedStateKeys = keyof typeof collapsedStateInit;
export {};