grommet
Version:
focus on the essential experience
29 lines (27 loc) • 1.12 kB
JavaScript
;
exports.__esModule = true;
exports.StyledWorldMap = void 0;
var _styledComponents = _interopRequireDefault(require("styled-components"));
var _utils = require("../../utils");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
var fillStyle = function fillStyle(fillProp) {
if (fillProp === 'horizontal') {
return "\n width: 100%;\n height: unset;\n ";
}
if (fillProp === 'vertical') {
return "\n width: unset;\n height: 100%;\n ";
}
if (fillProp) {
return "\n width: 100%;\n height: 100%;\n ";
}
return '';
};
// undefined fillProp has width for backwards compatibility
var StyledWorldMap = exports.StyledWorldMap = _styledComponents["default"].svg.withConfig(_utils.styledComponentsConfig).withConfig({
displayName: "StyledWorldMap",
componentId: "sc-had4c3-0"
})(["", " ", " ", ";"], _utils.genericStyles, function (props) {
return props.fillProp !== undefined ? fillStyle(props.fillProp) : 'width: 100%;';
}, function (props) {
return props.theme.worldMap && props.theme.worldMap.extend;
});