Skip to content

Commit

Permalink
fix(core-feedback-icon): change width from string to number
Browse files Browse the repository at this point in the history
  • Loading branch information
canrozanes authored and jraff committed Mar 18, 2021
1 parent 3047e84 commit 4092d48
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/Checkmark.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const Checkmark = props => {
copy={{ a11yText: '' }}
{...props}
optionalText
width="16"
height="16"
width={16}
height={16}
viewBox="0 0 16 16"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/LocationAdd.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const LocationAdd = props => {
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="24"
height="24"
width={24}
height={24}
viewBox="0 0 24 24"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/LocationIneligible.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const LocationIneligible = props => {
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="24"
height="24"
width={24}
height={24}
viewBox="0 0 24 24"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/LocationSuccess.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const LocationSuccess = props => {
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="24"
height="24"
width={24}
height={24}
viewBox="0 0 24 24"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/NotificationError.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const NotificationError = props => (
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="20"
height="20"
width={20}
height={20}
viewBox="0 0 20 20"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/NotificationSuccess.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const NotificationSuccess = props => (
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="20"
height="20"
width={20}
height={20}
viewBox="0 0 20 20"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/NotificationWarning.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ const NotificationWarning = props => (
<FeedbackIcon
{...props}
copyDictionary={copyDictionary}
width="20"
height="20"
width={20}
height={20}
viewBox="0 0 20 20"
>
<path
Expand Down
4 changes: 2 additions & 2 deletions packages/FeedbackIcon/svgs/Times.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ const Times = props => {
copy={{ a11yText: '' }}
{...props}
optionalText
width="16"
height="16"
width={16}
height={16}
viewBox="0 0 16 16"
>
<path
Expand Down

0 comments on commit 4092d48

Please sign in to comment.