@rango-dev/ui 0.1.14-next.6 → 0.1.14-next.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ui.cjs.development.js +4 -2
- package/dist/ui.cjs.development.js.map +1 -1
- package/dist/ui.cjs.production.min.js +1 -1
- package/dist/ui.cjs.production.min.js.map +1 -1
- package/dist/ui.esm.js +4 -2
- package/dist/ui.esm.js.map +1 -1
- package/package.json +3 -3
- package/src/components/Checkbox/Checkbox.tsx +2 -0
|
@@ -3384,12 +3384,14 @@ var CheckboxRoot = /*#__PURE__*/styled(RadixCheckbox.Root, {
|
|
|
3384
3384
|
alignItems: 'center',
|
|
3385
3385
|
justifyContent: 'center',
|
|
3386
3386
|
marginRight: '$2',
|
|
3387
|
-
backgroundColor: '$neutral-100'
|
|
3387
|
+
backgroundColor: '$neutral-100',
|
|
3388
|
+
cursor: 'pointer'
|
|
3388
3389
|
});
|
|
3389
3390
|
var Label$1 = /*#__PURE__*/styled('label', {
|
|
3390
3391
|
color: '$foreground',
|
|
3391
3392
|
fontSize: '$m',
|
|
3392
|
-
marginLeft: '$8'
|
|
3393
|
+
marginLeft: '$8',
|
|
3394
|
+
cursor: 'pointer'
|
|
3393
3395
|
});
|
|
3394
3396
|
function Checkbox(_ref) {
|
|
3395
3397
|
var label = _ref.label,
|