@turnkey/react-wallet-kit
Version:
The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.
21 lines (17 loc) • 676 B
JavaScript
;
var jsxRuntime = require('react/jsx-runtime');
function OrSeparator() {
return jsxRuntime.jsxs("div", {
className: "flex flex-row w-full items-center justify-center my-4",
children: [jsxRuntime.jsx("div", {
className: "flex flex-grow h-[1px] bg-icon-text-light/20 dark:bg-icon-text-dark/20"
}), jsxRuntime.jsx("span", {
className: "mx-2 text-xs text-icon-text-light/60 dark:text-icon-text-dark/60",
children: "OR"
}), jsxRuntime.jsx("div", {
className: "flex flex-grow h-[1px] bg-icon-text-light/20 dark:bg-icon-text-dark/20"
})]
});
}
exports.OrSeparator = OrSeparator;
//# sourceMappingURL=OrSeparator.js.map