authelia/web/src/components/FailureIcon.tsx

11 lines
348 B
TypeScript
Raw Normal View History

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 (
<FontAwesomeIcon icon={faTimesCircle} size="4x" color="red" className="failure-icon" />
)
}