import * as React from 'react'
import Link from '@mui/material/Link'
import SvgIcon, { SvgIconProps } from '@mui/material/SvgIcon'
import Typography from '@mui/material/Typography'
function LightBulbIcon(props: SvgIconProps) {
return (
)
}
export default function ProTip() {
return (
{'Pro tip: See more '}
templates
{' in the MaterialĀ UI documentation.'}
)
}