mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 16:14:13 +00:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import { Loader2 } from "lucide-react"
|
|
|
|
import { Button } from "@/registry/default/ui/button"
|
|
|
|
export default function ButtonLoading() {
|
|
return (
|
|
<Button disabled>
|
|
<Loader2 className="animate-spin" />
|
|
Please wait
|
|
</Button>
|
|
)
|
|
}
|