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