import { Split } from '@hanzo/ui/product'
No examples yet.
export type SplitProps = {left: ReactNoderight: ReactNode/** Where the handle starts, as a percentage of the width. */defaultSplit?: number/** How narrow the left pane may get, as a percentage. */min?: number/** How wide the left pane may get, as a percentage. */max?: numberonSplitChange?: (split: number) => void}