react-raster
Version:
Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.
25 lines (24 loc) • 645 B
TypeScript
import React from "react";
interface Props {
attrs?: object;
colspan: number[];
className: string;
gutterX: string[];
gutterY: string[];
alignX: string[];
alignY: string[];
media: any[];
left: string[];
right: string[];
top: string[];
bottom: string[];
position: string[];
tag: string;
isControl: boolean;
children: React.ReactNode;
cssMode: "grid" | "flex";
customStyles: string[];
component?: React.ReactElement;
}
declare const StyledGrid: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default StyledGrid;