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.

31 lines (26 loc) 880 B
// ** MUI Imports import Box from '@mui/material/Box' // ** Icons Imports import BellOutline from 'mdi-material-ui/BellOutline' import ContentSaveOutline from 'mdi-material-ui/ContentSaveOutline' // ** Custom Components Imports import CustomAvatar from '~/@core/components/mui/avatar' const AvatarsVariants = () => { return ( <Box className='demo-space-x' sx={{ display: 'flex' }}> <CustomAvatar variant='square'> <BellOutline /> </CustomAvatar> <CustomAvatar color='success' variant='rounded'> <ContentSaveOutline /> </CustomAvatar> <CustomAvatar skin='light' variant='square'> <BellOutline /> </CustomAvatar> <CustomAvatar skin='light' color='success' variant='rounded'> <ContentSaveOutline /> </CustomAvatar> </Box> ) } export default AvatarsVariants