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";
import { Placeholder } from '@untitledui/icons';
export default function DemoOne() {
return (
<div className="flex flex-wrap gap-5">
<Button isLoading showTextWhileLoading color="secondary" size="sm">Button sm</Button>
<Button isLoading showTextWhileLoading color="secondary" size="md">Button md</Button>
<Button isLoading showTextWhileLoading color="secondary" size="lg">Button lg</Button>
<Button isLoading showTextWhileLoading color="secondary" size="xl">Button xl</Button>
</div>
);
}