@keycloakify/keycloak-admin-ui
Version:
Repackaged Keycloak Admin UI
11 lines (10 loc) • 339 B
TypeScript
import { PropsWithChildren } from "react";
export type FieldProps = {
label: string;
field: string;
isReadOnly?: boolean;
};
export type FormGroupFieldProps = {
label: string;
};
export declare const FormGroupField: ({ label, children, }: PropsWithChildren<FormGroupFieldProps>) => import("react/jsx-runtime").JSX.Element;