import React from 'react'; /** * Inline SVGs. Deliberately hand-rolled rather than pulled from an icon * package — an icon dependency is most of what a toast library's bundle * budget gets spent on. */ const Svg: React.FC<{ children: React.ReactNode; label?: string }> = ({ children, label }) => ( {children} ); export const SuccessIcon = () => ( ); export const ErrorIcon = () => ( ); export const InfoIcon = () => ( ); export const WarningIcon = () => ( ); export const CloseIcon = () => ( ); /** Spinner geometry only; the rotation is a CSS animation. */ export const LoadingIcon = () => ( );