@ui5/webcomponents-react
Version:
React Wrapper for UI5 Web Components and additional components
9 lines (8 loc) • 351 B
TypeScript
import type { CommonProps } from '../../types/index.js';
export interface SplitterPropTypes extends CommonProps {
height: string | number;
width: string | number;
vertical: boolean;
}
declare const Splitter: import("react").ForwardRefExoticComponent<SplitterPropTypes & import("react").RefAttributes<HTMLDivElement>>;
export { Splitter };