Skip to content

Commit

Permalink
fix: svg props
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarkivra committed Mar 16, 2022
1 parent c264d04 commit 0116c77
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/webapp/icons/ArrowDownIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ export function ArrowDownIcon({ className }: { className?: string }) {
>
<path
d="M13 5.5L8 10.5L3 5.5"
stroke-miterlimit="10"
stroke-linecap="round"
stroke-linejoin="round"
strokeMiterlimit="10"
strokeLinecap="round"
strokeLinejoin="round"
></path>
</svg>
);
Expand Down
8 changes: 4 additions & 4 deletions src/webapp/icons/SearchIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ export function SearchIcon() {
>
<path
d="M15 15l-3.733-3.733"
stroke-miterlimit="10"
stroke-linecap="round"
strokeMiterlimit="10"
strokeLinecap="round"
></path>
<path
d="M7 13A6 6 0 107 1a6 6 0 000 12z"
stroke-miterlimit="10"
stroke-linecap="square"
strokeMiterlimit="10"
strokeLinecap="square"
></path>
</svg>
);
Expand Down

0 comments on commit 0116c77

Please sign in to comment.