mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 09:45:04 +01:00
16 lines
472 B
JavaScript
16 lines
472 B
JavaScript
import Exclamation from 'assets/exclamation-triangle.svg';
|
|
import { FormattedMessage } from 'react-intl';
|
|
import styles from './ErrorMessage.module.css';
|
|
import { Icon } from 'react-basics';
|
|
|
|
export default function ErrorMessage() {
|
|
return (
|
|
<div className={styles.error}>
|
|
<Icon className={styles.icon} size="large">
|
|
<Exclamation />
|
|
</Icon>
|
|
<FormattedMessage id="message.failure" defaultMessage="Something went wrong." />
|
|
</div>
|
|
);
|
|
}
|