diff --git a/package.json b/package.json index 9bdfaa3..bcfb5a2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bbodek-ui", - "version": "0.0.133", + "version": "0.0.134", "type": "module", "author": "Bbodek", "license": "MIT", diff --git a/src/core/components/Checkbox/index.tsx b/src/core/components/Checkbox/index.tsx index db2d94f..c428bcf 100644 --- a/src/core/components/Checkbox/index.tsx +++ b/src/core/components/Checkbox/index.tsx @@ -18,15 +18,15 @@ const Checkbox = forwardRef(( ) => { const id = useId(); const RectangleCheckbox = - ; + ; const CircleCheckbox = - ; + ; const svg = !isCircle ? RectangleCheckbox : CircleCheckbox; return (