react-garden
Version:
React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.
20 lines (15 loc) • 333 B
text/typescript
// ThreeD Garden Base Styles
import colors from "~/themes/theme-dark/base/colors"
const { transparent } = colors
// types
type Types = any
const iconButton: Types = {
styleOverrides: {
root: {
"&:hover": {
backgroundColor: transparent.main,
},
},
},
}
export default iconButton