mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
This refactoring simplify the code of the frontend and prepare the portal for receiving a user settings page and an admin page.
11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
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" />
|
|
)
|
|
} |