import iconClose from '@/assets/svg/iconClose.svg' import { ToastAnimation } from '@/constants/toastConditions' import { getImage } from '@/utilities/getImage' import { ToastBlock, ToastClose, ToastDescription, ToastIcon, ToastInfo, ToastTitle, } from './styles' import { ToastProps } from './types' export const Toast = ({ title = 'Toast title', mode = 'info', description = 'Toast description', backgroundColor, animationType = ToastAnimation.SCALE, onClose, }: ToastProps) => { const onToastClose = () => { onClose() } return ( {title} {description} ) }