2019-11-18 23:37:36 +00:00
|
|
|
import React from "react";
|
|
|
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
|
|
|
import { faTimesCircle } from "@fortawesome/free-regular-svg-icons";
|
|
|
|
|
|
|
|
export interface Props { }
|
|
|
|
|
|
|
|
export default function (props: Props) {
|
|
|
|
return (
|
2019-11-24 20:27:59 +00:00
|
|
|
<FontAwesomeIcon icon={faTimesCircle} size="4x" color="red" className="failure-icon" />
|
2019-11-18 23:37:36 +00:00
|
|
|
)
|
|
|
|
}
|