UNPKG

@keycloakify/keycloak-admin-ui

Version:
11 lines (10 loc) 339 B
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;