Hi everyone how can i add an icon before title ?
like this

Yeah, it is possible.
Example:
components={{
Toolbar: props => (
<div style={{display: 'flex', alignItems: 'center', }}>
<YourIcon />
<MTableToolbar {...props} />
</div>
),
}}
You can add other styles or components to your liking in toolbar.
It works thanks @AugustoCalaca
Most helpful comment
Yeah, it is possible.
Example:
You can add other styles or components to your liking in toolbar.