Fix the shrinking of 3 dots in first column

The three-dot menu icon was shrinking when placed in first column of table, as seen in the image below.

Screenshot 2023-09-29 at 9.35.53 PM.png
Caution - shrinking of 3 dots

Solution

To fix the above issue use flex-shrink-0 className as Dropdown buttonProps. See dropdown documentation to learn more about dropdown.

<Dropdown
 buttonProps={{ className: "flex-shrink-0" }}
 ...
>
...
</Dropdown>

Screenshot 2023-09-29 at 9.28.12 PM.png
Do - Use "flex-shrink-0" className as Dropdown buttonProps