UNPKG

qa-tools

Version:

QA tools is a package to provide developers with tools to assure the quality of their layouts. Simple install with yarn or NPM.

10 lines (9 loc) 238 B
interface GridProps { maxWidth?: string; gridColumns?: string; gridGap?: string; padding?: string; color?: string; } declare const gridOverlay: (props?: GridProps | undefined) => void; export { gridOverlay };