Skip to content

Commit

Permalink
docs: <CircularRate />에 많은 스토리 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
abiriadev committed May 7, 2024
1 parent d3efbf4 commit f5bc84d
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Components/CircularRate/CircularRate.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,27 @@ export const CirculatingGradient: Story = {
gradientColors: [theme.color.purple1, theme.color.orange1, theme.color.purple1],
},
};

export const Monotone: Story = {
args: {
gradientColors: [theme.color.purple1, theme.color.purple1],
},
};

export const Proactiveness: Story = {
args: {
percentage: 70,
},
};

export const ZeroPercent: Story = {
args: {
percentage: 0,
},
};

export const FullPercent: Story = {
args: {
percentage: 100,
},
};

0 comments on commit f5bc84d

Please sign in to comment.