95.8k

Spinner

PreviousNext

An indicator that can be used to show a loading state.

Installation

pnpm dlx shadcn@latest add spinner

Usage

import { Spinner } from "@/components/ui/spinner"
<Spinner />

Customization

You can replace the default spinner icon with any other icon by editing the Spinner component.

components/ui/spinner.tsx
import { LoaderIcon } from "lucide-react"
 
import { cn } from "@/lib/utils"
 
function Spinner({ className, ...props }: React.ComponentProps<"svg">) {
  return (
    <LoaderIcon
      role="status"
      aria-label="Loading"
      className={cn("size-4 animate-spin", className)}
      {...props}
    />
  )
}
 
export { Spinner }

Examples

Size

Use the size-* utility class to change the size of the spinner.

Color

Use the text- utility class to change the color of the spinner.

Button

Add a spinner to a button to indicate a loading state. The <Button /> will handle the spacing between the spinner and the text.

Badge

You can also use a spinner inside a badge.

Input Group

Input Group can have spinners inside <InputGroupAddon>.

Empty

Item

Use the spinner inside <ItemMedia> to indicate a loading state.

API Reference

Spinner

Use the Spinner component to display a spinner.

PropTypeDefault
classNamestring``
<Spinner />