79088464

Date: 2024-10-15 05:05:31
Score: 1
Natty:
Report link

Square shaped button with icon in Mui [v6.1.3]

Use the sx prop to add css directly to the components. within sx: {{}}

  1. Set equal padding with p: 1 or any other value
  2. Set min-width to be 0 with minWidth: 0

So it comes out to be

<Button variant="outlined" color="text" sx={{ minWidth: 0, p: 1 }}>
   <NavigateNext />
</Button>

button demo

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Malay Patra