A clean, minimal button built on the shadcn Button with a faint diagonal hatch overlay and a soft drop shadow that adapts to light and dark themes. Understated by design.
"use client"; import MinimalButton from "@/components/ui/minimal-button"; export default function Default() { return ( <div className="flex min-h-screen w-full items-center justify-center bg-background p-12"> <MinimalButton>Deploy Doom</MinimalButton> </div> ); }