UNPKG

@jupyterlab/git

Version:

A JupyterLab extension for version control using git

23 lines (22 loc) 488 B
/// <reference types="react" /> /** * Interface describing the properties of the warning box component. */ export interface IWarningBoxProps { /** * The warning box's header icon. */ headerIcon?: JSX.Element; /** * The warning box's header text. */ title: string; /** * The warning box's content text. */ content: string; } /** * Warning box component. */ export declare function WarningBox(props: IWarningBoxProps): JSX.Element;