BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/tripled/animated-progress-shadcnui

Animated Progress Bar

tripled/animated-progress-shadcnui
FreeComponent

Progress bar with smooth animation

Live preview

live · rendered by the registry
Rendered by tripled on their own page — this is the component running, not a screenshot of it.

Install it

npx shadcn@latest add https://ui.tripled.work/r/animated-progress-shadcnui.json

Source

@uitripled/react-shadcn/src/components/data/progress/animated-progress.tsxui.tripled.work/r/animated-progress-shadcnui.json
1"use client";
2
3import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
4import { animate, motion, useMotionValue, useTransform } from "framer-motion";
5import { useEffect } from "react";
6
7export function AnimatedProgress() {
8 const progress = useMotionValue(0);
9 const width = useTransform(progress, [0, 100], ["0%", "100%"]);
10 const displayProgress = useTransform(progress, (v) => `${Math.round(v)}%`);
11
12 useEffect(() => {
13 const animation = animate(progress, 75, {
14 duration: 2,
15 ease: "easeOut",
16 });
17
18 return animation.stop;
19 }, [progress]);
20
21 return (
22 <div className="flex items-center justify-center p-12">
23 <Card className="w-80">
24 <CardHeader>
25 <CardTitle className="text-lg">Upload Progress</CardTitle>
26 </CardHeader>
27 <CardContent>
28 <div className="h-2 w-full overflow-hidden rounded-full bg-gray-200 dark:bg-gray-800">
29 <motion.div
30 style={{ width }}
31 className="h-full bg-gradient-to-r from-accent to-slate-500"
32 />
33 </div>
34 <motion.p className="mt-2 text-right text-sm text-[var(--foreground)]/70">
35 {displayProgress}
36 </motion.p>
37 </CardContent>
38 </Card>
39 </div>
40 );
41}

What it pulls in

npm packages

  • framer-motion
  • react

Files it writes

  • @uitripled/react-shadcn/src/components/data/progress/animated-progress.tsx

Facts

Registry
tripled
Type
registry:ui
Access
Free
Files written
1
Licence
MIT
First indexed
2026-08-01
Last confirmed
today

Go to the source

Docs on tripled ui.tripled.work moumen-soliman/uitripled on GitHub Raw registry item This item as JSON

More from tripled

All 282 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
AI Chat Interfaceai-chat-interface-shadcnuitripledComponentsFree2 deps
AI Glow Inputai-glow-input-shadcnuitripledComponentsFree2 deps
AI Loading Skeletonai-loading-skeleton-shadcnuitripledComponentsFree2 deps
AI Response Typing Streamai-response-typing-shadcnuitripledComponentsFree2 deps
AI Unlock Animationai-unlock-animation-shadcnuitripledComponentsFree2 deps
Animated Accordionanimated-accordion-shadcnuitripledComponentsFree2 deps
Animated Card Stackanimated-card-stack-baseuitripledComponentsFree2 deps
Animated Card Stackanimated-card-stack-shadcnuitripledComponentsFree2 deps
BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex

BlockDex

Built by

Kynth Studio

Index

Components
Registries
Method
Open API

Guides

shadcn component libraries
Best shadcn registries
Free shadcn blocks

Reference

Corpus counts
Crawl health
hello@kynth.studio
Privacy
Terms

BlockDex