/* eslint-disable */ // @ts-nocheck import { Trans, useTranslation } from "react-i18next"; import { TextControl } from "../../../shared/keycloak-ui-shared"; import { FormattedLink } from "../../components/external-link/FormattedLink"; type HelpLinkTextInputProps = { fieldName: string; url: string; }; export const HelpLinkTextInput = ({ fieldName, url, }: HelpLinkTextInputProps) => { const { t } = useTranslation(); const name = fieldName.substring(fieldName.indexOf(".") + 1); return ( , }} /> } /> ); };