@varialkit/checkbox 0.1.1 → 0.1.3

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/examples.tsx CHANGED
@@ -68,7 +68,7 @@ export const stories = {
68
68
  <Checkbox label="Invalid" isInvalid helperText="Required" />
69
69
  </div>
70
70
  ),
71
- code: `import { Checkbox } from "@solara/checkbox";
71
+ code: `import { Checkbox } from "@varialkit/checkbox";
72
72
 
73
73
  export function Example() {
74
74
  return (
@@ -94,7 +94,7 @@ export function Example() {
94
94
  <Checkbox label="Large" size="large" />
95
95
  </div>
96
96
  ),
97
- code: `import { Checkbox } from "@solara/checkbox";
97
+ code: `import { Checkbox } from "@varialkit/checkbox";
98
98
 
99
99
  export function Example() {
100
100
  return (
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@varialkit/checkbox",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
package/src/Checkbox.tsx CHANGED
@@ -1,4 +1,4 @@
1
- import { Icon } from "@solara/icons";
1
+ import { Icon } from "@varialkit/icons";
2
2
  import React, { forwardRef, useEffect, useRef } from "react";
3
3
  import type { CheckboxProps, CheckboxSize } from "./Checkbox.types";
4
4
  import "./Checkbox.scss";