@dndbuilder.com/react
Version:
Drag and drop builder for React
19 lines (18 loc) • 432 B
TypeScript
import { ComponentType } from 'react';
export declare enum Breakpoint {
MOBILE = "mobile",
TABLET = "tablet",
DESKTOP = "desktop"
}
export type ResponsiveValue<T = string> = {
[key in Breakpoint]?: T;
};
export type BreakpointConfig = {
key: Breakpoint;
label: string;
icon: ComponentType;
previewWidth: number;
maxWidth: number;
minWidth: number;
};
//# sourceMappingURL=responsive.d.ts.map