material-ui and TypeScript: How to use !important?
You can just cast it. For example:
left: {
display: "block",
float: "left!important" as any,
},
or
left: {
display: "block",
float: "left!important" as "left",
},
Here's a playground example.