@natoora-libs/core 0.2.4 → 0.2.41

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.
@@ -1682,7 +1682,7 @@ var FilledButton = ({
1682
1682
  color = "primary",
1683
1683
  copy,
1684
1684
  disabled = false,
1685
- href = "",
1685
+ href,
1686
1686
  isLoading = false,
1687
1687
  onClick,
1688
1688
  type = "button",
@@ -1698,7 +1698,7 @@ var FilledButton = ({
1698
1698
  }),
1699
1699
  disabled: disabled || isLoading,
1700
1700
  focusRipple: autoFocus,
1701
- href,
1701
+ href: href || void 0,
1702
1702
  onClick,
1703
1703
  type,
1704
1704
  variant,
@@ -2057,7 +2057,7 @@ var OutlinedButton = ({
2057
2057
  color,
2058
2058
  copy,
2059
2059
  disabled,
2060
- href = "",
2060
+ href,
2061
2061
  isLoading,
2062
2062
  onClick,
2063
2063
  startIcon,
@@ -2073,7 +2073,7 @@ var OutlinedButton = ({
2073
2073
  [classes.loading]: isLoading
2074
2074
  }),
2075
2075
  disabled: disabled || isLoading,
2076
- href,
2076
+ href: href || void 0,
2077
2077
  onClick,
2078
2078
  startIcon,
2079
2079
  style,