import * as React from "react"
import clsx from "clsx"
import { Button as BaseButton, ButtonProps } from "@mui/base/Button"
export const Button = React.forwardRef<
HTMLButtonElement,
ButtonProps & { invert?: boolean; href?: string }
>(function Button(props, ref) {
const { invert, className, href, ...other } = props
const button = (
)
if (href === undefined) {
return button
}
return {button}
})