diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 11:45:31 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-11-20 11:45:31 -0600 |
commit | 63348807b59ec82a905aa2a1164a1484e61aa29a (patch) | |
tree | 9cd0a6b0851d7a0c079508d44cf9c8aa8e00e769 /src/view/lib/icons.tsx | |
parent | 3a1013906494fc0399b908b8ffbba548f00ec976 (diff) | |
download | voidsky-63348807b59ec82a905aa2a1164a1484e61aa29a.tar.zst |
Adjust post control sizing and alignment
Diffstat (limited to 'src/view/lib/icons.tsx')
-rw-r--r-- | src/view/lib/icons.tsx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/view/lib/icons.tsx b/src/view/lib/icons.tsx index c160df3cc..b3f52a62e 100644 --- a/src/view/lib/icons.tsx +++ b/src/view/lib/icons.tsx @@ -221,9 +221,11 @@ export function UserGroupIcon({ export function UpIcon({ style, size, + strokeWidth = 1.3, }: { style?: StyleProp<ViewStyle> size?: string | number + strokeWidth: number }) { return ( <Svg @@ -232,7 +234,7 @@ export function UpIcon({ height={size || 24} style={style}> <Path - strokeWidth={1.3} + strokeWidth={strokeWidth} stroke="currentColor" 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" /> |