UNPKG

grepsr-ui-elements

Version:

31 lines (30 loc) 718 B
/// <reference types="react" /> import PropTypes from "prop-types"; interface GridProps { className?: string; columns?: any; columnSpacing?: number; container?: boolean; direction?: "column-reverse" | "column" | "row-reverse" | "row"; item?: boolean; lg?: number; xs?: number; xl?: number; md?: number; sm?: number; spacing?: number; rowSpacing?: number; wrap: "nowrap" | "wrap-reverse" | "wrap"; [restProps: string]: any; } export { GridProps }; declare const GrepsrGrid: { (props: GridProps): JSX.Element; defaultProps: { wrap: string; }; propTypes: { wrap: PropTypes.Validator<string>; }; }; export default GrepsrGrid;