1 import { c } from 'ttag';
3 import notFoundErrorSvg from '@proton/styles/assets/img/errors/error-404.svg';
5 import IllustrationPlaceholder from '../illustration/IllustrationPlaceholder';
7 const NotFoundError = () => {
8 return <IllustrationPlaceholder title={c('Error message').t`Not found`} url={notFoundErrorSvg} />;
11 export default NotFoundError;