@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
28 lines (25 loc) • 408 B
JavaScript
"use client";
import {
Box
} from "./chunk-ZKEPQLOV.js";
// src/components/Disclaimer/DisclaimerLink.tsx
import React from "react";
var DisclaimerLink = ({
children,
href
}) => {
return /* @__PURE__ */ React.createElement(
Box,
{
as: "a",
color: "accentColor",
href,
rel: "noreferrer",
target: "_blank"
},
children
);
};
export {
DisclaimerLink
};