Skip to content

Commit

Permalink
feat: blue 일 때 primary 토큰으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Aug 10, 2024
1 parent ee3de6f commit d2f1520
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions packages/wow-ui/src/components/Tag/Tag.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,25 +66,25 @@ export default meta;

type Story = StoryObj<typeof meta>;

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",
},
Expand Down
4 changes: 2 additions & 2 deletions packages/wow-ui/src/components/Tag/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ const TagStyle = cva({
color: "secondaryGreen",
},
blue: {
borderColor: "secondaryBlue",
color: "secondaryBlue",
borderColor: "primary",
color: "primary",
},
yellow: {
borderColor: "secondaryYellow",
Expand Down

0 comments on commit d2f1520

Please sign in to comment.