mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-02-09 02:49:29 +08:00
13 lines
250 B
TypeScript
13 lines
250 B
TypeScript
import { Loader2 } from "lucide-react"
|
|
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
export function ButtonLoading() {
|
|
return (
|
|
<Button disabled>
|
|
<Loader2 className="mr-2 h-4 w-4 animate-spin" />
|
|
Please wait
|
|
</Button>
|
|
)
|
|
}
|