import { ArrowLeftOutlined } from "@ant-design/icons"; // eslint-disable-next-line @nx/enforce-module-boundaries import { Button } from "@imphnen-frontend-service/ui/atoms"; import { FC, ReactElement } from "react"; function AuthBanner({text, href}: {text: string, href: string}){ return (
Banner
Logo
) } export const LoginBanner: FC = (): ReactElement => { return AuthBanner({text: "Back To Homepage", href: "/"}) } export const RegisterResetBanner: FC = (): ReactElement => { return AuthBanner({text: "Back To Login", href: "/auth/login"}) }