Transform a style object into makeStyles compatible object
npm install v9helper-transform-style-object``ts
import { transformStylesObject } from "v9helper-transform-style-object";
const styleObject = {backgroundColor: red}; // must be enclosed with '{}'
transformStylesObject(styleObject);
``