BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/loomui/logo-loom

Logo Loom

loomui/logo-loom
FreeComponent

A logo row woven into place, every other mark arriving from the other side of the thread.

Live preview

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

Install it

npx shadcn@latest add https://loomui.design/r/logo-loom.json

Source

registry/loomui/logo-loom.tsxloomui.design/r/logo-loom.json
1"use client"
2
3import * as React from "react"
4
5import { cn } from "@/lib/utils"
6
7export interface LogoLoomProps extends React.ComponentProps<"div"> {
8 /** Milliseconds between one logo arriving and the next. */
9 stagger?: number
10 /** Length of a single logo's arrival, in milliseconds. */
11 duration?: number
12 /** How far a logo travels in, as a CSS length. */
13 distance?: string
14 /** Draw the thread the logos are woven onto. */
15 thread?: boolean
16 /** Weave again every time the row comes back into view. */
17 repeat?: boolean
18}
19
20export function LogoLoom({
21 children,
22 className,
23 stagger = 90,
24 duration = 700,
25 distance = "1.6rem",
26 thread = true,
27 repeat = false,
28 ...props
29}: LogoLoomProps) {
30 const ref = React.useRef<HTMLDivElement>(null)
31 const [woven, setWoven] = React.useState(false)
32
33 React.useEffect(() => {
34 const node = ref.current
35 if (!node) {
36 return
37 }
38
39 const observer = new IntersectionObserver(
40 ([entry]) => {
41 if (entry.isIntersecting) {
42 setWoven(true)
43 } else if (repeat) {
44 setWoven(false)
45 }
46 },
47 { threshold: 0.35 }
48 )
49
50 observer.observe(node)
51 return () => observer.disconnect()
52 }, [repeat])
53
54 const logos = React.Children.toArray(children)
55
56 return (
57 <div
58 ref={ref}
59 data-slot="logo-loom"
60 data-woven={woven ? "" : undefined}
61 className={cn(
62 "relative flex flex-wrap items-center justify-center gap-x-10 gap-y-6",
63 className
64 )}
65 {...props}
66 >
67 {/* The warp. It runs behind every logo, and only the logos that carry a
68 background hide it, which is what makes the row read as woven rather
69 than as a row of logos on a line. */}
70 {thread ? (
71 <span
72 aria-hidden="true"
73 className="border-muted-foreground/25 absolute inset-x-0 top-1/2 -z-10 border-t border-dashed"
74 />
75 ) : null}
76
77 {logos.map((logo, index) => (
78 <span
79 key={index}
80 data-slot="logo-loom-item"
81 className={cn(
82 "relative px-3 opacity-0",
83 // Every other logo sits over the thread and the rest sit under it.
84 // The pass a logo takes is also the direction it arrives from, so
85 // the row interlaces as it lands.
86 index % 2 === 0 ? "bg-background" : "bg-transparent",
87 woven &&
88 "animate-loom-weave motion-reduce:animate-none motion-reduce:opacity-100"
89 )}
90// … truncated

What it pulls in

Other registry items

  • utils

Files it writes

  • registry/loomui/logo-loom.tsx

Facts

Registry
loomui
Type
registry:ui
Access
Free
Files written
1
Theme wiring
ships cssVars
Licence
MIT
In the index
at or before 2026-08-20
Last confirmed
yesterday

Go to the source

Docs on loomui loomui.design rjcuff/Loom-UI on GitHub Raw registry item This item as JSON

More from loomui

All 91 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
Aurora Backdropaurora-backdroploomuiComponentsFreeno deps
Bento Gridbento-gridloomuiComponentsFreeno deps
Card Stackcard-stackloomuiComponentsFreeno deps
Compare Slidercompare-sliderloomuiComponentsFreeno deps
Confetti Buttonconfetti-buttonloomuiComponentsFreeno deps
Count Upcount-uploomuiComponentsFreeno deps
Credit Cardcredit-cardloomuiComponentsFreeno deps
DrawerdrawerloomuiComponentsFree1 dep

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

KitGrade

SaaS starter kits, scored on what can be checked

kitgrade.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 KitGrade

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 KitGrade

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 KitGrade

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