Skip to content

Commit

Permalink
fix: fill-rule to fillRule and stroke-linecap to strokeLinecap
Browse files Browse the repository at this point in the history
  • Loading branch information
khakimov committed Nov 12, 2023
1 parent 234721a commit 63d096c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/icons/img/ChainIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const ChainIcon = (props) => {
fill="none"
fillRule="evenodd"
stroke="currentColor"
stroke-linecap="round"
strokeLinecap="round"
strokeLinejoin="round"
transform="translate(4 4)"
>
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/icons/img/EditIcon.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ export const EditIcon = (props) => {
<svg {...props} width="24" height="24" fill="none" viewBox="0 0 24 24">
<path
stroke="currentColor"
stroke-linecap="round"
strokeLinecap="round"
strokeLinejoin="round"
stroke-width="1.5"
d="M4.75 19.25L9 18.25L18.2929 8.95711C18.6834 8.56658 18.6834 7.93342 18.2929 7.54289L16.4571 5.70711C16.0666 5.31658 15.4334 5.31658 15.0429 5.70711L5.75 15L4.75 19.25Z"
></path>
<path
stroke="currentColor"
stroke-linecap="round"
strokeLinecap="round"
strokeLinejoin="round"
stroke-width="1.5"
d="M19.25 19.25H13.75"
Expand Down

0 comments on commit 63d096c

Please sign in to comment.