@prosperitainova/mirage-ui 1.1.61 → 1.1.62

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,8 +1,8 @@
1
1
  export type ToggleProps = {
2
2
  mode: "small" | "large";
3
- actived?: boolean;
4
- checked?: boolean;
5
3
  disabled?: boolean;
4
+ checked?: boolean;
5
+ onToggle?: () => void;
6
6
  };
7
7
  declare const Toggle: (props: ToggleProps) => JSX.Element;
8
8
  export default Toggle;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { ToggleProps } from "./Toggle";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const ButtonStories: {