import { MdCheckCircle, MdDownload, MdError, MdOutlineMotionPhotosPaused, MdOutlineUpload, } from "react-icons/md"; type Props = { className?: string; finished: boolean; live: boolean; error: boolean; }; export const StatusIcon = ({ className, finished, live, error }: Props) => { const isSeeding = finished && live; if (error) return ; if (isSeeding) return ; if (finished) return ; if (live) return ; else return ; };