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.
22 lines (16 loc) • 421 B
text/typescript
// ThreeD Garden Base Styles
import typography from "~/themes/theme-light/base/typography"
// ThreeD Garden Helper Functions
import pxToRem from "~/themes/theme-light/functions/pxToRem"
const { size } = typography
// types
type Types = any
const dialogTitle: Types = {
styleOverrides: {
root: {
padding: pxToRem(16),
fontSize: size.xl,
},
},
}
export default dialogTitle