Skip to content
This repository has been archived by the owner on Oct 19, 2021. It is now read-only.

Commit

Permalink
fix(Icon): no alt in svg (#2243)
Browse files Browse the repository at this point in the history
  • Loading branch information
paschalidi authored and emyarod committed Apr 19, 2019
1 parent 89582e3 commit 676b6a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Icon/Icon.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const Icon = ({
const svgContent = icon ? svgShapes(icon.svgData) : '';

return (
<svg {...props} aria-label={description} alt={description}>
<svg {...props} aria-label={description}>
<title>
{typeof iconTitle === 'undefined' ? description : iconTitle}
</title>
Expand Down

0 comments on commit 676b6a6

Please sign in to comment.