Skip to content

Commit

Permalink
fix(BottomNavigation): hardcoded sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
benjitrosch committed Apr 3, 2023
1 parent bf4244d commit f1d8a2c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/BottomNavigation/BottomNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ const BottomNavigation = forwardRef<HTMLDivElement, BottomNavigationProps>(
const classes = twMerge(
'btm-nav',
clsx({
[`btm-nav-${size}`]: size,
'btm-nav-lg': size === 'lg',
'btm-nav-md': size === 'md',
'btm-nav-sm': size === 'sm',
'btm-nav-xs': size === 'xs',
}),
className
)
Expand Down

0 comments on commit f1d8a2c

Please sign in to comment.