ui-mathilde-web 0.1.27 → 0.1.29

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.
@@ -17,8 +17,12 @@ declare interface ButtonFormatProps {
17
17
  className?: string;
18
18
  type: string;
19
19
  onClick?: () => void;
20
- leftIcon?: IconType;
21
- rightIcon?: IconType;
20
+ leftIcon?: React.ComponentType<{
21
+ size?: number;
22
+ }> | string;
23
+ rightIcon?: React.ComponentType<{
24
+ size?: number;
25
+ }> | string;
22
26
  iconSize?: number;
23
27
  }
24
28
 
@@ -139,6 +143,8 @@ declare interface ListFileProps {
139
143
  onDelete: (fileToDelete: File) => void;
140
144
  }
141
145
 
146
+ export declare const Loader: () => JSX_2.Element;
147
+
142
148
  declare interface MenuItem {
143
149
  id: string;
144
150
  label: string;
@@ -231,6 +237,7 @@ declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectE
231
237
  export declare const SidebarPro: default_2.FC<SidebarProProps>;
232
238
 
233
239
  declare interface SidebarProProps {
240
+ aHref?: string;
234
241
  logo: {
235
242
  src: string;
236
243
  alt: string;