Adjust post control sizing and alignment

This commit is contained in:
Paul Frazee 2022-11-20 11:45:31 -06:00
parent 3a10139064
commit 63348807b5
3 changed files with 14 additions and 14 deletions

View file

@ -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"
/>