# GridIconProviderProps

Props for the GridIconProvider component.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `icons` | <code>Partial&lt;<a href="/grid/api/core/interfaces/gridicons/">GridIcons</a>&gt;</code> | Icon overrides to provide to all descendant grids. Only specify icons you want to override - defaults are used for the rest. |
| `children` | <code>ReactNode</code> |  |

### Property Details

#### icons

```tsx
const icons = {
  expand: '➕',
  collapse: '➖',
  sortAsc: '↑',
  sortDesc: '↓',
};

<GridIconProvider icons={icons}>
  <App />
</GridIconProvider>
```

---
