# useGridIcons

> _Since v0.1.0_

Composable to get the current icon overrides from the nearest provider.

```ts
useGridIcons(): Partial<GridIcons> | undefined
```

#### Example

```vue
<script setup>
import { useGridIcons } from '@toolbox-web/grid-vue';

const icons = useGridIcons();
</script>
```
