Skip to content

Commit

Permalink
[base] Remove unused stroke attributes from undo icon
Browse files Browse the repository at this point in the history
  • Loading branch information
rexxars committed Oct 6, 2020
1 parent b46d603 commit 84a131c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/@sanity/base/src/components/icons/Undo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const strokeStyle = {
strokeWidth: 1.2
}

const UndoIcon = () => (
const UndoIcon = (): React.ReactElement => (
<svg
data-sanity-icon
viewBox="0 0 25 25"
Expand All @@ -18,9 +18,9 @@ const UndoIcon = () => (
height="1em"
>
<path
d="M5 9L14.5 9C16.9853 9 19 11.0147 19 13.5V13.5C19 15.9853 16.9853 18 14.5 18L5 18M5 9L9 13M5 9L9 5" stroke="#121923" stroke-width="1.2"
style={strokeStyle}
/>
d="M5 9L14.5 9C16.9853 9 19 11.0147 19 13.5V13.5C19 15.9853 16.9853 18 14.5 18L5 18M5 9L9 13M5 9L9 5"
style={strokeStyle}
/>
</svg>
)

Expand Down

0 comments on commit 84a131c

Please sign in to comment.