diff --git a/src/components/Snackbar.jsx b/src/components/Snackbar.jsx index 1b84c48..c007395 100644 --- a/src/components/Snackbar.jsx +++ b/src/components/Snackbar.jsx @@ -1,4 +1,5 @@ import React, { useEffect } from 'react'; +import SvgIcon from './SvgIcon'; const Snackbar = ({ type = 'primary', message, duration = 3000, onClose }) => { if (!message) return null; @@ -21,32 +22,11 @@ const Snackbar = ({ type = 'primary', message, duration = 3000, onClose }) => { return ( <> - - - - - - - - - - - -
- - - +
{message}
-