Skip to content

Commit

Permalink
feat: add 2xs and 3xs sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
lialila committed Jan 16, 2025
1 parent e716e69 commit 35ae2f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Select/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export interface BoemlySelectProps extends Omit<SelectProps, 'onChange' | 'value
selectAllText?: string;
value?: string[];
size?: 'xs' | 'sm' | 'md' | 'lg';
dropdownWidth?: 'xs' | 'sm' | 'md' | 'lg';
dropdownWidth?: '3xs' | '2xs' | 'xs' | 'sm' | 'md' | 'lg';
variant?: 'filled' | 'unstyled' | 'flushed' | 'outline';
onChange?: (value: string[]) => void;
onClose?: () => void;
Expand Down

0 comments on commit 35ae2f7

Please sign in to comment.