Components
Loading preview...
Displays a button component with various styles and states.
npx shadcn@latest add https://21st.dev/r/preetsuthar17/buttonimport { Button } from "@/components/ui/button";
export default function DemoOne() {
return <div className="flex gap-4 flex-wrap font-medium">
<Button>Default</Button>
<Button variant="secondary">Secondary</Button>
<Button variant="outline">Outline</Button>
<Button variant="ghost">Ghost</Button>
<Button variant="link">Link</Button>
<Button variant="destructive">Destructive</Button>
</div>;
}