mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
5f8726fe87
A message is now displayed to the user when he first sign in in Authelia letting him know that a device must be enrolled. Also introduce a message letting him know when he is already authenticated.
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" />
|
|
)
|
|
} |