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.
24 lines (19 loc) • 539 B
text/typescript
// ThreeD Garden Base Styles
import colors from "~/themes/theme-light/base/colors"
import boxShadows from "~/themes/theme-light/base/boxShadows"
import borders from "~/themes/theme-light/base/borders"
const { white } = colors
const { md } = boxShadows
const { borderRadius } = borders
// types
type Types = any
const tableContainer: Types = {
styleOverrides: {
root: {
backgroundColor: white.main,
boxShadow: md,
borderRadius: borderRadius.xl,
},
},
}
export default tableContainer