/* eslint-disable */ // @ts-nocheck import { TextControl } from "../../../shared/keycloak-ui-shared"; import { useTranslation } from "react-i18next"; import type { ComponentProps } from "./components"; export const StringComponent = ({ name, label, helpText, convertToName, ...props }: ComponentProps) => { const { t } = useTranslation(); return ( ); };