@spesia/ui 1.8.17 → 1.8.21

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.
@@ -1,2 +1,3 @@
1
- declare const Checked: () => import("react/jsx-runtime").JSX.Element;
1
+ import { ComponentType, HTMLAttributes } from 'react';
2
+ declare const Checked: ComponentType<HTMLAttributes<HTMLSpanElement>>;
2
3
  export default Checked;
@@ -1,2 +1,3 @@
1
- declare const Unchecked: () => import("react/jsx-runtime").JSX.Element;
1
+ import { ComponentType, HTMLAttributes } from 'react';
2
+ declare const Unchecked: ComponentType<HTMLAttributes<HTMLSpanElement>>;
2
3
  export default Unchecked;