fix(management-card): delete old component and story

This commit is contained in:
RadoslavDimchev 2024-04-22 21:19:40 +03:00 committed by Emil Ivanichkov
parent 08802ffce4
commit 8224b5f24e
2 changed files with 0 additions and 54 deletions

View File

@ -1,19 +0,0 @@
import type { Meta, StoryObj } from '@storybook/react'
import ManagementCard from './ManagementCard'
const meta = {
title: 'ValidatorManagement/ManagementCard',
component: ManagementCard,
parameters: {
layout: 'centered',
},
tags: ['autodocs'],
} satisfies Meta<typeof ManagementCard>
export default meta
type Story = StoryObj<typeof meta>
export const Default: Story = {
args: {},
}

View File

@ -1,35 +0,0 @@
import { Text } from '@status-im/components'
import { Separator, Stack, YStack } from 'tamagui'
const ManagementCard = () => {
return (
<YStack
space={'$3'}
style={{
border: '1px solid #F0F2F5',
borderRadius: '16px',
minWidth: '33%',
}}
>
<Stack style={{ padding: '12px 16px' }}>
<Text size={15} weight={'semibold'}>
Validators
</Text>
</Stack>
<Separator borderColor={'#F0F2F5'} />
<Stack style={{ padding: '12px 16px' }}>
<Text size={15} weight={'semibold'} color="#647084">
Total Balance
</Text>
</Stack>
<Separator borderColor={'#F0F2F5'} />
<Stack style={{ padding: '12px 16px', marginBottom: '16px' }}>
<Text size={15} weight={'semibold'} color="#647084">
Total Income
</Text>
</Stack>
</YStack>
)
}
export default ManagementCard