@cnc-ti/layout-basic 8.3.10 → 8.3.11

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/index.mjs CHANGED
@@ -12102,13 +12102,13 @@ var Checkbox = React75.forwardRef(
12102
12102
  ({ className, id, label, ...props }, ref) => {
12103
12103
  console.log();
12104
12104
  const idGenerate = id ? id : label && `field-${Date.now()}-${Math.random() * 1e5}`;
12105
- return /* @__PURE__ */ jsxs12("div", { className: "cnc-w-full cnc-flex cnc-flex-row cnc-items-baseline", children: [
12105
+ return /* @__PURE__ */ jsxs12("div", { className: "cnc-w-full cnc-flex cnc-flex-row ", children: [
12106
12106
  /* @__PURE__ */ jsx38(
12107
12107
  "input",
12108
12108
  {
12109
12109
  type: "checkbox",
12110
12110
  id: idGenerate,
12111
- className: cn(className),
12111
+ className: cn("cnc-w-6 cnc-h-6", className),
12112
12112
  ref,
12113
12113
  ...props
12114
12114
  }
@@ -12117,7 +12117,7 @@ var Checkbox = React75.forwardRef(
12117
12117
  "label",
12118
12118
  {
12119
12119
  htmlFor: idGenerate,
12120
- className: "cnc-block cnc-text-sm cnc-mb-1 cnc-font-medium cnc-text-brand-gray-600 cnc-ml-2",
12120
+ className: "cnc-block cnc-text-sm cnc-font-medium cnc-text-brand-gray-600 cnc-ml-2",
12121
12121
  children: label
12122
12122
  }
12123
12123
  )