LogoCloud
Grid of logos or brand icons with uniform sizing
Start Here
Start from the smallest working snippet, then move to interactive examples and the full API contract below.
Styled quick start
Copy this entrypoint first. It includes the imports required to get the component on screen.
<script lang="ts">
import '@dryui/ui/themes/default.css';
import '@dryui/ui/themes/dark.css';
import { LogoCloud } from '@dryui/ui';
</script>
<LogoCloud.Root columns={4}>
<LogoCloud.Item name="Acme">Acme logo</LogoCloud.Item>
<LogoCloud.Item name="Globex">Globex logo</LogoCloud.Item>
</LogoCloud.Root>Import options
Root package
import { LogoCloud } from '@dryui/ui'Per-component subpath
import { LogoCloud } from '@dryui/ui/logo-cloud'Customize
Use the interactive examples to see common variants, states, and composition patterns before building your own.
Default logo cloud
<LogoCloud.Root>
<LogoCloud.Item name="GitHub">GitHub</LogoCloud.Item>
<LogoCloud.Item name="GitLab">GitLab</LogoCloud.Item>
<LogoCloud.Item name="Bitbucket">Bitbucket</LogoCloud.Item>
<LogoCloud.Item name="Azure DevOps">Azure DevOps</LogoCloud.Item>
<LogoCloud.Item name="AWS">AWS</LogoCloud.Item>
</LogoCloud.Root>Linked items with custom columns
<LogoCloud.Root columns={4} align="center">
<LogoCloud.Item name="Svelte" href="https://svelte.dev">Svelte</LogoCloud.Item>
<LogoCloud.Item name="Vite" href="https://vitejs.dev">Vite</LogoCloud.Item>
<LogoCloud.Item name="Bun" href="https://bun.sh">Bun</LogoCloud.Item>
<LogoCloud.Item name="Playwright" href="https://playwright.dev">Playwright</LogoCloud.Item>
</LogoCloud.Root>Three columns, start-aligned
<LogoCloud.Root columns={3} align="start">
<LogoCloud.Item name="Stripe">Stripe</LogoCloud.Item>
<LogoCloud.Item name="Square">Square</LogoCloud.Item>
<LogoCloud.Item name="PayPal">PayPal</LogoCloud.Item>
</LogoCloud.Root>Structure
Compound components always start with LogoCloud.Root. Use this structure block to understand required wrappers before you wire state or styling.
LogoCloud.Root LogoCloud.Item
Compose
The full API contract lives here: props, CSS variables, and the public data attributes you can target when styling.
Compound component. Start with LogoCloud.Root, then add only the parts you need.
LogoCloud.Root
| Prop | Type | Default | Required | Bindable |
|---|---|---|---|---|
columns | number | 5 | — | — |
gap | string | — | — | — |
align | startcenterend | — | — | — |
children | Snippet | — | ✓ | — |
Forwards <div> attributes via rest props. Common examples: id, style, role.
LogoCloud.Item
| Prop | Type | Default | Required | Bindable |
|---|---|---|---|---|
href | string | — | — | — |
name | string | — | — | — |
children | Snippet | — | ✓ | — |
Forwards <element> attributes via rest props. Common examples: id, class, aria-label.