UNPKG

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.

25 lines (19 loc) 467 B
// ThreeD Garden Base Styles import borders from "~/themes/theme-light/base/borders" import boxShadows from "~/themes/theme-light/base/boxShadows" const { borderRadius } = borders const { xxl } = boxShadows // types type Types = any const dialog: Types = { styleOverrides: { paper: { borderRadius: borderRadius.lg, boxShadow: xxl, }, paperFullScreen: { borderRadius: 0, }, }, } export default dialog