@shopify/polaris
Version:
Shopify’s admin product component library
13 lines (12 loc) • 374 B
TypeScript
import React from 'react';
import './GridOverlay.css';
declare type Layer = 'above' | 'below';
interface Props {
inFrame?: boolean;
maxWidth?: string;
layer?: Layer;
children?: React.ReactNode;
}
export declare function GridOverlay({ inFrame, maxWidth, layer, children }: Props): JSX.Element;
export {};
//# sourceMappingURL=GridOverlay.d.ts.map