> ## Documentation Index
> Fetch the complete documentation index at: https://docs.evidence.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# Logo

> Display a company logo from logo.dev

```liquid theme={null}
{% logo domain="stripe.com" /%}
```

## Examples

### Basic Usage

```liquid theme={null}
{% logo domain="stripe.com" /%}
```

### Large Size

```liquid theme={null}
{% logo domain="github.com" size="lg" /%}
```

### Inside a Header

```liquid theme={null}
# {% logo domain="stripe.com" size="sm" /%} Stripe Report
```

## Attributes

<ResponseField name="domain" type="string" required>
  Company domain (e.g., "stripe.com")
</ResponseField>

<ResponseField name="size" type="string" default="base">
  Logo size: sm, base, lg, xl
</ResponseField>

<ResponseField name="grayscale" type="boolean" default="false">
  Display logo in grayscale
</ResponseField>

<ResponseField name="alt" type="string">
  Alt text (defaults to domain)
</ResponseField>
