import { Button } from "@/components/ui/button"; import { cn } from "@/app/common/utils"; import { ButtonHTMLAttributes, ReactElement, ReactNode } from "react"; /** * Props for this button. */ type MinecraftButtonProps = { /** * The class name to apply to this button. */ className?: string; /** * The children of this button. */ children: ReactNode; }; /** * A Minecraft styled button. * * @returns the button jsx */ const MinecraftButton = ({ className, children, ...props }: ButtonHTMLAttributes & MinecraftButtonProps): ReactElement => ( ); export default MinecraftButton;