Skip to content

GridIconProviderProps

Props for the GridIconProvider component.

PropertyTypeDescription
iconsPartial<GridIcons>Icon overrides to provide to all descendant grids. Only specify icons you want to override - defaults are used for the rest.
childrenReactNode
const icons = {
expand: '➕',
collapse: '➖',
sortAsc: '↑',
sortDesc: '↓',
};
<GridIconProvider icons={icons}>
<App />
</GridIconProvider>