Skip to content

Commit

Permalink
fix(icons): add focusable false to icons for ie11 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
rachmulvey authored Jan 22, 2020
1 parent f584241 commit 7762298
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 0 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/icons/ChevronDown/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default function ChevronDown({ width, height, className }) {
width={width}
height={height}
className={className}
focusable="false"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/icons/MinusIcon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const MinusIcon = ({ className, width, height, ...rest }) => {
height={height}
className={className}
viewBox="0 0 24 24"
focusable="false"
{...rest}
>
<defs>
Expand Down
1 change: 1 addition & 0 deletions src/icons/PlusIcon/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const PlusIcon = ({ className, width, height, ...rest }) => {
height={height}
className={className}
viewBox="0 0 24 24"
focusable="false"
{...rest}
>
<defs>
Expand Down
1 change: 1 addition & 0 deletions src/icons/Tick/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ export default function Tick({ width, height, className }) {
width={width}
height={height}
className={className}
focusable="false"
xmlns="http://www.w3.org/2000/svg"
xmlnsXlink="http://www.w3.org/1999/xlink"
>
Expand Down

0 comments on commit 7762298

Please sign in to comment.