# GridToolPanelProps

Props for the GridToolPanel component.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `id` | <code>string</code> | Unique identifier for this panel. Required for the shell plugin to track the panel. |
| `title` | <code>string</code> | Panel title shown in the accordion header. |
| `icon?` | <code>string</code> | Icon for the accordion section header. Can be an emoji or text. |
| `tooltip?` | <code>string</code> | Tooltip text for the accordion header. |
| `order?` | <code>number</code> | Panel order priority. Lower values appear first. |
| `children` | <code>(ctx: <a href="/grid/react/api/types/toolpanelcontext/">ToolPanelContext</a>) =&gt; ReactNode</code> | Render function for the panel content. Receives a context with the grid element reference. |

### Property Details

#### order

**Default:** `100`

---

#### children

```tsx
<GridToolPanel id="filters" title="Quick Filters" icon="🔍">
  {({ grid }) => <QuickFilters gridRef={grid} />}
</GridToolPanel>
```

---
