@onwave/ui
Version:
onwave ui library
12 lines (11 loc) • 317 B
TypeScript
/// <reference types="node" />
import React from "react";
import { UrlObject } from "url";
export declare type LinkButtonProps = {
className?: string;
href: string | UrlObject;
color?: string;
backgroundColor?: string;
size?: number;
};
export declare const LinkButton: React.FC<LinkButtonProps>;