UNPKG

@gfazioli/mantine-split-pane

Version:

A Mantine 9 React component for resizable split pane layouts with 7 resizer variants, context-based prop inheritance, responsive orientation, and dynamic pane generation.

4 lines (3 loc) 212 B
import type { MantineBreakpoint } from '@mantine/core'; /** A value that can be static or vary by Mantine breakpoint */ export type ResponsiveValue<T> = T | Partial<Record<MantineBreakpoint | (string & {}), T>>;