ultra-icon
Version:
63 lines (56 loc) • 2.82 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
var React = require('react');
var PropTypes = require('prop-types');
var withWrapper = require('../utils/withWrapper.js');
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
var PropTypes__default = /*#__PURE__*/_interopDefaultLegacy(PropTypes);
var __defProp = Object.defineProperty;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
var __objRest = (source, exclude) => {
var target = {};
for (var prop in source)
if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
target[prop] = source[prop];
if (source != null && __getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(source)) {
if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
target[prop] = source[prop];
}
return target;
};
const Dashboard2LineIconComponent = (p) => {
const _a = p, { size } = _a, props = __objRest(_a, ["size"]);
return /* @__PURE__ */ React__default["default"].createElement("svg", __spreadValues({
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
width: size,
height: size,
fill: "currentColor"
}, props), /* @__PURE__ */ React__default["default"].createElement("path", {
fill: "none",
d: "M0 0h24v24H0z"
}), /* @__PURE__ */ React__default["default"].createElement("path", {
d: "M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16zm0 1c1.018 0 1.985.217 2.858.608L13.295 7.17a5 5 0 0 0-4.831 8.366L7.05 16.95l-.156-.161A7 7 0 0 1 12 5zm6.392 4.143c.39.872.608 1.84.608 2.857a6.982 6.982 0 0 1-2.05 4.95l-1.414-1.414a4.992 4.992 0 0 0 1.294-4.831l1.562-1.562zm-2.15-2.8 1.415 1.414-3.724 3.726A2.002 2.002 0 0 1 12 14a2 2 0 1 1 .517-3.933l3.726-3.724z"
}));
};
Dashboard2LineIconComponent.propTypes = {
size: PropTypes__default["default"].oneOfType([PropTypes__default["default"].string, PropTypes__default["default"].number])
};
const Dashboard2LineIcon = withWrapper["default"](Dashboard2LineIconComponent);
exports["default"] = Dashboard2LineIcon;