import Typography from '@mui/material/Typography';
import Paper, { PaperProps } from '@mui/material/Paper';
// ----------------------------------------------------------------------
interface Props extends PaperProps {
query?: string;
}
export default function SearchNotFound({ query, sx, ...other }: Props) {
return query ? (
Not Found
No results found for
"{query}".
Try checking for typos or using complete words.
) : (
Please enter keywords
);
}