require-button-accessible-name
Require an accessible name on statically unnamed native or configured JSX buttons.
Why
An icon-only action without an accessible name cannot communicate its purpose to assistive technology.
Fix
Provide meaningful visible or visually hidden text, aria-label, or aria-labelledby for the action.
Examples
<button> <svg aria-hidden="true" /></button>;<button aria-label="Close"> <svg aria-hidden="true" /></button>;