Renders a clickable button or an element styled as a button with advance options
import { Button } from '@/components/ui/button-1'; import { CalendarCheck } from 'lucide-react'; export default function ButtonDemo() { return ( <div className="flex items-center gap-4"> <Button variant="outline" shape="circle"> Circle button </Button> <Button variant="outline" shape="circle" mode="icon"> <CalendarCheck /> </Button> </div> ); }
Part of ReUI — browse the full library on 21st.dev.