Skip to content

Commit 4092d48

Browse files
canrozanesjraff
authored andcommitted
fix(core-feedback-icon): change width from string to number
1 parent 3047e84 commit 4092d48

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

packages/FeedbackIcon/svgs/Checkmark.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const Checkmark = props => {
1010
copy={{ a11yText: '' }}
1111
{...props}
1212
optionalText
13-
width="16"
14-
height="16"
13+
width={16}
14+
height={16}
1515
viewBox="0 0 16 16"
1616
>
1717
<path

packages/FeedbackIcon/svgs/LocationAdd.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const LocationAdd = props => {
1818
<FeedbackIcon
1919
{...props}
2020
copyDictionary={copyDictionary}
21-
width="24"
22-
height="24"
21+
width={24}
22+
height={24}
2323
viewBox="0 0 24 24"
2424
>
2525
<path

packages/FeedbackIcon/svgs/LocationIneligible.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const LocationIneligible = props => {
1818
<FeedbackIcon
1919
{...props}
2020
copyDictionary={copyDictionary}
21-
width="24"
22-
height="24"
21+
width={24}
22+
height={24}
2323
viewBox="0 0 24 24"
2424
>
2525
<path

packages/FeedbackIcon/svgs/LocationSuccess.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const LocationSuccess = props => {
1818
<FeedbackIcon
1919
{...props}
2020
copyDictionary={copyDictionary}
21-
width="24"
22-
height="24"
21+
width={24}
22+
height={24}
2323
viewBox="0 0 24 24"
2424
>
2525
<path

packages/FeedbackIcon/svgs/NotificationError.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const NotificationError = props => (
1717
<FeedbackIcon
1818
{...props}
1919
copyDictionary={copyDictionary}
20-
width="20"
21-
height="20"
20+
width={20}
21+
height={20}
2222
viewBox="0 0 20 20"
2323
>
2424
<path

packages/FeedbackIcon/svgs/NotificationSuccess.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const NotificationSuccess = props => (
1717
<FeedbackIcon
1818
{...props}
1919
copyDictionary={copyDictionary}
20-
width="20"
21-
height="20"
20+
width={20}
21+
height={20}
2222
viewBox="0 0 20 20"
2323
>
2424
<path

packages/FeedbackIcon/svgs/NotificationWarning.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ const NotificationWarning = props => (
1717
<FeedbackIcon
1818
{...props}
1919
copyDictionary={copyDictionary}
20-
width="20"
21-
height="20"
20+
width={20}
21+
height={20}
2222
viewBox="0 0 20 20"
2323
>
2424
<path

packages/FeedbackIcon/svgs/Times.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ const Times = props => {
1010
copy={{ a11yText: '' }}
1111
{...props}
1212
optionalText
13-
width="16"
14-
height="16"
13+
width={16}
14+
height={16}
1515
viewBox="0 0 16 16"
1616
>
1717
<path

0 commit comments

Comments
 (0)