@overmap-ai/blocks 1.0.31-tailwind-components.20 → 1.0.31-tailwind-components.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,6 +1,5 @@
1
1
  /// <reference types="react" />
2
2
  import * as RadixSwitch from "@radix-ui/react-switch";
3
- interface SwitchThumbProps extends RadixSwitch.SwitchThumbProps {
3
+ export interface SwitchThumbProps extends RadixSwitch.SwitchThumbProps {
4
4
  }
5
5
  export declare const SwitchThumb: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<SwitchThumbProps & import("react").RefAttributes<HTMLSpanElement>>>;
6
- export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ export * from "./Root";
3
+ export * from "./Thumb";
4
+ export * from "./typings";
5
+ export declare const Switch: {
6
+ Root: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("./Root").SwitchRootProps & import("react").RefAttributes<HTMLButtonElement>>>;
7
+ Thumb: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<import("./Thumb").SwitchThumbProps & import("react").RefAttributes<HTMLSpanElement>>>;
8
+ };