Spaces:
Running
Running
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>; | |