fui-material 0.2.56 → 0.2.58

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.
@@ -5,6 +5,7 @@ export interface IFCloseIcon {
5
5
  st?: React.CSSProperties;
6
6
  className?: string;
7
7
  id?: string;
8
+ size?: number;
8
9
  }
9
10
  declare const FCloseIcon: FC<IFCloseIcon>;
10
11
  export default FCloseIcon;
@@ -11,7 +11,8 @@ export interface IFAlert {
11
11
  horizontal?: 'left' | 'center' | 'right';
12
12
  buttonClose?: boolean;
13
13
  className?: string;
14
- timeCloseSec?: number;
14
+ displayTime?: number;
15
+ size?: string;
15
16
  }
16
17
  declare const FAlert: FC<IFAlert>;
17
18
  export default FAlert;