- The control is not focusable, it should be a [`<button type="button">`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button) or [`role="button"`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/button_role) (with `tabindex="0"` or `<a href="#">`). - [`aria-label`](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-label) or [`title`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) can be used to allow screen reader users to understand what the control is for. For example `title="Close sidebar"`.