+
Message content
);
diff --git a/src/components/__snapshots__/Message.test.js.snap b/src/components/__snapshots__/Message.test.js.snap
index a711c68..aeeb785 100644
--- a/src/components/__snapshots__/Message.test.js.snap
+++ b/src/components/__snapshots__/Message.test.js.snap
@@ -18,9 +18,7 @@ exports[`Message rendering with icon 1`] = `
className="message"
>
-
+ Sample icon SVG
Testing
diff --git a/src/pages/404.js b/src/pages/404.js
index 8ca7bf7..3fa24fd 100644
--- a/src/pages/404.js
+++ b/src/pages/404.js
@@ -4,10 +4,10 @@ import ReactDOM from 'react-dom';
import '../style.css';
import Message from '../components/Message';
-import errorIcon from 'feather-icons/dist/icons/alert-octagon.svg';
+import ErrorIcon from 'feather-icons/dist/icons/alert-octagon.svg';
ReactDOM.render(
-
+
The page you have requested could not be found
,
document.getElementById('root'));
diff --git a/src/style.css b/src/style.css
index 4dceb0e..a21781d 100644
--- a/src/style.css
+++ b/src/style.css
@@ -59,7 +59,7 @@ body {
text-decoration: underline;
}
-#main li img {
+#main li svg {
display: inline-block;
width: 1em;
height: 1em;
@@ -115,7 +115,7 @@ li {
margin: var(--spacing-margin) 0;
}
-.message h2 img {
+.message h2 svg {
margin-right: 0.5rem;
height: 3rem;
width: 3rem;
diff --git a/src/template.js b/src/template.js
index 299e76c..eab3091 100644
--- a/src/template.js
+++ b/src/template.js
@@ -3,8 +3,8 @@ import React from 'react';
import ReactDOMServer from 'react-dom/server';
import Message from './components/Message';
-import alertIcon from 'feather-icons/dist/icons/alert-octagon.svg';
-import githubIcon from 'feather-icons/dist/icons/github.svg';
+import AlertIcon from 'feather-icons/dist/icons/alert-octagon.svg';
+import GithubIcon from 'feather-icons/dist/icons/github.svg';
module.exports = '' + ReactDOMServer.renderToString(
@@ -25,13 +25,13 @@ module.exports = '' + ReactDOMServer.renderToString(