import {FormGroup} from "@blueprintjs/core"; import {CSSProperties, PropsWithChildren, ReactNode} from "react"; export function FormGroupComponent(props: PropsWithChildren<{ label: string|ReactNode, flexBasis?: string, disabled?: boolean, style?: CSSProperties }>) { return ( {props.label})} inline={true} disabled={props.disabled} // labelInfo="(required)" > {props.children} ) }