UNPKG

eldav1d-marvel-ui

Version:

UI library for (and from) Playing with Marvel API

13 lines 474 B
/// <reference types="react" /> export interface IFormGroupContainerProps { title: string; /** * @property {string} * Additional class name for <fieldset> */ classNameFieldset?: string; children: React.ReactNode; } declare const FormGroupContainer: ({ classNameFieldset, title, children }: IFormGroupContainerProps) => import("react/jsx-runtime").JSX.Element; export default FormGroupContainer; //# sourceMappingURL=FormGroupContainer.d.ts.map