Components
Loading preview...
Here is Button component
@arihantcodes_1f7b8c4d
npx shadcn@latest add https://21st.dev/r/arihantcodes_1f7b8c4d/base-buttonimport { Button } from "@/components/ui/button-1";
import { LoaderCircleIcon } from "lucide-react";
export default function Component() {
return (
<Button disabled>
<LoaderCircleIcon className="animate-spin" size={16} aria-hidden="true" />
Please wait..
</Button>
);
}