@woosmap/ui 4.194.0 → 4.195.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.194.0",
3
+ "version": "4.195.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -116,7 +116,7 @@ export default class Input extends Component {
116
116
  default:
117
117
  iconSize = 22;
118
118
  }
119
- const btnSize = `btn--${size}`;
119
+ const btnSize = size ? `btn--${size}` : '';
120
120
  return (
121
121
  <div className="input__container">
122
122
  {icon ? <Icon icon={icon} isFill={isInputIconFill} size={iconSize} /> : null}