import classNames from "classnames"; import { MouseEvent } from "react"; interface Props { children: React.ReactNode; disabled?: boolean; theme?: "primary" | "secondary" | "white" | "danger" | "success"; onClick?: (e: MouseEvent) => void; } export const Button: React.FC = ({ children, disabled, theme = "primary", onClick, ...props }) => { return ( ); };