UNPKG

@0xsequence/connect

Version:
11 lines 741 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { Text } from '@0xsequence/design-system'; import { SequenceLogo } from './SequenceLogo.js'; export const PoweredBySequence = () => { return (_jsxs("div", { className: "powered-by-sequence-footer flex relative gap-1 flex-row items-center justify-center select-none cursor-pointer", onClick: () => { if (typeof window !== 'undefined') { window.open('https://sequence.xyz'); } }, children: [_jsx(Text, { variant: "xsmall", color: "muted", fontWeight: "bold", children: "Powered by" }), _jsx("div", { className: "w-[80px] h-auto", children: _jsx(SequenceLogo, {}) })] })); }; //# sourceMappingURL=PoweredBySequence.js.map