2019-11-18 23:37:36 +00:00
|
|
|
import React from "react";
|
2021-01-02 10:58:24 +00:00
|
|
|
|
2019-11-18 23:37:36 +00:00
|
|
|
import { faTimesCircle } from "@fortawesome/free-regular-svg-icons";
|
2021-01-02 10:58:24 +00:00
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
2019-11-18 23:37:36 +00:00
|
|
|
|
2021-01-02 10:58:24 +00:00
|
|
|
export interface Props {}
|
2019-11-18 23:37:36 +00:00
|
|
|
|
2020-11-07 02:06:18 +00:00
|
|
|
const FailureIcon = function (props: Props) {
|
2021-01-02 10:58:24 +00:00
|
|
|
return <FontAwesomeIcon icon={faTimesCircle} size="4x" color="red" className="failure-icon" />;
|
|
|
|
};
|
2020-11-07 02:06:18 +00:00
|
|
|
|
2021-01-02 10:58:24 +00:00
|
|
|
export default FailureIcon;
|