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.
49 lines (45 loc) • 1.28 kB
JavaScript
// ** React Imports
import { Fragment } from 'react'
// ** MUI Imports
import Button from '@mui/material/Button'
const ButtonsColors = () => {
return (
<>
<div className='demo-space-x'>
<Button color='success'>Success</Button>
<Button color='error'>Error</Button>
<Button color='warning'>Warning</Button>
<Button color='info'>Info</Button>
</div>
<div className='demo-space-x'>
<Button variant='outlined' color='success'>
Success
</Button>
<Button variant='outlined' color='error'>
Error
</Button>
<Button variant='outlined' color='warning'>
Warning
</Button>
<Button variant='outlined' color='info'>
Info
</Button>
</div>
<div className='demo-space-x'>
<Button variant='contained' color='success'>
Success
</Button>
<Button variant='contained' color='error'>
Error
</Button>
<Button variant='contained' color='warning'>
Warning
</Button>
<Button variant='contained' color='info'>
Info
</Button>
</div>
</>
)
}
export default ButtonsColors