// ThreeD Garden Helper Functions import pxToRem from "~/themes/theme-light/functions/pxToRem" // types type Types = any const icon: Types = { defaultProps: { baseClassName: "material-icons-round", fontSize: "inherit", }, styleOverrides: { fontSizeInherit: { fontSize: "inherit !important", }, fontSizeSmall: { fontSize: `${pxToRem(20)} !important`, }, fontSizeLarge: { fontSize: `${pxToRem(36)} !important`, }, }, } export default icon