diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 16:24:44 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 16:24:44 -0600 |
commit | f43b24d40542ab24e2f68ee3c8f1a2a5d57fe478 (patch) | |
tree | 9671f0dda7d2355ffe41ae564ffd488e9d0d898d | |
parent | c6108fb64674664f5020829a10b0157ad2ba2be6 (diff) | |
download | voidsky-f43b24d40542ab24e2f68ee3c8f1a2a5d57fe478.tar.zst |
Fix the pointy edges on the arrow icons
-rw-r--r-- | src/view/lib/icons.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/view/lib/icons.tsx b/src/view/lib/icons.tsx index 21c5c86b7..05b1ec601 100644 --- a/src/view/lib/icons.tsx +++ b/src/view/lib/icons.tsx @@ -209,6 +209,8 @@ export function UpIcon({ <Path strokeWidth={strokeWidth} stroke="currentColor" + strokeLinecap="round" + strokeLinejoin="round" d="M 7 3 L 2 8 L 4.5 8 L 4.5 11.5 L 9.5 11.5 L 9.5 8 L 12 8 L 7 3 Z" /> </Svg> @@ -232,6 +234,8 @@ export function UpIconSolid({ strokeWidth={1.3} stroke="currentColor" fill="currentColor" + strokeLinecap="round" + strokeLinejoin="round" d="M 7 3 L 2 8 L 4.5 8 L 4.5 11.5 L 9.5 11.5 L 9.5 8 L 12 8 L 7 3 Z" /> </Svg> @@ -254,6 +258,8 @@ export function DownIcon({ <Path strokeWidth={1.3} stroke="currentColor" + strokeLinecap="round" + strokeLinejoin="round" d="M 7 11.5 L 2 6.5 L 4.5 6.5 L 4.5 3 L 9.5 3 L 9.5 6.5 L 12 6.5 L 7 11.5 Z" /> </Svg> @@ -277,6 +283,8 @@ export function DownIconSolid({ strokeWidth={1.3} stroke="currentColor" fill="currentColor" + strokeLinecap="round" + strokeLinejoin="round" d="M 7 11.5 L 2 6.5 L 4.5 6.5 L 4.5 3 L 9.5 3 L 9.5 6.5 L 12 6.5 L 7 11.5 Z" /> </Svg> |