ui-mathilde-web 0.1.27 → 0.1.28

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
 
@@ -231,6 +235,7 @@ declare interface SelectFormProps extends React.SelectHTMLAttributes<HTMLSelectE
231
235
  export declare const SidebarPro: default_2.FC<SidebarProProps>;
232
236
 
233
237
  declare interface SidebarProProps {
238
+ aHref?: string;
234
239
  logo: {
235
240
  src: string;
236
241
  alt: string;