@geoffcox/react-splitter
Version:
A splitter for React components that leverages CSS grid templates for simple and consistent resizing.
13 lines (12 loc) • 373 B
TypeScript
import { RenderSplitterProps } from './RenderSplitterProps';
import './defaultSplitter.css';
type Props = RenderSplitterProps & {
color?: string;
hoverColor?: string;
dragColor?: string;
};
/**
* The default splitter which provides a thin line within a larger mouse hit area.
*/
export declare const DefaultSplitter: (props: Props) => JSX.Element;
export {};