UNPKG

@evgeniym/ui-kit

Version:
10 lines (9 loc) 218 B
import React from "react"; interface ButtonT { id?: string; handleClick?: (e: any) => void; disabled?: boolean; theme?: "light" | "dark"; } export declare const AddButton: React.FC<ButtonT>; export {};