react-raster
Version:
Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.
16 lines (15 loc) • 373 B
TypeScript
import React from "react";
interface Props {
cssMode: "grid" | "flex";
className: string;
alignX: string[];
alignY: string[];
customStyles: string[];
media: any[];
children: React.ReactElement;
hasChildBoxes: boolean;
innerHTML?: string;
isGrid?: boolean;
}
declare const Inner: React.FC<Props>;
export default Inner;