import React from "react"; import { Button as BaseButton } from "baseui/button"; export interface ButtonProps { startEnhancer?: React.ReactNode; children: React.ReactNode; isSelected?: boolean; overrides?: any; kind?: "primary" | "secondary" | "minimal" | "tertiary"; size?: "default" | "compact" | "large" | "mini"; shape?: "default" | "circle" | "pill" | "round" | "square"; onClick?: () => void; } /** * This is the `