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.
16 lines (13 loc) • 451 B
JavaScript
// ** MUI Imports
import Box from '@mui/material/Box'
import Rating from '@mui/material/Rating'
const RatingsSizes = () => {
return (
<Box className='demo-space-y' sx={{ display: 'flex', flexDirection: 'column' }}>
<Rating defaultValue={2} name='size-small' size='small' />
<Rating defaultValue={2} name='size-medium' />
<Rating defaultValue={2} name='size-large' size='large' />
</Box>
)
}
export default RatingsSizes