# Feature11

The `Feature11` component presents a section with a heading and optional caption, followed by an optional image inside a `GraphicsCard`. Below the image, a grid of animated `IconCard` components displays feature details.

{% hint style="info" %}
All available props for the Feature11 component are defined and handled within **Component usage path** file. This allows for easy modifications to the content of the feature section.
{% endhint %}

**Component path**: `src/blocks/feature/Feature11.tsx`

**Component usage path:**  `src/app/blocks/feature/feature11/page.tsx`

**Preview link:** [**https://www.saasable.io/blocks/feature/feature11**](https://www.saasable.io/blocks/feature/feature11)

## Props Details

| Prop           | Type                          | Description                                              | Displayed as                                                                                                                         |
| -------------- | ----------------------------- | -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| **heading**    | `string`                      | Main heading for the feature section                     | `"Our Key Features"`                                                                                                                 |
| **caption**    | `string` (Optional)           | Additional context or description under the heading.     | `"Discover the features that will transform your customer relationships"`                                                            |
| **image**      | `ImageCommonProps` (Optional) | Image path or object with `light` and `dark` image path. | <p><code>"path-to-image.svg"</code><br> or <br><code>{ light: 'path-to-image-light.svg', dark: 'path-to-image-dark.svg' }</code></p> |
| **showBorder** | `boolean` (Optional)          | Optional prop for display border around image.           | Default it will show border around image.                                                                                            |
| **features**   | `IconCardProps[]`             | Array of feature details to display                      | `[ { icon: 'icon-name1', title: 'Feature 1', content: 'Description of Feature 1', animationDelay: 0.3 }, ... ]`                      |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://phoenixcoded.gitbook.io/saasable/ui-kit/development/components/feature/feature11.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
