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 { faCheckCircle } 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
|
|
|
|
2020-11-07 02:06:18 +00:00
|
|
|
const SuccessIcon = function () {
|
2021-01-02 10:58:24 +00:00
|
|
|
return <FontAwesomeIcon icon={faCheckCircle} size="4x" color="green" className="success-icon" />;
|
|
|
|
};
|
2020-11-07 02:06:18 +00:00
|
|
|
|
2021-01-02 10:58:24 +00:00
|
|
|
export default SuccessIcon;
|