fix(label): correct size class for large label from 'text-lg' to 'text-xl'

This commit is contained in:
micha 2025-06-19 04:31:14 +02:00
parent 607ec39de2
commit 67e519ce9d
2 changed files with 3 additions and 3 deletions

View file

@ -22,9 +22,9 @@ import { Button } from '@/components/ui/button';
buttonText=[No Button shown if this is null]
iconName=[Any Icon Name from Lucide in UpperCamelCase or default if null]
/>
),
{
duration: 5000,
},

View file

@ -18,7 +18,7 @@ function Label({ className, size = 'default', ...props }: LabelProps) {
size === 'small'
? 'text-sm'
: size === 'large'
? 'text-lg'
? 'text-xl'
: 'text-base',
/* Background */
'',