@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
35 lines (34 loc) • 2.88 kB
JavaScript
;
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
var _typeof = require("@babel/runtime/helpers/typeof");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DatabaseSwitchDimensions = exports.DatabaseSwitch = void 0;
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
var React = _interopRequireWildcard(require("react"));
var _styledIcon = require("@styled-icons/styled-icon");
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
var DatabaseSwitch = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(_styledIcon.StyledIconBase, (0, _extends2.default)({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 20 20"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M11.85 18.85a.5.5 0 0 1-.7 0l-2-2a.5.5 0 0 1 0-.7l2-2a.5.5 0 0 1 .81.16.5.5 0 0 1-.1.54L10.7 16h5.58l-1.14-1.15a.5.5 0 0 1 .16-.81.5.5 0 0 1 .54.1l2 2a.5.5 0 0 1 0 .71l-2 2a.5.5 0 0 1-.81-.16.5.5 0 0 1 .1-.54L16.3 17h-5.58l1.14 1.15a.5.5 0 0 1 0 .7ZM10 8c3.31 0 6-1.34 6-3s-2.69-3-6-3-6 1.34-6 3 2.69 3 6 3Zm-1.56 9.56a1.5 1.5 0 0 1 0-2.12l2-2a1.5 1.5 0 0 1 2.12 0 1.5 1.5 0 0 1 .35 1.56h1.18A1.5 1.5 0 0 1 16 13.1V7.11a4.93 4.93 0 0 1-1.31.9c-.33.16-.66.3-1.01.42-1.19.38-2.43.57-3.68.56-1.25.01-2.5-.18-3.68-.57a8.15 8.15 0 0 1-1.7-.81 4.93 4.93 0 0 1-.62-.5V15c0 1.45 2.07 2.66 4.81 2.93l-.37-.37Z"
}));
});
exports.DatabaseSwitch = DatabaseSwitch;
DatabaseSwitch.displayName = 'DatabaseSwitch';
var DatabaseSwitchDimensions = {
height: 20,
width: 20
};
exports.DatabaseSwitchDimensions = DatabaseSwitchDimensions;