1
0
mirror of https://github.com/0rangebananaspy/authelia.git synced 2024-09-14 22:47:21 +07:00
authelia/web/src/components/SuccessIcon.tsx
Amir Zarrinkafsh 689fd7cb95
[CI] Add linting option for frontend and enforce styling ()
We now extend the default Eslint configuration and enforce styling with prettier for all of our frontend code.
2021-01-02 21:58:24 +11:00

11 lines
332 B
TypeScript

import React from "react";
import { faCheckCircle } from "@fortawesome/free-regular-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
const SuccessIcon = function () {
return <FontAwesomeIcon icon={faCheckCircle} size="4x" color="green" className="success-icon" />;
};
export default SuccessIcon;