---
title: Icons
description: Browse available product and UI icons.
image: https://developers.cloudflare.com/cf-twitter-card.png
---

> Documentation Index  
> Fetch the complete documentation index at: https://developers.cloudflare.com/style-guide/llms.txt  
> Use this file to discover all available pages before exploring further. 

[Skip to content](#%5Ftop) 

# Icons

There are two icon components which pull from two different icon sets.

## astro-icon

The [astro-icon ↗](https://www.astroicon.dev/) package is available to use as a standalone component.

Primarily, this is used for Cloudflare product icons which are stored in `/src/icons/*.svg`.

```
import { AstroIcon } from "~/components";
<AstroIcon name="workers" class="text-5xl text-orange-400" />
```

## Starlight

The Starlight icon set is available to use in `Tab`, `Card` and other Starlight components.

```
import { StarlightIcon } from "~/components";
<StarlightIcon  name="seti:shell"  color="var(--sl-color-text-accent)"  size="3rem"/>
```

## Icon library

Optionally, you can choose a corresponding icon from Starlight’s [Icons ↗](https://starlight.astro.build/reference/icons/#all-icons) for cards or tabs.

```json
{"@context":"https://schema.org","@type":"TechArticle","@id":"https://developers.cloudflare.com/style-guide/components/icons/#page","headline":"Icons · Cloudflare Style Guide","description":"Browse available product and UI icons.","url":"https://developers.cloudflare.com/style-guide/components/icons/","inLanguage":"en","image":"https://developers.cloudflare.com/cf-twitter-card.png","dateModified":"2026-06-18","publisher":{"@type":"Organization","name":"Cloudflare","url":"https://www.cloudflare.com/"},"isPartOf":{"@type":"WebSite","@id":"https://developers.cloudflare.com/#website","name":"Cloudflare Docs","url":"https://developers.cloudflare.com/"}}
{"@context":"https://schema.org","@type":"BreadcrumbList","itemListElement":[{"@type":"ListItem","position":1,"item":{"@id":"/directory/","name":"Directory"}},{"@type":"ListItem","position":2,"item":{"@id":"/style-guide/","name":"Style Guide"}},{"@type":"ListItem","position":3,"item":{"@id":"/style-guide/components/","name":"Components"}},{"@type":"ListItem","position":4,"item":{"@id":"/style-guide/components/icons/","name":"Icons"}}]}
```
