/* eslint-disable */
// @ts-nocheck
import { HelpItem } from "../../../shared/keycloak-ui-shared";
import { Label } from "../../../shared/@patternfly/react-core";
import {
CodeBranchIcon,
MapMarkerIcon,
ProcessAutomationIcon,
TaskIcon,
} from "../../../shared/@patternfly/react-icons";
import { useTranslation } from "react-i18next";
import { useAuthenticationProvider } from "./AuthenticationProviderContext";
import { FlowType } from "./FlowRow";
type FlowTitleProps = {
id?: string;
type: FlowType;
title: string;
subtitle: string;
providerId?: string;
};
const FlowIcon = ({ type }: { type: FlowType }) => {
switch (type) {
case "condition":
return