Components
Loading preview...
Here is Button component
@untitledui
npx shadcn@latest add https://21st.dev/r/untitledui/button-1import { Button } from "@/components/ui/button-1";
export default function DemoOne() {
return (
<div className="flex flex-wrap gap-5">
<Button href="https://www.untitledui.com/" color="link-color" size="sm">Button sm</Button>
<Button href="https://www.untitledui.com/" color="link-color" size="md">Button md</Button>
<Button href="https://www.untitledui.com/" color="link-color" size="lg">Button lg</Button>
<Button href="https://www.untitledui.com/" color="link-color" size="xl">Button xl</Button>
</div>
);
}