---
title: Logo library
description: A comprehensive list of all available logos in the Click UI library.
---

Source: https://clickhouse.design/click-ui/logoLibrary

# Logo library

A comprehensive list of all available logos in the Click UI library.

| Prop  | Type                                            | Default value | Description                                   |
| ----- | ----------------------------------------------- | ------------- | --------------------------------------------- |
| name  | `LogoName`                                      | `""`          | The name of the logo to display               |
| theme | `"light" \| "dark"`                             | `"light"`     | The theme variant of the logo (light or dark) |
| size  | `"xs" \| "sm" \| "md" \| "lg" \| "xl" \| "xxl"` | `"md"`        | The size of the logo                          |

```tsx
import { Logo } from '@clickhouse/click-ui'

<Logo 
  name="clickhouse"
  theme="light"
  size="md"
/>
```
