mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-08 14:35:09 +00:00
37 lines
950 B
TypeScript
37 lines
950 B
TypeScript
import { Button } from "@/examples/radix/ui/button"
|
|
import {
|
|
Item,
|
|
ItemActions,
|
|
ItemContent,
|
|
ItemDescription,
|
|
ItemFooter,
|
|
ItemMedia,
|
|
ItemTitle,
|
|
} from "@/examples/radix/ui/item"
|
|
import { Progress } from "@/examples/radix/ui/progress"
|
|
import { Spinner } from "@/examples/radix/ui/spinner"
|
|
|
|
export function SpinnerItem() {
|
|
return (
|
|
<div className="flex w-full max-w-md flex-col gap-4 [--radius:1rem]">
|
|
<Item variant="outline">
|
|
<ItemMedia variant="icon">
|
|
<Spinner />
|
|
</ItemMedia>
|
|
<ItemContent>
|
|
<ItemTitle>Downloading...</ItemTitle>
|
|
<ItemDescription>129 MB / 1000 MB</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions className="hidden sm:flex">
|
|
<Button variant="outline" size="sm">
|
|
Cancel
|
|
</Button>
|
|
</ItemActions>
|
|
<ItemFooter>
|
|
<Progress value={75} />
|
|
</ItemFooter>
|
|
</Item>
|
|
</div>
|
|
)
|
|
}
|