Skip to content

Commit

Permalink
♻️ refactor: デフォルトが白になったため、不要なプロパティを削除
Browse files Browse the repository at this point in the history
  • Loading branch information
takashi0602 committed Jan 1, 2024
1 parent a1746c3 commit 7badd93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/base/Icons/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const IconList: FC = () => {
<div style={{ display: 'flex', flexWrap: 'wrap', gap: '8px' }}>
{Object.entries(Icons).map(([iconName, IconComponent], index) => (
<div key={index} style={{ display: 'flex', flexDirection: 'column', alignItems: 'center' }}>
<IconComponent fill="white" />
<IconComponent />
<div style={{ color: 'white' }}>{iconName}</div>
</div>
))}
Expand Down

0 comments on commit 7badd93

Please sign in to comment.