UNPKG

@geist-ui/react

Version:

Modern and minimalist React UI library.

29 lines (25 loc) 1.81 kB
import _extends from "@babel/runtime/helpers/esm/extends"; import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties"; var _excluded = ["children"]; import _JSXStyle from "../styled-jsx.es.js"; import React from 'react'; import useScaleable, { withPureProps, withScaleable } from '../use-scaleable'; var defaultProps = { className: '' }; var PageFooterComponent = function PageFooterComponent(_ref) { var children = _ref.children, props = _objectWithoutProperties(_ref, _excluded); var _useScaleable = useScaleable(), SCALES = _useScaleable.SCALES; return /*#__PURE__*/React.createElement("footer", _extends({}, withPureProps(props), { className: _JSXStyle.dynamic([["3447440073", [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, 'auto'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0)]]]) }), children, /*#__PURE__*/React.createElement(_JSXStyle, { id: "3447440073", dynamic: [SCALES.font(1), SCALES.width(1, '100%'), SCALES.height(1, 'auto'), SCALES.pt(0), SCALES.pr(0), SCALES.pb(0), SCALES.pl(0), SCALES.mt(0), SCALES.mr(0), SCALES.mb(0), SCALES.ml(0)] }, "footer.__jsx-style-dynamic-selector{position:absolute;bottom:0;font-size:".concat(SCALES.font(1), ";width:").concat(SCALES.width(1, '100%'), ";height:").concat(SCALES.height(1, 'auto'), ";padding:").concat(SCALES.pt(0), " ").concat(SCALES.pr(0), " ").concat(SCALES.pb(0), " ").concat(SCALES.pl(0), ";margin:").concat(SCALES.mt(0), " ").concat(SCALES.mr(0), " ").concat(SCALES.mb(0), " ").concat(SCALES.ml(0), ";}"))); }; PageFooterComponent.defaultProps = defaultProps; PageFooterComponent.displayName = 'GeistPageFooter'; var PageFooter = withScaleable(PageFooterComponent); export default PageFooter;