@shopify/polaris
Version:
Shopify’s admin product component library
12 lines • 361 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