From 0f56ddefed84243907907c7e59230e021e4ccfe7 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Thu, 10 Aug 2023 09:38:12 +0300 Subject: [PATCH] fix: change style of Tag --- src/components/Tag.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Tag.tsx b/src/components/Tag.tsx index 84383dfd..fa083451 100644 --- a/src/components/Tag.tsx +++ b/src/components/Tag.tsx @@ -1,4 +1,4 @@ -import { Paragraph } from 'tamagui' +import { Text } from 'tamagui' type TagProps = { bc: string @@ -11,14 +11,14 @@ const Tag = ({ bc, text }: TagProps) => { style={{ backgroundColor: bc, display: 'flex', - padding: '0px 8px', + padding: '2px 6px', alignItems: 'center', borderRadius: '67px', }} > - + {text} - + ) }