UNPKG

grepsr-ui-elements

Version:

29 lines (28 loc) 807 B
import PropTypes from "prop-types"; import { ReactNode } from "react"; interface ContainerProps { sx?: Array<Function | object | boolean> | Function | object; children?: ReactNode; maxWidth?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; fixed?: boolean; disableGutters?: boolean; } export { ContainerProps }; declare const GrepsrContainer: { (props: ContainerProps): JSX.Element; defaultProps: { fixed: boolean; disableGutters: boolean; maxWidth: string; sx: { margin: string; }; }; propTypes: { fixed: PropTypes.Requireable<boolean>; disableGutters: PropTypes.Requireable<boolean>; sx: PropTypes.Requireable<any>; maxWidth: PropTypes.Requireable<string>; }; }; export default GrepsrContainer;