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.
21 lines (16 loc) • 410 B
text/typescript
// ThreeD Garden Base Styles
import typography from "~/themes/theme-light/base/typography"
import colors from "~/themes/theme-light/base/colors"
const { size } = typography
const { text } = colors
// types
type Types = any
const dialogContentText: Types = {
styleOverrides: {
root: {
fontSize: size.md,
color: text.main,
},
},
}
export default dialogContentText