Components
A polymorphic button built on Base UI's useRender. Ships 8 visual variants (default, secondary, outline, ghost, link, destructive, destructive-outline) and a full set of sizes including icon sizes (xs–xl). Has a built-in loading state that overlays an inline spinner and hides the label, a render prop for rendering as any element or as a child, and focus-visible / pressed styling out of the box.
npx @21st-dev/cli add cnippet.dev/cnippet-buttonLoading preview...
"use client";
import { MenuIcon, XIcon } from "lucide-react";
import { useState } from "react";
import { cn } from "@/lib/utils";
import { Button } from "@/components/ui/cnippet-button";
export default function ButtonMenuToggle() {
const [open, setOpen] = useState(false);
return (
<Button
aria-expanded={open}
aria-label={open ? "Close menu" : "Open menu"}
onClick={() => setOpen((v) => !v)}
size="icon"
variant="outline"
>
<span className="relative flex size-4 items-center justify-center">
<MenuIcon
aria-hidden="true"
className={cn(
"absolute size-4 transition-all duration-200",
open
? "rotate-90 scale-75 opacity-0"
: "rotate-0 scale-100 opacity-100",
)}
/>
<XIcon
aria-hidden="true"
className={cn(
"absolute size-4 transition-all duration-200",
open
? "rotate-0 scale-100 opacity-100"
: "-rotate-90 scale-75 opacity-0",
)}
/>
</span>
</Button>
);
}
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...
Loading preview...