In the Material UI the pagination component is shown below.
<Pagination count={10} />
Here the pagination starts from 1 and first view ends at 5, I need to show 1 to 4 as shown below
I tried using the siblingCount and boundaryCount, but that didn't work. Is there way or am I missing something in the above prop.

