From d2f152065ca681ca5edd223d2bd4258ddafbf9d7 Mon Sep 17 00:00:00 2001 From: SeieunYoo Date: Sun, 11 Aug 2024 00:43:32 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20blue=20=EC=9D=BC=20=EB=95=8C=20primary?= =?UTF-8?q?=20=ED=86=A0=ED=81=B0=EC=9C=BC=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/wow-ui/src/components/Tag/Tag.stories.tsx | 12 ++++++------ packages/wow-ui/src/components/Tag/index.tsx | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/wow-ui/src/components/Tag/Tag.stories.tsx b/packages/wow-ui/src/components/Tag/Tag.stories.tsx index 4a75c297..cd0c88b2 100644 --- a/packages/wow-ui/src/components/Tag/Tag.stories.tsx +++ b/packages/wow-ui/src/components/Tag/Tag.stories.tsx @@ -66,25 +66,25 @@ export default meta; type Story = StoryObj; -export const OutlineBlue: Story = { +export const Outline: Story = { args: { - children: "Outline Red", + children: "Tag", variant: "outline", color: "blue", }, }; -export const Solid1Blue: Story = { +export const Solid1: Story = { args: { - children: "Solid1 Blue", + children: "Tag", variant: "solid1", color: "blue", }, }; -export const Solid2Blue: Story = { +export const Solid2: Story = { args: { - children: "Solid2 Grey", + children: "Tag", variant: "solid2", color: "blue", }, diff --git a/packages/wow-ui/src/components/Tag/index.tsx b/packages/wow-ui/src/components/Tag/index.tsx index ee99e8e5..838d1f4b 100644 --- a/packages/wow-ui/src/components/Tag/index.tsx +++ b/packages/wow-ui/src/components/Tag/index.tsx @@ -92,8 +92,8 @@ const TagStyle = cva({ color: "secondaryGreen", }, blue: { - borderColor: "secondaryBlue", - color: "secondaryBlue", + borderColor: "primary", + color: "primary", }, yellow: { borderColor: "secondaryYellow",