add radius=full to image and fix avatar
This commit is contained in:
parent
185b0aa053
commit
0ded6bc3a4
|
@ -179,6 +179,7 @@ const Avatar = (props: Props) => {
|
||||||
height={size}
|
height={size}
|
||||||
onLoad={() => setStatus('loaded')}
|
onLoad={() => setStatus('loaded')}
|
||||||
onError={() => setStatus('error')}
|
onError={() => setStatus('error')}
|
||||||
|
radius="full"
|
||||||
/>
|
/>
|
||||||
</Stack>
|
</Stack>
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,9 @@ const Base = styled(RNImage, {
|
||||||
12: {
|
12: {
|
||||||
borderRadius: 12,
|
borderRadius: 12,
|
||||||
},
|
},
|
||||||
|
full: {
|
||||||
|
borderRadius: 9999,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue