Files
shadcn-ui/apps/www/registry/default/example/button-loading.tsx
2023-06-22 22:44:52 +04:00

13 lines
264 B
TypeScript

import { Loader2 } from "lucide-react"
import { Button } from "@/registry/default/ui/button"
export default function ButtonLoading() {
return (
<Button disabled>
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
Please wait
</Button>
)
}