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';
export default function ButtonDemo() {
return (
<Button variant="primary" className="mx-auto w-full max-w-96">
Button
</Button>
);
}