Skip to content

Commit 3825b12

Browse files
committedAug 14, 2021
feat(core): do not use false as a default for focusable attribute in SvgWrapper for BC
1 parent 6bcecb3 commit 3825b12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/core/src/components/SvgWrapper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const SvgWrapper = ({
1212
ariaLabel,
1313
ariaLabelledBy,
1414
ariaDescribedBy,
15-
isFocusable = false,
15+
isFocusable,
1616
}) => {
1717
const theme = useTheme()
1818

0 commit comments

Comments
 (0)
Please sign in to comment.