We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529351b commit bbcde72Copy full SHA for bbcde72
src/components/common/input/CheckboxInput.tsx
@@ -59,6 +59,7 @@ export const CheckboxInput = ({
59
'focus:outline-none focus:ring-1 focus:ring-primary-normal',
60
disabled && 'cursor-not-allowed opacity-50'
61
)
62
+ const labelTextClass = twMerge('ml-10 h-22', className)
63
64
return (
65
<label className={labelClass}>
@@ -80,7 +81,7 @@ export const CheckboxInput = ({
80
81
>
82
{getIconForState(variant, checked)}
83
</button>
- <span className={twMerge('ml-10 h-22', className)}>{label}</span>
84
+ <span className={labelTextClass}>{label}</span>
85
</label>
86
87
}
0 commit comments