@stenajs-webui/elements 19.0.0-next.20 → 19.0.0-next.22

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.
@@ -35,4 +35,6 @@ export interface CommonButtonProps {
35
35
  leftWrapperClassName?: string;
36
36
  /** Right wrapper class name */
37
37
  rightWrapperClassName?: string;
38
+ /** Show only icon when small screen */
39
+ responsiveIconOnly?: boolean;
38
40
  }
@@ -16,5 +16,6 @@ export interface ButtonContentProps {
16
16
  leftWrapperClassName?: string;
17
17
  rightWrapperClassName?: string;
18
18
  size?: ButtonSize;
19
+ responsiveIconOnly?: boolean;
19
20
  }
20
21
  export declare const ButtonContent: React.FC<ButtonContentProps>;