@catho/quantum
Version:
Catho react components
57 lines (56 loc) • 3.97 kB
JavaScript
;
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _propTypes = _interopRequireDefault(require("prop-types"));
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _theme = require("../../shared/theme");
var _jsxRuntime = require("react/jsx-runtime");
var _excluded = ["rounded", "theme"];
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], t.indexOf(o) >= 0 || {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (e.indexOf(n) >= 0) continue; t[n] = r[n]; } return t; }
var Image = _styledComponents["default"].img.attrs({
loading: 'lazy'
}).withConfig({
displayName: "Thumbnail__Image",
componentId: "sc-18453ay-0"
})(["border-radius:", ";display:inline-block;height:72px;width:72px;", ""], function (_ref) {
var rounded = _ref.rounded;
return rounded ? '50%' : '4px';
}, function (_ref2) {
var rounded = _ref2.rounded,
neutral300 = _ref2.theme.colors.neutral[300];
return "\n background-color: ".concat(neutral300, ";\n border-radius: ").concat(rounded ? '50%' : '4px', ";\n ");
});
var Thumbnail = function Thumbnail(_ref3) {
var _ref3$rounded = _ref3.rounded,
rounded = _ref3$rounded === void 0 ? false : _ref3$rounded,
_ref3$theme = _ref3.theme,
theme = _ref3$theme === void 0 ? {
colors: _theme.colors
} : _ref3$theme,
props = _objectWithoutProperties(_ref3, _excluded);
return /*#__PURE__*/(0, _jsxRuntime.jsx)(Image, _objectSpread({
rounded: rounded,
theme: theme
}, props));
};
Thumbnail.displayName = 'Card.Thumbnail';
Thumbnail.propTypes = {
src: _propTypes["default"].string.isRequired,
alt: _propTypes["default"].string.isRequired,
/** Display a rounded Thumbnail. */
rounded: _propTypes["default"].bool,
theme: _propTypes["default"].shape({
colors: _propTypes["default"].object
})
};
var _default = exports["default"] = Thumbnail;