import { makeStyles } from '@material-ui/core/styles'; import Link from '@material-ui/core/Link'; import SvgIcon from '@material-ui/core/SvgIcon'; import Typography from '@material-ui/core/Typography'; function LightBulbIcon(props) { return ( ); } const useStyles = makeStyles(theme => ({ root: { margin: theme.spacing(6, 0, 3) }, lightBulb: { verticalAlign: 'middle', marginRight: theme.spacing(1) } })); export default function ProTip() { const classes = useStyles(); return ( Pro tip: See more{' '} page layout examples {' '} on the Material-UI documentation. ); }