fix: remove markdown text component and story

This commit is contained in:
RadoslavDimchev 2023-11-01 17:43:32 +02:00
parent 92519f9e82
commit f54122c036
2 changed files with 0 additions and 35 deletions

View File

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

View File

@ -1,14 +0,0 @@
import { Text } from '@status-im/components'
import { Stack } from 'tamagui'
const MarkdownText = (props: any) => {
return (
<Stack style={{ marginTop: '10px' }}>
<Text size={15} color="#647084">
{props.children}
</Text>
</Stack>
)
}
export default MarkdownText