muryshev's picture
init
79278ec
raw
history blame contribute delete
346 Bytes
import { ReactNode } from "react";
export type ButtonProps = {
name?: string;
onClick: () => void;
buttonType?: "primary" | "outlined" | "secondary" | "link";
disabled?: boolean;
loading?: boolean;
icon?: ReactNode;
className?: string;
} & React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;