@rango-dev/ui 0.1.14-next.7 → 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
package/dist/ui.esm.js
CHANGED
|
@@ -3377,12 +3377,14 @@ var CheckboxRoot = /*#__PURE__*/styled(Root$1, {
|
|
|
3377
3377
|
alignItems: 'center',
|
|
3378
3378
|
justifyContent: 'center',
|
|
3379
3379
|
marginRight: '$2',
|
|
3380
|
-
backgroundColor: '$neutral-100'
|
|
3380
|
+
backgroundColor: '$neutral-100',
|
|
3381
|
+
cursor: 'pointer'
|
|
3381
3382
|
});
|
|
3382
3383
|
var Label$1 = /*#__PURE__*/styled('label', {
|
|
3383
3384
|
color: '$foreground',
|
|
3384
3385
|
fontSize: '$m',
|
|
3385
|
-
marginLeft: '$8'
|
|
3386
|
+
marginLeft: '$8',
|
|
3387
|
+
cursor: 'pointer'
|
|
3386
3388
|
});
|
|
3387
3389
|
function Checkbox(_ref) {
|
|
3388
3390
|
var label = _ref.label,
|