/* eslint-disable */ // @ts-nocheck import { Title, TitleProps } from "../../@patternfly/react-core"; import style from "./form-title.module.css"; type FormTitleProps = Omit & { id?: string; title: string; headingLevel?: "h1" | "h2" | "h3" | "h4" | "h5" | "h6"; }; export const FormTitle = ({ id, title, headingLevel = "h1", size = "xl", ...rest }: FormTitleProps) => ( {title} );