Currently seeking a method to increase the line thickness of the Material UI Divider
, whether by stretching horizontal lines vertically or stretching vertical lines horizontally.
I have reviewed the documentation for Material UI v5 on https://mui.com/material-ui/api/divider/.
Despite checking the API, there does not seem to be an attribute available to adjust the Divider's "Thickness."
Various attempts with inline styles specific to Material UI v5 have been made:
<Divider sx={{height:"15px", fontSize:"50px", width:"50px", fontWeight:"bold", padding:"15px"}}/>
Regrettably, none of these attributes have successfully altered the "thickness" of the line.
In search of a solution tailored to the Material UI v5 Divider component specifically. Preferably without resorting to creating a Box component and applying inline sx attributes or custom classes to said Box component.
Any suggestions or ideas are greatly appreciated!