Capítulo 141 de 147
Learn how to make your icons accessible to all users, including those with disabilities.
// Don't do this
<button>
<Plus aria-label="Plus icon"/>
Add document
</button>
// Do this, just leave it
<button>
<Plus/>
Add document
</button>