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.

14 lines (11 loc) 278 B
// ** MUI Imports import Chip from '@mui/material/Chip' const ChipsDisabled = () => { return ( <div className='demo-space-x'> <Chip label='Basic' disabled /> <Chip label='Outlined' variant='outlined' disabled /> </div> ) } export default ChipsDisabled