Components
Loading preview...
Renders a clickable button or an element styled as a button with advance options
npx shadcn@latest add https://21st.dev/r/sean0205/button-1import { Button } from '@/components/ui/button-1';
import { Bell, CalendarCheck, Trash2 } from 'lucide-react';
export default function ButtonDemo() {
return (
<div className="flex items-center gap-4">
<Button variant="primary">
<Trash2 /> Primary
</Button>
<Button variant="outline">
<Bell /> Outline
</Button>
<Button variant="ghost">
<CalendarCheck /> Ghost
</Button>
</div>
);
}