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