@keycloakify/keycloak-account-ui
Version:
<p align="center"> <img src="https://github.com/user-attachments/assets/e31c4910-7205-441c-9a35-e134b806b3a8"> </p> <p align="center"> <i>Repackaged Keycloak Account UI</i> <br> <br> <a href="https://github.com/keycloakify/keycloak-a
9 lines (8 loc) • 359 B
TypeScript
import { TitleProps } from "@patternfly/react-core";
type FormTitleProps = Omit<TitleProps, "headingLevel"> & {
id?: string;
title: string;
headingLevel?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
};
export declare const FormTitle: ({ id, title, headingLevel, size, ...rest }: FormTitleProps) => import("react/jsx-runtime").JSX.Element;
export {};