@evergis/uilib-gl 1.0.0 → 1.0.2

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.
@@ -10,6 +10,7 @@ export interface IIconButtonProps extends ButtonHTMLAttributes<HTMLButtonElement
10
10
  onClick?: (e: MouseEvent<HTMLButtonElement>) => void;
11
11
  icon?: ReactNode;
12
12
  iconRight?: boolean;
13
+ active?: boolean;
13
14
  }
14
15
  export interface IconButtonProps {
15
16
  disabled?: boolean;
@@ -19,4 +20,5 @@ export interface IconButtonProps {
19
20
  error?: boolean;
20
21
  notFixedWidth?: boolean;
21
22
  iconRight?: boolean;
23
+ active?: boolean;
22
24
  }