@totalsoft/rocket-ui
Version:
A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.
17 lines (13 loc) • 418 B
text/typescript
import Typography from '@mui/material/Typography'
import { styled } from '@mui/material/styles'
export const NotFoundText = styled(Typography)(({ theme }) => ({
textAlign: 'center',
fontWeight: 'bold',
fontFamily: theme.typography.defaultFont.fontFamily
}))
export const NotFoundImage = styled('div')(() => ({
marginBottom: '30px',
marginTop: '50px',
textAlign: 'center'
}))
export default NotFoundText