import { Button } from "@headlessui/react" import clsx from "clsx" import { FC } from "react" type Props = { title: string type?: "reset" | "button" | "submit" | undefined, pending?: boolean, theme?: "primary" | "secondary" | "glass" | "light" } export const ButtonComponent: FC = ({ title, type = "button", pending = false, theme = "primary" }) => { return ( ) }