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