@onehaul/ui 0.1.22 → 0.1.24

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.
package/dist/index.d.ts CHANGED
@@ -1,3 +1,5 @@
1
+ import React from 'react';
2
+
1
3
  export { default as Button } from './components/Button';
2
4
  export type { ButtonProps, ButtonVariant, ButtonSize, ButtonType } from './components/Button';
3
5
 
@@ -74,3 +76,10 @@ export { default as Select } from './components/Select';
74
76
  export type { SelectProps, SelectOption, SelectOptionProps } from './components/Select';
75
77
 
76
78
  export * from './theme';
79
+
80
+ export interface AppRouterProviderProps {
81
+ children: React.ReactNode;
82
+ colors?: Record<string, string>;
83
+ }
84
+
85
+ export declare const AppRouterProvider: React.FC<AppRouterProviderProps>;