import React from 'react'; import FavoriteIcon from '../../icons/FavoriteIcon'; import Typography from '../Typography'; import { Wrapper } from './styles'; type FavoriteToastProps = { message: string; visable: boolean; size?: 'default' | 'small'; parentWidth?: number; }; const FavoriteToast = ({ message, visable, size, parentWidth, }: FavoriteToastProps) => { return ( {message} ); }; export default FavoriteToast;