UNPKG

@kinvolk/headlamp-plugin

Version:

The needed infrastructure for building Headlamp plugins.

8 lines (7 loc) 241 B
export interface ShowHideLabelProps { children: string; show?: boolean; labelId?: string; maxChars?: number; } export default function ShowHideLabel(props: ShowHideLabelProps): import("react/jsx-runtime").JSX.Element | null;