Skip to content

Commit

Permalink
💄 Helens review fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mibou committed Nov 30, 2023
1 parent 9162314 commit ab61c8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Storybook/components/Label/Label.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ export default {
'neutral',
],
},
size: {
control: { type: 'radio' },
options: ['m', 's'],
},
type: {
control: { type: 'radio' },
options: ['outlined', 'filled', 'soft'],
Expand Down
2 changes: 1 addition & 1 deletion src/components/label/Label.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export const Label = (props: Props) => {
{...props}
style={styles.text}
size={size == 'm' ? 'B1' : 'B2'}
weight='bold'
weight={size == 'm' ? 'bold' : 'semi-bold'}
>
{text}
</Body>
Expand Down

0 comments on commit ab61c8d

Please sign in to comment.