UNPKG

@evgeniym/ui-kit

Version:
12 lines (11 loc) 305 B
import React from "react"; interface customBtnProps { id?: any; value?: string | undefined; type?: "submit" | "reset" | "button" | undefined; className?: string; onClick?: (event: any) => void; label?: string; } export declare const CustomBtn: React.FC<customBtnProps>; export {};