Components
Button
A button component
Preview
Loading...
import { ArrowUpIcon } from "lucide-react";import { Button } from "@/registry/axon/ui/button";export default function ButtonDemo() { return ( <div className="flex flex-wrap items-center gap-2 md:flex-row"> <Button variant="outline">Button</Button> <Button aria-label="Submit" size="icon" variant="outline"> <ArrowUpIcon /> </Button> </div> );}Installation
CLI
npx shadcn@latest add @emberui/buttonyarn shadcn@latest add @emberui/buttonpnpm dlx shadcn@latest add @emberui/buttonbunx --bun shadcn@latest add @emberui/buttonReference
This component is based on the shadcn/ui Button component.