tek-wallet 0.0.87 → 0.0.88
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.
|
@@ -41,19 +41,13 @@ var Button = function (props) {
|
|
|
41
41
|
};
|
|
42
42
|
Button.displayName = "Button";
|
|
43
43
|
Button.Primary = function (props) {
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
color: "#000000",
|
|
47
|
-
} })));
|
|
44
|
+
var sx = props.sx, rest = __rest(props, ["sx"]);
|
|
45
|
+
return ((0, jsx_runtime_1.jsx)(Button, __assign({}, rest, { variant: "contained", color: "primary", sx: __assign({ borderRadius: "999px", color: "#000000" }, sx) })));
|
|
48
46
|
};
|
|
49
47
|
Button.Primary.displayName = "Button.Primary";
|
|
50
48
|
Button.Secondary = function (props) {
|
|
51
|
-
var className = props.className, rest = __rest(props, ["className"]);
|
|
52
|
-
return ((0, jsx_runtime_1.jsx)(Button, __assign({}, rest, { variant: "contained", color: "secondary", className: (0, cn_1.default)("text-16 leading-120 !capitalize font-500 px-4 py-2.5", className), sx: {
|
|
53
|
-
borderRadius: "999px",
|
|
54
|
-
// backgroundColor: `color-mix(in srgb, ${theme.palette.secondary.main} 16%, transparent)`,
|
|
55
|
-
// color: theme.palette.secondary.main,
|
|
56
|
-
} })));
|
|
49
|
+
var className = props.className, sx = props.sx, rest = __rest(props, ["className", "sx"]);
|
|
50
|
+
return ((0, jsx_runtime_1.jsx)(Button, __assign({}, rest, { variant: "contained", color: "secondary", className: (0, cn_1.default)("text-16 leading-120 !capitalize font-500 px-4 py-2.5", className), sx: __assign({ borderRadius: "999px" }, sx) })));
|
|
57
51
|
};
|
|
58
52
|
Button.Secondary.displayName = "Button.Secondary";
|
|
59
53
|
exports.default = Button;
|
|
@@ -125,6 +125,6 @@ var ImportWalletView = function (props) {
|
|
|
125
125
|
borderRadius: "lg",
|
|
126
126
|
padding: "1rem",
|
|
127
127
|
color: "text.white",
|
|
128
|
-
} }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { className: "text-ui-text-white font-400 text-13 text-center", children: "Your seed phrase is a list of words that are used to create your wallet. It is important to keep it safe and private." }), (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { sx: { width: "100%", marginTop: "auto" }, onClick: handleImportWallet, children: "Import" })] }) }) }) }) }));
|
|
128
|
+
} }) }), (0, jsx_runtime_1.jsx)(Text_1.default, { className: "text-ui-text-white font-400 text-13 text-center", children: "Your seed phrase is a list of words that are used to create your wallet. It is important to keep it safe and private." }), (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { sx: { width: "100% !important", marginTop: "auto" }, onClick: handleImportWallet, children: "Import" })] }) }) }) }) }));
|
|
129
129
|
};
|
|
130
130
|
exports.default = ImportWalletView;
|