BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/Kibo UI Registry/marquee

marquee

kibo-ui-registry/marquee
FreeComponent

Marquees are a great way to show a list of items in a horizontal scrolling motion.

Live preview

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

Install it

npx shadcn@latest add https://www.kibo-ui.com/r/marquee.json

Source

index.tsxwww.kibo-ui.com/r/marquee.json
1"use client";
2
3import type { HTMLAttributes } from "react";
4import type { MarqueeProps as FastMarqueeProps } from "react-fast-marquee";
5import FastMarquee from "react-fast-marquee";
6import { cn } from "@/lib/utils";
7
8export type MarqueeProps = HTMLAttributes<HTMLDivElement>;
9
10export const Marquee = ({ className, ...props }: MarqueeProps) => (
11 <div
12 className={cn("relative w-full overflow-hidden", className)}
13 {...props}
14 />
15);
16
17export type MarqueeContentProps = FastMarqueeProps;
18
19export const MarqueeContent = ({
20 loop = 0,
21 autoFill = true,
22 pauseOnHover = true,
23 ...props
24}: MarqueeContentProps) => (
25 <FastMarquee
26 autoFill={autoFill}
27 loop={loop}
28 pauseOnHover={pauseOnHover}
29 {...props}
30 />
31);
32
33export type MarqueeFadeProps = HTMLAttributes<HTMLDivElement> & {
34 side: "left" | "right";
35};
36
37export const MarqueeFade = ({
38 className,
39 side,
40 ...props
41}: MarqueeFadeProps) => (
42 <div
43 className={cn(
44 "absolute top-0 bottom-0 z-10 h-full w-24 from-background to-transparent",
45 side === "left" ? "left-0 bg-gradient-to-r" : "right-0 bg-gradient-to-l",
46 className
47 )}
48 {...props}
49 />
50);
51
52export type MarqueeItemProps = HTMLAttributes<HTMLDivElement>;
53
54export const MarqueeItem = ({ className, ...props }: MarqueeItemProps) => (
55 <div
56 className={cn("mx-2 flex-shrink-0 object-contain", className)}
57 {...props}
58 />
59);

What it pulls in

npm packages

  • react-fast-marquee

Files it writes

  • index.tsx

Facts

Registry
Kibo UI Registry
Type
registry:ui
Access
Free
Files written
1
Licence
the repository states none
In the index
at or before 2026-08-08
Last confirmed
today

Go to the source

Docs on Kibo UI Registry www.kibo-ui.com Raw registry item This item as JSON

More from Kibo UI Registry

All 41 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
announcementannouncementKibo UI RegistryComponentsFreeno deps
avatar-stackavatar-stackKibo UI RegistryComponentsFreeno deps
bannerbannerKibo UI RegistryComponentsFree2 deps
calendarcalendarKibo UI RegistryComponentsFree3 deps
choiceboxchoiceboxKibo UI RegistryComponentsFree2 deps
code-blockcode-blockKibo UI RegistryComponentsFree5 deps · 2 files
color-pickercolor-pickerKibo UI RegistryComponentsFree3 deps
comboboxcomboboxKibo UI RegistryComponentsFree2 deps

Also from Kynth Studios

Built for the same person as BlockDex

SkillWorks

Claude Code skills and plugins, scored

skillworks.kynth.studio

RuleStack

AGENTS.md gallery and agent-config comparison

rulestack.kynth.studio

ToolDrift

What the AI coding tools changed last night

tooldrift.kynth.studio

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex

The studio list

One product, taken apart, once a month

Kynth Studios pulls one shipped product open every month — what it does, what it cost to build, what the pipeline behind it looks like, and what the numbers did. One email a month, nothing in between.

Double opt-in — we send one confirmation link and nothing else until you click it.

BlockDex

Built by

Kynth Studios

the studio behind SkillWorks, RuleStack and ToolDrift

part of Toolproof, the measurement layer for AI agent tooling

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

© 2026 BlockDex. A Kynth Studios product. Changelog

BlockDex