mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
11 lines
352 B
TypeScript
11 lines
352 B
TypeScript
|
import React from "react";
|
||
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
|
||
|
import { faInfoCircle } from "@fortawesome/free-solid-svg-icons";
|
||
|
|
||
|
export interface Props { }
|
||
|
|
||
|
export default function (props: Props) {
|
||
|
return (
|
||
|
<FontAwesomeIcon icon={faInfoCircle} size="4x" color="#5858ff" className="information-icon" />
|
||
|
)
|
||
|
}
|