@geoffcox/react-splitter
Version:
A splitter for React components that leverages CSS grid templates for simple and consistent resizing.
18 lines (17 loc) • 423 B
TypeScript
/**
* Props for the renderSplitter callback in Split
*/
export type RenderSplitterProps = {
/**
* The measured size of the splitter in pixels.
*/
pixelSize: number;
/**
* True if the splitter is horizontal (i.e. top/bottom); false otherwise.
*/
horizontal: boolean;
/**
* True if the user is currently dragging the splitter; false otherwise.
*/
dragging: boolean;
};