@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
9 lines (8 loc) • 464 B
TypeScript
import type { ChainId } from "@coin-voyage/shared/types";
import type { CSSProperties, DetailedHTMLProps, ImgHTMLAttributes } from "react";
interface TokenChainLogoProps extends DetailedHTMLProps<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
chainId: ChainId;
chainStyle?: CSSProperties;
}
export default function TokenChainLogo({ chainId, chainStyle, style, ...props }: TokenChainLogoProps): import("react/jsx-runtime").JSX.Element;
export {};