Theme

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.

svelte
<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

ts
import { LogoCloud } from '@dryui/ui'

Per-component subpath

ts
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

GitHub
GitHub
GitLab
GitLab
Bitbucket
Bitbucket
Azure DevOps
Azure DevOps
AWS
AWS
svelte
<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

Svelte
Svelte
Vite
Vite
Bun
Bun
Playwright
Playwright
svelte
<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

Stripe
Stripe
Square
Square
PayPal
PayPal
svelte
<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
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.Item

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.