This component no longer exists. It was in neobrutal-ui’s manifest when we first indexed it and is not there now — the registry served its inventory on 2026-08-06 and this item was not on it. The install command below will fail. It is kept here because a tutorial somewhere still tells people to run it.
Marquee
neobrutal-ui/marqueeRemovedComponent
neobrutal-ui publishes no description for this item.
Live preview
live · rendered by the registry
Rendered by neobrutal-ui on their own page — this is the component running, not a screenshot of it.Install it
npx shadcn@latest add https://neobrutal-ui.andongmin.com/r/marquee.jsonSource
1export default function Marquee({ items }: { items: string[] }) {2 return (3 <div className="relative flex w-full overflow-x-hidden border-b-2 border-t-2 border-border bg-secondary-background text-foreground font-base">4 <div className="animate-marquee whitespace-nowrap py-12 motion-reduce:animate-none">5 {items.map((item) => {6 return (7 <span key={item} className="mx-4 text-4xl">8 {item}9 </span>10 );11 })}12 </div>1314 <div15 aria-hidden="true"16 className="absolute top-0 animate-marquee2 whitespace-nowrap py-12 motion-reduce:hidden"17 >18 {items.map((item) => {19 return (20 <span key={item} className="mx-4 text-4xl">21 {item}22 </span>23 );24 })}25 </div>26 </div>27 );28}
