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

# Caption

> Small descriptive text

# Caption

The `Caption` component is used for secondary, supporting text that is smaller than the body text.

## Usage

```jsx theme={null}
<Caption value="Last updated: 5 mins ago" />
```

## Props

<ResponseField name="value" type="string" required>
  The text content.
</ResponseField>

<ResponseField name="color" type="string" default="secondary">
  Text color. Defaults to secondary (muted) text color.
</ResponseField>

<ResponseField name="align" type="string" default="left">
  Text alignment: `left`, `center`, `right`.
</ResponseField>

## Examples

### Image Caption

```jsx theme={null}
<Card>
  <Image src="/photo.jpg" />
  <Caption value="Photo by John Doe" align="center" />
</Card>
```
