btc-wallet
Version:
BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.
9 lines (8 loc) • 367 B
TypeScript
import { type CSSProperties } from 'react';
export interface CopyTextProps extends React.HTMLAttributes<HTMLDivElement> {
children: React.ReactNode;
value?: string;
className?: string;
style?: CSSProperties | undefined;
}
export default function CopyText({ children, value, className, style }: CopyTextProps): import("react/jsx-runtime").JSX.Element;