Components
Loading preview...
Here is Button component
@base-ui
npx shadcn@latest add https://21st.dev/r/base-ui/button-1import { Button } from "@/components/ui/button";
export default function ButtonShape() {
return (
<div className="flex flex-wrap gap-4">
<Button className="rounded-none">Rectangular</Button>
<Button>Square</Button>
<Button className="rounded-full">Rounded</Button>
</div>
);
}