@coin-voyage/paykit
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
13 lines (12 loc) • 472 B
TypeScript
import type React from "react";
import { ThemeContainer } from "./styles";
interface ThemedButtonProps {
children?: React.ReactNode;
variant?: "primary" | "secondary" | "tertiary";
autoSize?: boolean;
duration?: number;
style?: React.CSSProperties;
onClick?: () => void;
}
export default function ThemedButton({ children, variant, autoSize, duration, style }: ThemedButtonProps): import("react/jsx-runtime").JSX.Element;
export { ThemeContainer };