UNPKG

@skbkontur/db-viewer-ui

Version:

Database Viewer with custom configuration

8 lines (7 loc) 308 B
import { type ReactElement, type ReactNode } from "react"; export interface FormRowProps { caption?: string | ReactElement; captionWidth?: number; children?: ReactNode; } export declare function FormRow({ caption, captionWidth, children }: FormRowProps): import("react/jsx-runtime").JSX.Element;