import type { ButtonHTMLAttributes, FunctionComponent } from "react"; import { useTransition } from "@remix-run/react"; import clsx from "clsx"; type Props = ButtonHTMLAttributes; const Button: FunctionComponent = ({ children, ...props }) => { const transition = useTransition(); return ( ); } export default Button;