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.

24 lines (20 loc) 598 B
// ** MUI Imports import Box from '@mui/material/Box' import MuiAvatar from '@mui/material/Avatar' // ** Custom Components Imports import CustomAvatar from '~/@core/components/mui/avatar' const AvatarsLetter = () => { return ( <Box className='demo-space-x' sx={{ display: 'flex' }}> <MuiAvatar>H</MuiAvatar> <CustomAvatar>N</CustomAvatar> <CustomAvatar skin='light' color='error'> OP </CustomAvatar> <CustomAvatar skin='light-static' color='error'> AB </CustomAvatar> </Box> ) } export default AvatarsLetter