Scroll Progress Bar 01
Scroll Progress Bar 01 is a React and Tailwind CSS marquee component from Bund UI, licensed MIT. Copy it and paste it into your project.
Bund UI
MIT
marquee
What it is
Scroll Progress Bar 01 is a React and Tailwind CSS marquee component from Bund UI, licensed MIT. Copy it and paste it into your project.
How to use it
Open it in the catalogue, press copy, and paste it into your project. The prompt you copy carries the code and the rules that tell your agent to reproduce it without changing anything.
Five free copies a month. No card.
Needs
npm i lucide-react
Licence
This component comes from Bund UI and is redistributed under the MIT licence, which permits commercial use. The copyright notice travels with the code.
Scroll Progress Bar 01
import ScrollProgressBar from "../scroll-progress-bar";
import { ChevronDownIcon, ChevronUpIcon } from "lucide-react";
export default function ScrollProgressBarExample() {
return (
<>
<ScrollProgressBar type="bar" />
<div>
<div className="flex h-screen items-center justify-center gap-2 text-xl">
Scroll <ChevronDownIcon className="text-muted-foreground size-4" />
</div>
<div className="flex h-screen items-center justify-center gap-2 text-xl">
Scroll <ChevronDownIcon className="text-muted-foreground size-4" />
</div>
<div className="flex h-screen items-center justify-center gap-2 text-xl">
Scroll <ChevronUpIcon className="text-muted-foreground size-4" />
</div>
</div>
</>
);
}