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