diff --git a/frontend/src/app/components/icons/circledCheck.jsx b/frontend/src/app/components/icons/circledCheck.jsx new file mode 100644 index 0000000..ea4ed76 --- /dev/null +++ b/frontend/src/app/components/icons/circledCheck.jsx @@ -0,0 +1,24 @@ +import React from "react"; + +const CircledChececkIcon = (props) => { + return ( + + ); +}; + +export default CircledChececkIcon; diff --git a/frontend/src/app/components/icons/toastClose.jsx b/frontend/src/app/components/icons/toastClose.jsx new file mode 100644 index 0000000..e455046 --- /dev/null +++ b/frontend/src/app/components/icons/toastClose.jsx @@ -0,0 +1,24 @@ +import React from "react"; + +const ToastCloseIcon = (props) => { + return ( + + ); +}; + +export default ToastCloseIcon; diff --git a/frontend/src/app/components/toast/success/successToast.jsx b/frontend/src/app/components/toast/success/successToast.jsx index 3899184..2b21b36 100644 --- a/frontend/src/app/components/toast/success/successToast.jsx +++ b/frontend/src/app/components/toast/success/successToast.jsx @@ -1,43 +1,17 @@ import React from "react"; import styles from "./styles.module.css"; +import CircledChececkIcon from "../../icons/circledCheck"; +import ToastCloseIcon from "../../icons/toastClose"; const SuccessToast = ({ message }) => { return (
{message}