Still get the default ArrowDownward icon

Instead of rendering default ArrowDownward icon, I want it to render ArrowDropDown icon

Steps:
ArrowDropDown at the top of the file: import ArrowDropDown from '@material-ui/icons/ArrowDropDown';ArrowDropDown to IconComponent within the TableSortLabel component:<TableSortLabel
IconComponent={ArrowDropDown}
active={ currentSort.field === (field.props.sortBy || field.props.source) }
direction={currentSort.order === 'ASC' ? 'asc' : 'desc'}
data-sort={field.props.sortBy || field.props.source}
onClick={updateSort}
classes={classes}
>
yarn start
I am trying to change the default ArrowDownward icon by setting IconComponent to ArrowDropDown icon, but it doesn't work, I still get the default ArrowDownward icon in the Chrome
| Tech | Version |
| ----------- | ------- |
| @material-ui/icons | v1.0.0 |
| Material-UI | v1.4.0 |
| React | v16.8.4 |
| Browser | Chrome |
Can you provide a minimal reproducible example please. Potentially a codesandbox
Material-UI | v1.4.0
This feature was only added in v3.0.0.
Can you provide a minimal reproducible example please. Potentially a codesandbox
Sorry I didn't take a closer look at the step.
There is the Sandbox link:
https://codesandbox.io/embed/create-react-app-oupku
We only provide (free) support for the last active version. You need to upgrade to v3.0.0 or more recent version.
Most helpful comment
This feature was only added in v3.0.0.