react-raster
Version:
Advanced grid- and styling-system which is highly customizable and ready for server-side-rendering.
12 lines (11 loc) • 339 B
TypeScript
import React from "react";
interface Props {
className: string;
attrs?: any;
tag?: string;
children: React.ReactNode;
component?: React.ReactElement;
cssMode: "grid" | "flex";
}
declare const Container: React.ForwardRefExoticComponent<Props & React.RefAttributes<HTMLElement>>;
export default Container;