{ "$schema": "https://ui.shadcn.com/schema/registry-item.json", "name": "logo-cloud-1", "type": "registry:block", "description": "Simple logo grid displaying brand icons in a clean, bordered layout with light and dark mode support.", "files": [ { "path": "registry/blocks/logo-cloud/1/logo-cloud.tsx", "content": "import { cn } from \"@/lib/utils\";\n\ntype Logo = {\n src: string;\n alt: string;\n width?: number;\n height?: number;\n};\n\ntype LogoCloudProps = React.ComponentProps<\"div\"> & {\n logos: Logo[];\n};\n\nexport function LogoCloud({ logos, className, ...props }: LogoCloudProps) {\n return (\n \n {logos.map((logo) => (\n \n \n \n ))}\n \n );\n}\n", "type": "registry:component" } ], "meta": { "height": "50vh" }, "categories": [ "logo-cloud" ] }