aboutsummaryrefslogtreecommitdiff
path: root/docs/utilities/close-icon.md
blob: 5ec456bccd1c1c9a778e65fa913dbbd3fa40e188 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
layout: docs
title: Close icon
group: utilities
---

Use a generic close icon for dismissing content like modals and alerts. **Be sure to include text for screen readers**, as we've done with `aria-label`.

{% example html %}
<button type="button" class="close" aria-label="Close">
  <span aria-hidden="true">&times;</span>
</button>
{% endexample %}