UNPKG

@keycloakify/keycloak-admin-ui

Version:
9 lines (8 loc) 389 B
import { FieldProps } from "../../identity-providers/component/FormGroupField"; type FieldType = "boolean" | "string"; type SwitchFieldProps = FieldProps & { fieldType?: FieldType; defaultValue?: string | boolean; }; export declare const SwitchField: ({ label, field, fieldType, isReadOnly, defaultValue, }: SwitchFieldProps) => import("react/jsx-runtime").JSX.Element; export {};