mirror of
https://github.com/status-im/nimbus-gui.git
synced 2025-01-21 00:40:09 +00:00
feat: add right sidebar, no styles yet
This commit is contained in:
parent
24e72e020d
commit
e3e72a1f3f
18
src/pages/Dashboard/RightSidebar.tsx
Normal file
18
src/pages/Dashboard/RightSidebar.tsx
Normal 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
|
Loading…
x
Reference in New Issue
Block a user