Icons Accessibility
<!DOCTYPE html> <html> <head> </head> <body> <!-- This button has no accessible name --> <button class="icon-btn"> <svg viewBox="0 0 24 24" width="20" height="20" aria-hidden="true"> <path d="M18 6 6 18M6 6l12 12" stroke="currentColor" stroke-width="2" fill="none"/> </svg> </button> <style> .icon-btn { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: none; border-radius: 6px; background: #f1f1f1; cursor: pointer; } </style> </body> </html>