Icons
Available icons for use in your application
🎨 Toast with Custom Icon
Add any React icon to make your toasts more expressive:
import { FaRocket, FaHeart, FaStar } from 'react-icons/fa';
toast({
title: 'Blast off!',
description: 'Your app is ready.',
icon: <FaRocket className="text-purple-500" />,
});