@useloops/design-system
Version:
The official React based Loops design system
13 lines (10 loc) • 319 B
TypeScript
import { FunctionComponent } from 'react';
interface GridOverlayProps {
breakpoint?: boolean;
maxWidth?: boolean;
position?: 'fixed' | 'absolute';
visible?: boolean;
}
declare const GridOverlay: FunctionComponent<GridOverlayProps>;
export { GridOverlay as default };
export type { GridOverlayProps };