BlockDex

Components

Registries

Free blocks

Method

BlockDex

Components

Registries

Free blocks

Method

Open API

BlockDex

Components

Registries

Free blocks

Method

Open API

Components/efferd/logo-cloud-1

logo-cloud-1

efferd/logo-cloud-1
FreeBlock

Simple logo grid displaying brand icons in a clean, bordered layout with light and dark mode support.

Install it

npx shadcn@latest add https://legacy.efferd.com/r/logo-cloud-1.json

Source

registry/blocks/logo-cloud/1/logo-cloud.tsxlegacy.efferd.com/r/logo-cloud-1.json
1import { cn } from "@/lib/utils";
2
3type Logo = {
4 src: string;
5 alt: string;
6 width?: number;
7 height?: number;
8};
9
10type LogoCloudProps = React.ComponentProps<"div"> & {
11 logos: Logo[];
12};
13
14export function LogoCloud({ logos, className, ...props }: LogoCloudProps) {
15 return (
16 <div
17 className={cn(
18 "mx-auto grid max-w-3xl grid-cols-2 rounded-lg bg-border shadow md:grid-cols-4",
19 className
20 )}
21 {...props}
22 >
23 {logos.map((logo) => (
24 <div
25 className="flex items-center justify-center rounded-lg border bg-background p-8"
26 key={logo.alt}
27 >
28 <img
29 alt={logo.alt}
30 className="pointer-events-none block h-4 select-none md:h-5 dark:brightness-0 dark:invert"
31 height={logo.height ?? "auto"}
32 loading="lazy"
33 src={logo.src}
34 width={logo.width ?? "auto"}
35 />
36 </div>
37 ))}
38 </div>
39 );
40}

Files it writes

  • registry/blocks/logo-cloud/1/logo-cloud.tsx

Facts

Registry
efferd
Type
registry:block
Access
Free
Files written
1
Licence
NOASSERTION
First indexed
2026-08-01
Last confirmed
yesterday

Go to the source

legacy.efferd.com shabanhr/efferd-ui on GitHub Raw registry item This item as JSON

More from efferd

All 40 items
Same registry, same kind — the ones you would have found next
ComponentRegistryKindAccessInstallsCommand
auth-1auth-1efferdBlocksFreeno deps · 2 files
auth-2auth-2efferdBlocksFree1 dep · 3 files
contact-1contact-1efferdBlocksFreeno deps
contact-2contact-2efferdBlocksFreeno deps
cta-1cta-1efferdBlocksFreeno deps
cta-2cta-2efferdBlocksFreeno deps
cta-3cta-3efferdBlocksFreeno deps
cta-4cta-4efferdBlocksFreeno 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