UNPKG

@jupyterlab/ui-components

Version:

JupyterLab - UI components written in React

10 lines (7 loc) 334 B
// Copyright (c) Jupyter Development Team. // Distributed under the terms of the Modified BSD License. export const DEFAULT_STYLE_CLASS = 'jp-DefaultStyle'; export interface IElementRefProps<E extends HTMLElement> { /** Ref handler to access the instance of the internal HTML element. */ elementRef?: (ref: E | null) => void; }