UNPKG

tailwind-grid-layout

Version:

A modern, Tailwind CSS-based grid layout system for React. A lightweight alternative to react-grid-layout with full feature parity.

8 lines 313 B
import { ComponentType } from 'react'; export interface WidthProviderProps { measureBeforeMount?: boolean; } export declare function WidthProvider<P extends { width?: number; }>(Component: ComponentType<P>): ComponentType<Omit<P, 'width'> & WidthProviderProps>; //# sourceMappingURL=WidthProvider.d.ts.map