UNPKG

@coin-voyage/paykit

Version:

Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.

10 lines (9 loc) 277 B
import type React from "react"; interface LogoProps { src: React.ReactNode; background?: string; width?: number; height?: number; } export default function Logo({ src, background, width, height }: LogoProps): import("react/jsx-runtime").JSX.Element; export {};