@prosperitainova/mirage-ui 1.1.81 → 1.1.85

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,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { MenuDropdownProps } from "./MenuDropdown";
2
3
  import { Story } from "@storybook/react";
3
4
  declare const MenuDropdownStories: {
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;
@@ -0,0 +1,4 @@
1
+ import { AppTheme } from "./types";
2
+ import "./fonts/ProximaNova.css";
3
+ declare const defaultTheme: AppTheme;
4
+ export default defaultTheme;
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;
@@ -0,0 +1,3 @@
1
+ import { AppTheme } from "./types";
2
+ declare const theme: AppTheme;
3
+ export default theme;
@@ -43,6 +43,7 @@ export type Colors = {
43
43
  info: colortype;
44
44
  warning: colortype;
45
45
  error: colortype;
46
+ gray: colortype;
46
47
  };
47
48
  export type colortype = {
48
49
  main: string;