import clsx from "clsx" import { ButtonHTMLAttributes, PropsWithChildren } from "react" type Props = ButtonHTMLAttributes & PropsWithChildren const Button = ({ children, className, ...otherProps }: Props) => ( {children} ) export default Button