You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
760 B
35 lines
760 B
import { Box } from '@material-ui/core'; |
|
import { makeStyles } from '@material-ui/core/styles'; |
|
import { TEXT } from '../lib/consts/DEFAULT_THEME'; |
|
import { BodyText } from './Text'; |
|
|
|
const useStyles = makeStyles(() => ({ |
|
innerBody: { |
|
borderWidth: '1px', |
|
borderRadius: '3px', |
|
borderStyle: 'solid', |
|
borderColor: TEXT, |
|
marginTop: '5px', |
|
marginLeft: '5px', |
|
paddinLeft: '5px', |
|
}, |
|
innerHeader: { |
|
width: '100%', |
|
borderWidth: '1px', |
|
borderRadius: '3px', |
|
borderStyle: 'solid', |
|
borderColor: TEXT, |
|
}, |
|
})); |
|
|
|
const InnerPanel = (): JSX.Element => { |
|
const classes = useStyles(); |
|
|
|
return ( |
|
<Box className={classes.innerBody}> |
|
<BodyText text="inner body" /> |
|
</Box> |
|
); |
|
}; |
|
|
|
export default InnerPanel;
|
|
|