# Heading

h1–h4 styled headings with optional figlet ASCII art



<ComponentPreview base="opentui" name="heading-demo" />

Installation [#installation]

<CodeTabs>
  <TabsList>
    <TabsTrigger value="cli">
      Command
    </TabsTrigger>

    <TabsTrigger value="manual">
      Manual
    </TabsTrigger>
  </TabsList>

  <TabsContent value="cli">
    ```bash
    npx shadcn@latest add @termcn/opentui-heading
    ```
  </TabsContent>

  <TabsContent value="manual">
    <Steps>
      <Step>
        Copy and paste the following code into your project.
      </Step>

      <ComponentSource base="opentui" name="heading" title="components/ui/heading.tsx" />

      <Step>
        Update the import paths to match your project setup.
      </Step>
    </Steps>
  </TabsContent>
</CodeTabs>

Usage [#usage]

```tsx
import { Heading } from "@/components/ui/heading";
```

```tsx
<Heading level={1}>Getting Started</Heading>
```

API Reference [#api-reference]

Heading [#heading]

| Prop        | Type               | Default    |
| ----------- | ------------------ | ---------- |
| `level`     | `1 \| 2 \| 3 \| 4` | `1`        |
| `children`  | `ReactNode`        | `required` |
| `color`     | `string`           | -          |
| `prefix1`   | `string`           | `"██ "`    |
| `prefix2`   | `string`           | `"▌ "`     |
| `prefix3`   | `string`           | `"› "`     |
| `uppercase` | `boolean`          | `true`     |
