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

# FontWidth

> Specifies the horizontal width of a font, from compressed to expanded.

```typescript theme={null}
type FontWidth = "compressed" | "condensed" | "standard" | "expanded";
```

<ParamField path="compressed" type="string">
  The narrowest width. Characters are very narrow with tight spacing.
</ParamField>

<ParamField path="condensed" type="string">
  Narrower than standard but wider than compressed.
</ParamField>

<ParamField path="standard" type="string">
  The default font width.
</ParamField>

<ParamField path="expanded" type="string">
  Wider than standard. Characters have more horizontal space.
</ParamField>
