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.

22 lines (19 loc) 472 B
// ** MUI Imports import Button from '@mui/material/Button' const ButtonsOutlined = () => { return ( <div className='demo-space-x'> <Button variant='outlined'>Primary</Button> <Button variant='outlined' color='secondary'> Secondary </Button> <Button variant='outlined' disabled> Disabled </Button> <Button variant='outlined' href='#'> Link </Button> </div> ) } export default ButtonsOutlined