UNPKG

@lucsoft/webgen

Version:

Collection of lucsofts Components

7 lines (6 loc) 245 B
export const accessibilityButton = (button) => ({ key }) => { if (["Enter", "Space"].includes(key)) { button.click(); } }; export const accessibilityDisableTabOnDisabled = (color) => color === "disabled" /* Disabled */ ? -1 : 0;