@medalsocial/meda
Version:
Shared Meda UI shell and runtime package.
10 lines (9 loc) • 375 B
TypeScript
import type { ReactNode } from 'react';
export interface InspectorFieldProps {
label: string;
value: ReactNode;
/** Optional smaller hint after the value, e.g. provider info. */
hint?: ReactNode;
className?: string;
}
export declare function InspectorField({ label, value, hint, className }: InspectorFieldProps): import("react/jsx-runtime").JSX.Element;