i want to customize the mui datagrid (Pro), i would like to render in header column
the GridFilterMenuItem, that works well, but i would like to customize the inner text, currentely that render "FILTER"
<GridColumnMenuContainer
{...other}
currentColumn={apiRef.current.getColumn(headerName)}
onClick={apiRef.current.hideColumnMenu}
open
>
<GridFilterMenuItem
onClick={apiRef.current.hideColumnMenu}
column={apiRef.current.getColumn(headerName)}
/>
</GridColumnMenuContainer>
enter image description here