diff --git a/src/components/Icons/NotFoundIcon/NotFoundIcon.tsx b/src/components/Icons/NotFoundIcon/NotFoundIcon.tsx new file mode 100644 index 0000000..c539230 --- /dev/null +++ b/src/components/Icons/NotFoundIcon/NotFoundIcon.tsx @@ -0,0 +1,31 @@ +import React from "react"; + +export interface props { + size: number; + color: string; +} +export default function NotFoundIcon(props: props) { + return ( +
+ + + + + + + + +
+ ); +} diff --git a/src/routes/Error/Error.tsx b/src/routes/Error/Error.tsx index c59095b..3b6b556 100644 --- a/src/routes/Error/Error.tsx +++ b/src/routes/Error/Error.tsx @@ -1,13 +1,13 @@ import React from "react"; import AppLogo from "../../Components/Icons/AppLogo/AppLogo"; import styles from "../../styles"; +import NotFoundIcon from "../../Components/Icons/NotFoundIcon/NotFoundIcon"; export default function Error() { return (
- -

Ivy - Inventory Manager

-

Error 404: Page Not Found

+ +

Could not find the requested page

); }