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.
18 lines (15 loc) • 620 B
JavaScript
// ** Custom Components Imports
import CustomChip from '~/@core/components/mui/chip'
const ChipsCustomized = () => {
return (
<div className='demo-space-x'>
<CustomChip label='Primary' skin='light' color='primary' />
<CustomChip label='Secondary' skin='light' color='secondary' />
<CustomChip label='Success' skin='light' color='success' />
<CustomChip label='Error' skin='light' color='error' />
<CustomChip label='Warning' skin='light' color='warning' />
<CustomChip label='Info' skin='light' color='info' />
</div>
)
}
export default ChipsCustomized