UNPKG

react-raster

Version:

Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.

16 lines (15 loc) 383 B
import React from "react"; interface Props { cssMode: "grid" | "flex"; className: string; hasChildBoxes: boolean; gutterX: string[]; gutterY: string[]; alignX: string[]; alignY: string[]; media: any[]; padding?: string[] | number[]; children: React.ReactNode; } declare const Resetter: React.FC<Props>; export default Resetter;