feat: add right sidebar, no styles yet

This commit is contained in:
Ivana Andersson 2023-09-18 10:16:05 +03:00
parent 24e72e020d
commit e3e72a1f3f

View File

@ -0,0 +1,18 @@
import { IconButton } from '@status-im/components'
import { NodeIcon } from '@status-im/icons'
import { XStack, YStack } from 'tamagui'
const RightSidebar = () => {
return (
<YStack
space={'$4'}
minHeight={'100vh'}
background={'#FFF'}
style={{ padding: '8px', borderTopLeftRadius: '20px' }}
>
<IconButton icon={<NodeIcon size={20} />} aria-selected={true} />
</YStack>
)
}
export default RightSidebar