\") : invariant(false) : void 0;\n var currentLocation = locationProp || context.location;\n var toLocation = normalizeToLocation(resolveToLocation(to, currentLocation), currentLocation);\n var path = toLocation.pathname; // Regex taken from: https://github.com/pillarjs/path-to-regexp/blob/master/index.js#L202\n\n var escapedPath = path && path.replace(/([.+*?=^!:${}()[\\]|/\\\\])/g, \"\\\\$1\");\n var match = escapedPath ? matchPath(currentLocation.pathname, {\n path: escapedPath,\n exact: exact,\n sensitive: sensitive,\n strict: strict\n }) : null;\n var isActive = !!(isActiveProp ? isActiveProp(match, currentLocation) : match);\n var className = typeof classNameProp === \"function\" ? classNameProp(isActive) : classNameProp;\n var style = typeof styleProp === \"function\" ? styleProp(isActive) : styleProp;\n if (isActive) {\n className = joinClassnames(className, activeClassName);\n style = _extends({}, style, activeStyle);\n }\n var props = _extends({\n \"aria-current\": isActive && ariaCurrent || null,\n className: className,\n style: style,\n to: toLocation\n }, rest); // React 15 compat\n\n if (forwardRefShim$1 !== forwardRef$1) {\n props.ref = forwardedRef || innerRef;\n } else {\n props.innerRef = innerRef;\n }\n return /*#__PURE__*/React.createElement(Link, props);\n });\n});\nif (process.env.NODE_ENV !== \"production\") {\n NavLink.displayName = \"NavLink\";\n var ariaCurrentType = PropTypes.oneOf([\"page\", \"step\", \"location\", \"date\", \"time\", \"true\", \"false\"]);\n NavLink.propTypes = _extends({}, Link.propTypes, {\n \"aria-current\": ariaCurrentType,\n activeClassName: PropTypes.string,\n activeStyle: PropTypes.object,\n className: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),\n exact: PropTypes.bool,\n isActive: PropTypes.func,\n location: PropTypes.object,\n sensitive: PropTypes.bool,\n strict: PropTypes.bool,\n style: PropTypes.oneOfType([PropTypes.object, PropTypes.func])\n });\n}\nexport { BrowserRouter, HashRouter, Link, NavLink };","export default function safeInvoke(fn) {\n if (typeof fn === 'function') {\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n return fn.apply(void 0, args);\n }\n}","import arrayWithHoles from \"./arrayWithHoles.js\";\nimport iterableToArrayLimit from \"./iterableToArrayLimit.js\";\nimport unsupportedIterableToArray from \"./unsupportedIterableToArray.js\";\nimport nonIterableRest from \"./nonIterableRest.js\";\nfunction _slicedToArray(r, e) {\n return arrayWithHoles(r) || iterableToArrayLimit(r, e) || unsupportedIterableToArray(r, e) || nonIterableRest();\n}\nexport { _slicedToArray as default };","function _arrayWithHoles(r) {\n if (Array.isArray(r)) return r;\n}\nexport { _arrayWithHoles as default };","function _iterableToArrayLimit(r, l) {\n var t = null == r ? null : \"undefined\" != typeof Symbol && r[Symbol.iterator] || r[\"@@iterator\"];\n if (null != t) {\n var e,\n n,\n i,\n u,\n a = [],\n f = !0,\n o = !1;\n try {\n if (i = (t = t.call(r)).next, 0 === l) {\n if (Object(t) !== t) return;\n f = !1;\n } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0);\n } catch (r) {\n o = !0, n = r;\n } finally {\n try {\n if (!f && null != t[\"return\"] && (u = t[\"return\"](), Object(u) !== u)) return;\n } finally {\n if (o) throw n;\n }\n }\n return a;\n }\n}\nexport { _iterableToArrayLimit as default };","function _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\nexport { _nonIterableRest as default };","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _slicedToArray from \"@babel/runtime/helpers/esm/slicedToArray\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport _classCallCheck from \"@babel/runtime/helpers/esm/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/esm/createClass\";\nimport _possibleConstructorReturn from \"@babel/runtime/helpers/esm/possibleConstructorReturn\";\nimport _getPrototypeOf from \"@babel/runtime/helpers/esm/getPrototypeOf\";\nimport _assertThisInitialized from \"@babel/runtime/helpers/esm/assertThisInitialized\";\nimport _inherits from \"@babel/runtime/helpers/esm/inherits\";\nimport _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport cx from 'classnames';\nimport { css as glamorCss } from 'glamor';\nimport React, { PureComponent } from 'react';\nimport PropTypes from 'prop-types';\nimport Box from 'ui-box';\nimport { withTheme } from '../../theme';\nvar StringAndBoolPropType = PropTypes.oneOfType([PropTypes.string, PropTypes.bool]);\nvar Pane = /*#__PURE__*/\nfunction (_PureComponent) {\n _inherits(Pane, _PureComponent);\n function Pane() {\n var _getPrototypeOf2;\n var _this;\n _classCallCheck(this, Pane);\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(Pane)).call.apply(_getPrototypeOf2, [this].concat(args)));\n _defineProperty(_assertThisInitialized(_this), \"getHoverElevationStyle\", function (hoverElevation, css) {\n var theme = _this.props.theme;\n if (!Number.isInteger(hoverElevation)) return {};\n return {\n transitionDuration: '150ms',\n transitionProperty: 'box-shadow, transform',\n transitionTimingFunction: \"cubic-bezier(0.0, 0.0, 0.2, 1)\",\n ':hover': _objectSpread({}, css[':hover'] || {}, {\n transform: 'translateY(-2px)',\n boxShadow: theme.getElevation(hoverElevation)\n })\n };\n });\n _defineProperty(_assertThisInitialized(_this), \"getActiveElevationStyle\", function (activeElevation, css) {\n var theme = _this.props.theme;\n if (!Number.isInteger(activeElevation)) return {};\n return {\n ':active': _objectSpread({}, css[':active'] || {}, {\n transform: 'translateY(-1px)',\n boxShadow: theme.getElevation(activeElevation)\n })\n };\n });\n _defineProperty(_assertThisInitialized(_this), \"getBorderSideProperty\", function (_ref) {\n var borderSideProperty = _ref.borderSideProperty,\n border = _ref.border;\n var theme = _this.props.theme;\n if (Object.prototype.hasOwnProperty.call(theme.colors.border, borderSideProperty)) {\n return \"1px solid \".concat(theme.colors.border[borderSideProperty]);\n }\n if (borderSideProperty === true) {\n return \"1px solid \".concat(theme.colors.border[\"default\"]);\n }\n if (borderSideProperty === false) {\n return null;\n }\n if (Object.prototype.hasOwnProperty.call(theme.colors.border, border)) {\n return \"1px solid \".concat(theme.colors.border[border]);\n }\n if (border === true) {\n return \"1px solid \".concat(theme.colors.border[\"default\"]);\n }\n return borderSideProperty;\n });\n return _this;\n }\n _createClass(Pane, [{\n key: \"render\",\n value: function render() {\n var _this2 = this;\n var _this$props = this.props,\n theme = _this$props.theme,\n background = _this$props.background,\n elevation = _this$props.elevation,\n hoverElevation = _this$props.hoverElevation,\n activeElevation = _this$props.activeElevation,\n border = _this$props.border,\n borderTop = _this$props.borderTop,\n borderRight = _this$props.borderRight,\n borderBottom = _this$props.borderBottom,\n borderLeft = _this$props.borderLeft,\n _this$props$css = _this$props.css,\n css = _this$props$css === void 0 ? {} : _this$props$css,\n props = _objectWithoutProperties(_this$props, [\"theme\", \"background\", \"elevation\", \"hoverElevation\", \"activeElevation\", \"border\", \"borderTop\", \"borderRight\", \"borderBottom\", \"borderLeft\", \"css\"]);\n var elevationStyle = theme.getElevation(elevation);\n var hoverElevationStyle = this.getHoverElevationStyle(hoverElevation, css);\n var activeElevationStyle = this.getActiveElevationStyle(activeElevation, css);\n var _map = [borderTop, borderRight, borderBottom, borderLeft].map(function (borderSideProperty) {\n return _this2.getBorderSideProperty({\n borderSideProperty: borderSideProperty,\n border: border\n });\n }),\n _map2 = _slicedToArray(_map, 4),\n _borderTop = _map2[0],\n _borderRight = _map2[1],\n _borderBottom = _map2[2],\n _borderLeft = _map2[3];\n var className = cx(props.className, glamorCss(_objectSpread({}, css, {}, hoverElevationStyle, {}, activeElevationStyle)).toString());\n return React.createElement(Box, _extends({\n borderTop: _borderTop,\n borderRight: _borderRight,\n borderBottom: _borderBottom,\n borderLeft: _borderLeft,\n boxShadow: elevationStyle,\n background: theme.getBackground(background)\n }, props, {\n className: className\n }));\n }\n }]);\n return Pane;\n}(PureComponent);\nPane.displayName = \"Pane\";\n_defineProperty(Pane, \"propTypes\", _objectSpread({}, Box.propTypes, {\n /**\n * Background property.\n * `tint1`, `tint2` etc. from `theme.colors.background` are available.\n */\n background: PropTypes.string,\n /**\n * Elevation of the Pane.\n * Values: 0, 1, 2, 3, 4.\n */\n elevation: PropTypes.oneOf([0, 1, 2, 3, 4]),\n /**\n * Elevation of the Pane on hover. Might get deprecated.\n * Values: 0, 1, 2, 3, 4.\n */\n hoverElevation: PropTypes.oneOf([0, 1, 2, 3, 4]),\n /**\n * Elevation of the Pane on click. Might get deprecated.\n * Values: 0, 1, 2, 3, 4.\n */\n activeElevation: PropTypes.oneOf([0, 1, 2, 3, 4]),\n /**\n * Can be a explicit border value or a boolean.\n * Values: true, muted, default.\n */\n border: StringAndBoolPropType,\n /**\n * Can be a explicit border value or a boolean.\n * Values: true, extraMuted, muted, default.\n */\n borderTop: StringAndBoolPropType,\n /**\n * Can be a explicit border value or a boolean.\n * Values: true, extraMuted, muted, default.\n */\n borderRight: StringAndBoolPropType,\n /**\n * Can be a explicit border value or a boolean.\n * Values: true, extraMuted, muted, default.\n */\n borderBottom: StringAndBoolPropType,\n /**\n * Can be a explicit border value or a boolean.\n * Values: true, extraMuted, muted, default.\n */\n borderLeft: StringAndBoolPropType,\n /**\n * Theme provided by ThemeProvider.\n */\n theme: PropTypes.object.isRequired\n}));\nexport default withTheme(Pane);","/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n'use strict';\n\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\nfunction toObject(val) {\n if (val === null || val === undefined) {\n throw new TypeError('Object.assign cannot be called with null or undefined');\n }\n return Object(val);\n}\nfunction shouldUseNative() {\n try {\n if (!Object.assign) {\n return false;\n }\n\n // Detect buggy property enumeration order in older V8 versions.\n\n // https://bugs.chromium.org/p/v8/issues/detail?id=4118\n var test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n test1[5] = 'de';\n if (Object.getOwnPropertyNames(test1)[0] === '5') {\n return false;\n }\n\n // https://bugs.chromium.org/p/v8/issues/detail?id=3056\n var test2 = {};\n for (var i = 0; i < 10; i++) {\n test2['_' + String.fromCharCode(i)] = i;\n }\n var order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n return test2[n];\n });\n if (order2.join('') !== '0123456789') {\n return false;\n }\n\n // https://bugs.chromium.org/p/v8/issues/detail?id=3056\n var test3 = {};\n 'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n test3[letter] = letter;\n });\n if (Object.keys(Object.assign({}, test3)).join('') !== 'abcdefghijklmnopqrst') {\n return false;\n }\n return true;\n } catch (err) {\n // We don't expect any of the above to throw, but better to be safe.\n return false;\n }\n}\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n var from;\n var to = toObject(target);\n var symbols;\n for (var s = 1; s < arguments.length; s++) {\n from = Object(arguments[s]);\n for (var key in from) {\n if (hasOwnProperty.call(from, key)) {\n to[key] = from[key];\n }\n }\n if (getOwnPropertySymbols) {\n symbols = getOwnPropertySymbols(from);\n for (var i = 0; i < symbols.length; i++) {\n if (propIsEnumerable.call(from, symbols[i])) {\n to[symbols[i]] = from[symbols[i]];\n }\n }\n }\n }\n return to;\n};","\"use strict\";\n\nvar __importStar = this && this.__importStar || function (mod) {\n if (mod && mod.__esModule) return mod;\n var result = {};\n if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];\n result[\"default\"] = mod;\n return result;\n};\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nconst background = __importStar(require(\"./background\"));\nexports.background = background;\nconst borderRadius = __importStar(require(\"./border-radius\"));\nexports.borderRadius = borderRadius;\nconst borders = __importStar(require(\"./borders\"));\nexports.borders = borders;\nconst boxShadow = __importStar(require(\"./box-shadow\"));\nexports.boxShadow = boxShadow;\nconst dimensions = __importStar(require(\"./dimensions\"));\nexports.dimensions = dimensions;\nconst flex = __importStar(require(\"./flex\"));\nexports.flex = flex;\nconst grid = __importStar(require(\"./grid\"));\nexports.grid = grid;\nconst interaction = __importStar(require(\"./interaction\"));\nexports.interaction = interaction;\nconst layout = __importStar(require(\"./layout\"));\nexports.layout = layout;\nconst list = __importStar(require(\"./list\"));\nexports.list = list;\nconst opacity = __importStar(require(\"./opacity\"));\nexports.opacity = opacity;\nconst outline = __importStar(require(\"./outline\"));\nexports.outline = outline;\nconst overflow = __importStar(require(\"./overflow\"));\nexports.overflow = overflow;\nconst position = __importStar(require(\"./position\"));\nexports.position = position;\nconst resize = __importStar(require(\"./resize\"));\nexports.resize = resize;\nconst spacing = __importStar(require(\"./spacing\"));\nexports.spacing = spacing;\nconst text = __importStar(require(\"./text\"));\nexports.text = text;\nconst transform = __importStar(require(\"./transform\"));\nexports.transform = transform;\nconst transition = __importStar(require(\"./transition\"));\nexports.transition = transition;\nexports.propTypes = Object.assign({}, background.propTypes, borderRadius.propTypes, borders.propTypes, boxShadow.propTypes, dimensions.propTypes, flex.propTypes, grid.propTypes, interaction.propTypes, layout.propTypes, list.propTypes, opacity.propTypes, outline.propTypes, overflow.propTypes, position.propTypes, resize.propTypes, spacing.propTypes, text.propTypes, transform.propTypes, transition.propTypes);\nexports.propNames = Object.keys(exports.propTypes);\nexports.propAliases = Object.assign({}, background.propAliases, borderRadius.propAliases, borders.propAliases, boxShadow.propAliases, dimensions.propAliases, flex.propAliases, grid.propAliases, interaction.propAliases, layout.propAliases, list.propAliases, opacity.propAliases, outline.propAliases, overflow.propAliases, position.propAliases, resize.propAliases, spacing.propAliases, text.propAliases, transform.propAliases, transition.propAliases);\nexports.propValidators = Object.assign({}, background.propValidators, borderRadius.propValidators, borders.propValidators, boxShadow.propValidators, dimensions.propValidators, flex.propValidators, grid.propValidators, interaction.propValidators, layout.propValidators, list.propValidators, opacity.propValidators, outline.propValidators, overflow.propValidators, position.propValidators, resize.propValidators, spacing.propValidators, text.propValidators, transform.propValidators, transition.propValidators);\nexports.propEnhancers = Object.assign({}, background.propEnhancers, borderRadius.propEnhancers, borders.propEnhancers, boxShadow.propEnhancers, dimensions.propEnhancers, flex.propEnhancers, grid.propEnhancers, interaction.propEnhancers, layout.propEnhancers, list.propEnhancers, opacity.propEnhancers, outline.propEnhancers, overflow.propEnhancers, position.propEnhancers, resize.propEnhancers, spacing.propEnhancers, text.propEnhancers, transform.propEnhancers, transition.propEnhancers);","// This is a generated file. DO NOT modify directly.\nexport var ADD = 'add';\nexport var ADD_COLUMN_LEFT = 'add-column-left';\nexport var ADD_COLUMN_RIGHT = 'add-column-right';\nexport var ADD_ROW_BOTTOM = 'add-row-bottom';\nexport var ADD_ROW_TOP = 'add-row-top';\nexport var ADD_TO_ARTIFACT = 'add-to-artifact';\nexport var ADD_TO_FOLDER = 'add-to-folder';\nexport var AIRPLANE = 'airplane';\nexport var ALIGN_CENTER = 'align-center';\nexport var ALIGN_JUSTIFY = 'align-justify';\nexport var ALIGN_LEFT = 'align-left';\nexport var ALIGN_RIGHT = 'align-right';\nexport var ALIGNMENT_BOTTOM = 'alignment-bottom';\nexport var ALIGNMENT_HORIZONTAL_CENTER = 'alignment-horizontal-center';\nexport var ALIGNMENT_LEFT = 'alignment-left';\nexport var ALIGNMENT_RIGHT = 'alignment-right';\nexport var ALIGNMENT_TOP = 'alignment-top';\nexport var ALIGNMENT_VERTICAL_CENTER = 'alignment-vertical-center';\nexport var ANNOTATION = 'annotation';\nexport var APPLICATION = 'application';\nexport var APPLICATIONS = 'applications';\nexport var ARCHIVE = 'archive';\nexport var ARROW_BOTTOM_LEFT = 'arrow-bottom-left';\nexport var ARROW_BOTTOM_RIGHT = 'arrow-bottom-right';\nexport var ARROW_DOWN = 'arrow-down';\nexport var ARROW_LEFT = 'arrow-left';\nexport var ARROW_RIGHT = 'arrow-right';\nexport var ARROW_TOP_LEFT = 'arrow-top-left';\nexport var ARROW_TOP_RIGHT = 'arrow-top-right';\nexport var ARROW_UP = 'arrow-up';\nexport var ARROWS_HORIZONTAL = 'arrows-horizontal';\nexport var ARROWS_VERTICAL = 'arrows-vertical';\nexport var ASTERISK = 'asterisk';\nexport var AUTOMATIC_UPDATES = 'automatic-updates';\nexport var BADGE = 'badge';\nexport var BAN_CIRCLE = 'ban-circle';\nexport var BANK_ACCOUNT = 'bank-account';\nexport var BARCODE = 'barcode';\nexport var BLANK = 'blank';\nexport var BLOCKED_PERSON = 'blocked-person';\nexport var BOLD = 'bold';\nexport var BOOK = 'book';\nexport var BOOKMARK = 'bookmark';\nexport var BOX = 'box';\nexport var BRIEFCASE = 'briefcase';\nexport var BRING_DATA = 'bring-data';\nexport var BUILD = 'build';\nexport var CALCULATOR = 'calculator';\nexport var CALENDAR = 'calendar';\nexport var CAMERA = 'camera';\nexport var CARET_DOWN = 'caret-down';\nexport var CARET_LEFT = 'caret-left';\nexport var CARET_RIGHT = 'caret-right';\nexport var CARET_UP = 'caret-up';\nexport var CELL_TOWER = 'cell-tower';\nexport var CHANGES = 'changes';\nexport var CHART = 'chart';\nexport var CHAT = 'chat';\nexport var CHEVRON_BACKWARD = 'chevron-backward';\nexport var CHEVRON_DOWN = 'chevron-down';\nexport var CHEVRON_FORWARD = 'chevron-forward';\nexport var CHEVRON_LEFT = 'chevron-left';\nexport var CHEVRON_RIGHT = 'chevron-right';\nexport var CHEVRON_UP = 'chevron-up';\nexport var CIRCLE = 'circle';\nexport var CIRCLE_ARROW_DOWN = 'circle-arrow-down';\nexport var CIRCLE_ARROW_LEFT = 'circle-arrow-left';\nexport var CIRCLE_ARROW_RIGHT = 'circle-arrow-right';\nexport var CIRCLE_ARROW_UP = 'circle-arrow-up';\nexport var CITATION = 'citation';\nexport var CLEAN = 'clean';\nexport var CLIPBOARD = 'clipboard';\nexport var CLOUD = 'cloud';\nexport var CLOUD_DOWNLOAD = 'cloud-download';\nexport var CLOUD_UPLOAD = 'cloud-upload';\nexport var CODE = 'code';\nexport var CODE_BLOCK = 'code-block';\nexport var COG = 'cog';\nexport var COLLAPSE_ALL = 'collapse-all';\nexport var COLUMN_LAYOUT = 'column-layout';\nexport var COMMENT = 'comment';\nexport var COMPARISON = 'comparison';\nexport var COMPASS = 'compass';\nexport var COMPRESSED = 'compressed';\nexport var CONFIRM = 'confirm';\nexport var CONSOLE = 'console';\nexport var CONTRAST = 'contrast';\nexport var CONTROL = 'control';\nexport var CREDIT_CARD = 'credit-card';\nexport var CROSS = 'cross';\nexport var CROWN = 'crown';\nexport var CUBE = 'cube';\nexport var CUBE_ADD = 'cube-add';\nexport var CUBE_REMOVE = 'cube-remove';\nexport var CURVED_RANGE_CHART = 'curved-range-chart';\nexport var CUT = 'cut';\nexport var DASHBOARD = 'dashboard';\nexport var DATA_LINEAGE = 'data-lineage';\nexport var DATABASE = 'database';\nexport var DELETE = 'delete';\nexport var DELTA = 'delta';\nexport var DERIVE_COLUMN = 'derive-column';\nexport var DESKTOP = 'desktop';\nexport var DIAGRAM_TREE = 'diagram-tree';\nexport var DIRECTION_LEFT = 'direction-left';\nexport var DIRECTION_RIGHT = 'direction-right';\nexport var DISABLE = 'disable';\nexport var DOCUMENT = 'document';\nexport var DOCUMENT_OPEN = 'document-open';\nexport var DOCUMENT_SHARE = 'document-share';\nexport var DOLLAR = 'dollar';\nexport var DOT = 'dot';\nexport var DOUBLE_CARET_HORIZONTAL = 'double-caret-horizontal';\nexport var DOUBLE_CARET_VERTICAL = 'double-caret-vertical';\nexport var DOUBLE_CHEVRON_DOWN = 'double-chevron-down';\nexport var DOUBLE_CHEVRON_LEFT = 'double-chevron-left';\nexport var DOUBLE_CHEVRON_RIGHT = 'double-chevron-right';\nexport var DOUBLE_CHEVRON_UP = 'double-chevron-up';\nexport var DOUGHNUT_CHART = 'doughnut-chart';\nexport var DOWNLOAD = 'download';\nexport var DRAG_HANDLE_HORIZONTAL = 'drag-handle-horizontal';\nexport var DRAG_HANDLE_VERTICAL = 'drag-handle-vertical';\nexport var DRAW = 'draw';\nexport var DRIVE_TIME = 'drive-time';\nexport var DUPLICATE = 'duplicate';\nexport var EDIT = 'edit';\nexport var EJECT = 'eject';\nexport var ENDORSED = 'endorsed';\nexport var ENVELOPE = 'envelope';\nexport var EQUALS = 'equals';\nexport var ERASER = 'eraser';\nexport var ERROR = 'error';\nexport var EURO = 'euro';\nexport var EXCHANGE = 'exchange';\nexport var EXCLUDE_ROW = 'exclude-row';\nexport var EXPAND_ALL = 'expand-all';\nexport var EXPORT = 'export';\nexport var EYE_OFF = 'eye-off';\nexport var EYE_ON = 'eye-on';\nexport var EYE_OPEN = 'eye-open';\nexport var FAST_BACKWARD = 'fast-backward';\nexport var FAST_FORWARD = 'fast-forward';\nexport var FEED = 'feed';\nexport var FEED_SUBSCRIBED = 'feed-subscribed';\nexport var FILM = 'film';\nexport var FILTER = 'filter';\nexport var FILTER_KEEP = 'filter-keep';\nexport var FILTER_LIST = 'filter-list';\nexport var FILTER_OPEN = 'filter-open';\nexport var FILTER_REMOVE = 'filter-remove';\nexport var FLAG = 'flag';\nexport var FLAME = 'flame';\nexport var FLASH = 'flash';\nexport var FLOPPY_DISK = 'floppy-disk';\nexport var FLOW_BRANCH = 'flow-branch';\nexport var FLOW_END = 'flow-end';\nexport var FLOW_LINEAR = 'flow-linear';\nexport var FLOW_REVIEW = 'flow-review';\nexport var FLOW_REVIEW_BRANCH = 'flow-review-branch';\nexport var FLOWS = 'flows';\nexport var FOLDER_CLOSE = 'folder-close';\nexport var FOLDER_NEW = 'folder-new';\nexport var FOLDER_OPEN = 'folder-open';\nexport var FOLDER_SHARED = 'folder-shared';\nexport var FOLDER_SHARED_OPEN = 'folder-shared-open';\nexport var FOLLOWER = 'follower';\nexport var FOLLOWING = 'following';\nexport var FONT = 'font';\nexport var FORK = 'fork';\nexport var FORM = 'form';\nexport var FULL_CIRCLE = 'full-circle';\nexport var FULL_STACKED_CHART = 'full-stacked-chart';\nexport var FULLSCREEN = 'fullscreen';\nexport var FUNCTION = 'function';\nexport var GANTT_CHART = 'gantt-chart';\nexport var GEOLOCATION = 'geolocation';\nexport var GEOSEARCH = 'geosearch';\nexport var GIT_BRANCH = 'git-branch';\nexport var GIT_COMMIT = 'git-commit';\nexport var GIT_MERGE = 'git-merge';\nexport var GIT_NEW_BRANCH = 'git-new-branch';\nexport var GIT_PULL = 'git-pull';\nexport var GIT_PUSH = 'git-push';\nexport var GIT_REPO = 'git-repo';\nexport var GLASS = 'glass';\nexport var GLOBE = 'globe';\nexport var GLOBE_NETWORK = 'globe-network';\nexport var GRAPH = 'graph';\nexport var GRAPH_REMOVE = 'graph-remove';\nexport var GREATER_THAN = 'greater-than';\nexport var GREATER_THAN_OR_EQUAL_TO = 'greater-than-or-equal-to';\nexport var GRID = 'grid';\nexport var GRID_VIEW = 'grid-view';\nexport var GROUP_OBJECTS = 'group-objects';\nexport var GROUPED_BAR_CHART = 'grouped-bar-chart';\nexport var HAND = 'hand';\nexport var HAND_DOWN = 'hand-down';\nexport var HAND_LEFT = 'hand-left';\nexport var HAND_RIGHT = 'hand-right';\nexport var HAND_UP = 'hand-up';\nexport var HEADER = 'header';\nexport var HEADER_ONE = 'header-one';\nexport var HEADER_TWO = 'header-two';\nexport var HEADSET = 'headset';\nexport var HEART = 'heart';\nexport var HEART_BROKEN = 'heart-broken';\nexport var HEAT_GRID = 'heat-grid';\nexport var HEATMAP = 'heatmap';\nexport var HELP = 'help';\nexport var HELPER_MANAGEMENT = 'helper-management';\nexport var HIGHLIGHT = 'highlight';\nexport var HISTORY = 'history';\nexport var HOME = 'home';\nexport var HORIZONTAL_BAR_CHART = 'horizontal-bar-chart';\nexport var HORIZONTAL_BAR_CHART_ASC = 'horizontal-bar-chart-asc';\nexport var HORIZONTAL_BAR_CHART_DESC = 'horizontal-bar-chart-desc';\nexport var HORIZONTAL_DISTRIBUTION = 'horizontal-distribution';\nexport var ID_NUMBER = 'id-number';\nexport var IMAGE_ROTATE_LEFT = 'image-rotate-left';\nexport var IMAGE_ROTATE_RIGHT = 'image-rotate-right';\nexport var IMPORT = 'import';\nexport var INBOX = 'inbox';\nexport var INBOX_FILTERED = 'inbox-filtered';\nexport var INBOX_GEO = 'inbox-geo';\nexport var INBOX_SEARCH = 'inbox-search';\nexport var INBOX_UPDATE = 'inbox-update';\nexport var INFO_SIGN = 'info-sign';\nexport var INHERITANCE = 'inheritance';\nexport var INNER_JOIN = 'inner-join';\nexport var INSERT = 'insert';\nexport var INTERSECTION = 'intersection';\nexport var IP_ADDRESS = 'ip-address';\nexport var ISSUE = 'issue';\nexport var ISSUE_CLOSED = 'issue-closed';\nexport var ISSUE_NEW = 'issue-new';\nexport var ITALIC = 'italic';\nexport var JOIN_TABLE = 'join-table';\nexport var KEY = 'key';\nexport var KEY_BACKSPACE = 'key-backspace';\nexport var KEY_COMMAND = 'key-command';\nexport var KEY_CONTROL = 'key-control';\nexport var KEY_DELETE = 'key-delete';\nexport var KEY_ENTER = 'key-enter';\nexport var KEY_ESCAPE = 'key-escape';\nexport var KEY_OPTION = 'key-option';\nexport var KEY_SHIFT = 'key-shift';\nexport var KEY_TAB = 'key-tab';\nexport var KNOWN_VEHICLE = 'known-vehicle';\nexport var LABEL = 'label';\nexport var LAYER = 'layer';\nexport var LAYERS = 'layers';\nexport var LAYOUT = 'layout';\nexport var LAYOUT_AUTO = 'layout-auto';\nexport var LAYOUT_BALLOON = 'layout-balloon';\nexport var LAYOUT_CIRCLE = 'layout-circle';\nexport var LAYOUT_GRID = 'layout-grid';\nexport var LAYOUT_GROUP_BY = 'layout-group-by';\nexport var LAYOUT_HIERARCHY = 'layout-hierarchy';\nexport var LAYOUT_LINEAR = 'layout-linear';\nexport var LAYOUT_SKEW_GRID = 'layout-skew-grid';\nexport var LAYOUT_SORTED_CLUSTERS = 'layout-sorted-clusters';\nexport var LEARNING = 'learning';\nexport var LEFT_JOIN = 'left-join';\nexport var LESS_THAN = 'less-than';\nexport var LESS_THAN_OR_EQUAL_TO = 'less-than-or-equal-to';\nexport var LIFESAVER = 'lifesaver';\nexport var LIGHTBULB = 'lightbulb';\nexport var LINK = 'link';\nexport var LIST = 'list';\nexport var LIST_COLUMNS = 'list-columns';\nexport var LIST_DETAIL_VIEW = 'list-detail-view';\nexport var LOCATE = 'locate';\nexport var LOCK = 'lock';\nexport var LOG_IN = 'log-in';\nexport var LOG_OUT = 'log-out';\nexport var MANUAL = 'manual';\nexport var MANUALLY_ENTERED_DATA = 'manually-entered-data';\nexport var MAP = 'map';\nexport var MAP_CREATE = 'map-create';\nexport var MAP_MARKER = 'map-marker';\nexport var MAXIMIZE = 'maximize';\nexport var MEDIA = 'media';\nexport var MENU = 'menu';\nexport var MENU_CLOSED = 'menu-closed';\nexport var MENU_OPEN = 'menu-open';\nexport var MERGE_COLUMNS = 'merge-columns';\nexport var MERGE_LINKS = 'merge-links';\nexport var MINIMIZE = 'minimize';\nexport var MINUS = 'minus';\nexport var MOBILE_PHONE = 'mobile-phone';\nexport var MOBILE_VIDEO = 'mobile-video';\nexport var MOON = 'moon';\nexport var MORE = 'more';\nexport var MOUNTAIN = 'mountain';\nexport var MOVE = 'move';\nexport var MUGSHOT = 'mugshot';\nexport var MULTI_SELECT = 'multi-select';\nexport var MUSIC = 'music';\nexport var NEW_DRAWING = 'new-drawing';\nexport var NEW_GRID_ITEM = 'new-grid-item';\nexport var NEW_LAYER = 'new-layer';\nexport var NEW_LAYERS = 'new-layers';\nexport var NEW_LINK = 'new-link';\nexport var NEW_OBJECT = 'new-object';\nexport var NEW_PERSON = 'new-person';\nexport var NEW_PRESCRIPTION = 'new-prescription';\nexport var NEW_TEXT_BOX = 'new-text-box';\nexport var NINJA = 'ninja';\nexport var NOT_EQUAL_TO = 'not-equal-to';\nexport var NOTIFICATIONS = 'notifications';\nexport var NOTIFICATIONS_UPDATED = 'notifications-updated';\nexport var NUMBERED_LIST = 'numbered-list';\nexport var NUMERICAL = 'numerical';\nexport var OFFICE = 'office';\nexport var OFFLINE = 'offline';\nexport var OIL_FIELD = 'oil-field';\nexport var ONE_COLUMN = 'one-column';\nexport var OUTDATED = 'outdated';\nexport var PAGE_LAYOUT = 'page-layout';\nexport var PANEL_STATS = 'panel-stats';\nexport var PANEL_TABLE = 'panel-table';\nexport var PAPERCLIP = 'paperclip';\nexport var PARAGRAPH = 'paragraph';\nexport var PATH = 'path';\nexport var PATH_SEARCH = 'path-search';\nexport var PAUSE = 'pause';\nexport var PEOPLE = 'people';\nexport var PERCENTAGE = 'percentage';\nexport var PERSON = 'person';\nexport var PHONE = 'phone';\nexport var PIE_CHART = 'pie-chart';\nexport var PIN = 'pin';\nexport var PIVOT = 'pivot';\nexport var PIVOT_TABLE = 'pivot-table';\nexport var PLAY = 'play';\nexport var PLUS = 'plus';\nexport var POLYGON_FILTER = 'polygon-filter';\nexport var POWER = 'power';\nexport var PREDICTIVE_ANALYSIS = 'predictive-analysis';\nexport var PRESCRIPTION = 'prescription';\nexport var PRESENTATION = 'presentation';\nexport var PRINT = 'print';\nexport var PROJECTS = 'projects';\nexport var PROPERTIES = 'properties';\nexport var PROPERTY = 'property';\nexport var PUBLISH_FUNCTION = 'publish-function';\nexport var PULSE = 'pulse';\nexport var RANDOM = 'random';\nexport var RECORD = 'record';\nexport var REDO = 'redo';\nexport var REFRESH = 'refresh';\nexport var REGRESSION_CHART = 'regression-chart';\nexport var REMOVE = 'remove';\nexport var REMOVE_COLUMN = 'remove-column';\nexport var REMOVE_COLUMN_LEFT = 'remove-column-left';\nexport var REMOVE_COLUMN_RIGHT = 'remove-column-right';\nexport var REMOVE_ROW_BOTTOM = 'remove-row-bottom';\nexport var REMOVE_ROW_TOP = 'remove-row-top';\nexport var REPEAT = 'repeat';\nexport var RESET = 'reset';\nexport var RESOLVE = 'resolve';\nexport var RIG = 'rig';\nexport var RIGHT_JOIN = 'right-join';\nexport var RING = 'ring';\nexport var ROTATE_DOCUMENT = 'rotate-document';\nexport var ROTATE_PAGE = 'rotate-page';\nexport var SATELLITE = 'satellite';\nexport var SAVED = 'saved';\nexport var SCATTER_PLOT = 'scatter-plot';\nexport var SEARCH = 'search';\nexport var SEARCH_AROUND = 'search-around';\nexport var SEARCH_TEMPLATE = 'search-template';\nexport var SEARCH_TEXT = 'search-text';\nexport var SEGMENTED_CONTROL = 'segmented-control';\nexport var SELECT = 'select';\nexport var SELECTION = 'selection';\nexport var SEND_TO = 'send-to';\nexport var SEND_TO_GRAPH = 'send-to-graph';\nexport var SEND_TO_MAP = 'send-to-map';\nexport var SERIES_ADD = 'series-add';\nexport var SERIES_CONFIGURATION = 'series-configuration';\nexport var SERIES_DERIVED = 'series-derived';\nexport var SERIES_FILTERED = 'series-filtered';\nexport var SERIES_SEARCH = 'series-search';\nexport var SETTINGS = 'settings';\nexport var SHARE = 'share';\nexport var SHIELD = 'shield';\nexport var SHOP = 'shop';\nexport var SHOPPING_CART = 'shopping-cart';\nexport var SIGNAL_SEARCH = 'signal-search';\nexport var SIM_CARD = 'sim-card';\nexport var SLASH = 'slash';\nexport var SMALL_CROSS = 'small-cross';\nexport var SMALL_MINUS = 'small-minus';\nexport var SMALL_PLUS = 'small-plus';\nexport var SMALL_TICK = 'small-tick';\nexport var SNOWFLAKE = 'snowflake';\nexport var SOCIAL_MEDIA = 'social-media';\nexport var SORT = 'sort';\nexport var SORT_ALPHABETICAL = 'sort-alphabetical';\nexport var SORT_ALPHABETICAL_DESC = 'sort-alphabetical-desc';\nexport var SORT_ASC = 'sort-asc';\nexport var SORT_DESC = 'sort-desc';\nexport var SORT_NUMERICAL = 'sort-numerical';\nexport var SORT_NUMERICAL_DESC = 'sort-numerical-desc';\nexport var SPLIT_COLUMNS = 'split-columns';\nexport var SQUARE = 'square';\nexport var STACKED_CHART = 'stacked-chart';\nexport var STAR = 'star';\nexport var STAR_EMPTY = 'star-empty';\nexport var STEP_BACKWARD = 'step-backward';\nexport var STEP_CHART = 'step-chart';\nexport var STEP_FORWARD = 'step-forward';\nexport var STOP = 'stop';\nexport var STOPWATCH = 'stopwatch';\nexport var STRIKETHROUGH = 'strikethrough';\nexport var STYLE = 'style';\nexport var SWAP_HORIZONTAL = 'swap-horizontal';\nexport var SWAP_VERTICAL = 'swap-vertical';\nexport var SYMBOL_CIRCLE = 'symbol-circle';\nexport var SYMBOL_CROSS = 'symbol-cross';\nexport var SYMBOL_DIAMOND = 'symbol-diamond';\nexport var SYMBOL_SQUARE = 'symbol-square';\nexport var SYMBOL_TRIANGLE_DOWN = 'symbol-triangle-down';\nexport var SYMBOL_TRIANGLE_UP = 'symbol-triangle-up';\nexport var TAG = 'tag';\nexport var TAKE_ACTION = 'take-action';\nexport var TAXI = 'taxi';\nexport var TEXT_HIGHLIGHT = 'text-highlight';\nexport var TH = 'th';\nexport var TH_DERIVED = 'th-derived';\nexport var TH_DISCONNECT = 'th-disconnect';\nexport var TH_FILTERED = 'th-filtered';\nexport var TH_LIST = 'th-list';\nexport var THUMBS_DOWN = 'thumbs-down';\nexport var THUMBS_UP = 'thumbs-up';\nexport var TICK = 'tick';\nexport var TICK_CIRCLE = 'tick-circle';\nexport var TIME = 'time';\nexport var TIMELINE_AREA_CHART = 'timeline-area-chart';\nexport var TIMELINE_BAR_CHART = 'timeline-bar-chart';\nexport var TIMELINE_EVENTS = 'timeline-events';\nexport var TIMELINE_LINE_CHART = 'timeline-line-chart';\nexport var TINT = 'tint';\nexport var TORCH = 'torch';\nexport var TRACTOR = 'tractor';\nexport var TRAIN = 'train';\nexport var TRANSLATE = 'translate';\nexport var TRASH = 'trash';\nexport var TREE = 'tree';\nexport var TRENDING_DOWN = 'trending-down';\nexport var TRENDING_UP = 'trending-up';\nexport var TRUCK = 'truck';\nexport var TWO_COLUMNS = 'two-columns';\nexport var UNARCHIVE = 'unarchive';\nexport var UNDERLINE = 'underline';\nexport var UNDO = 'undo';\nexport var UNGROUP_OBJECTS = 'ungroup-objects';\nexport var UNKNOWN_VEHICLE = 'unknown-vehicle';\nexport var UNLOCK = 'unlock';\nexport var UNPIN = 'unpin';\nexport var UNRESOLVE = 'unresolve';\nexport var UPDATED = 'updated';\nexport var UPLOAD = 'upload';\nexport var USER = 'user';\nexport var VARIABLE = 'variable';\nexport var VERTICAL_BAR_CHART_ASC = 'vertical-bar-chart-asc';\nexport var VERTICAL_BAR_CHART_DESC = 'vertical-bar-chart-desc';\nexport var VERTICAL_DISTRIBUTION = 'vertical-distribution';\nexport var VIDEO = 'video';\nexport var VOLUME_DOWN = 'volume-down';\nexport var VOLUME_OFF = 'volume-off';\nexport var VOLUME_UP = 'volume-up';\nexport var WALK = 'walk';\nexport var WARNING_SIGN = 'warning-sign';\nexport var WATERFALL_CHART = 'waterfall-chart';\nexport var WIDGET = 'widget';\nexport var WIDGET_BUTTON = 'widget-button';\nexport var WIDGET_FOOTER = 'widget-footer';\nexport var WIDGET_HEADER = 'widget-header';\nexport var WRENCH = 'wrench';\nexport var ZOOM_IN = 'zoom-in';\nexport var ZOOM_OUT = 'zoom-out';\nexport var ZOOM_TO_FIT = 'zoom-to-fit';","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.99 6.99h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1zm-3-7c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm5-9h-4V5c0-.55-.45-1-1-1s-1 .45-1 1v4H5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1v-4h4c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AddIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 14H2V2h8v12zm4 0h-3V2h3v12zM4 9h1v1c0 .55.45 1 1 1s1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1H7V6c0-.55-.45-1-1-1s-1 .45-1 1v1H4c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M4 11h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1H8V7c0-.55-.45-1-1-1s-1 .45-1 1v2H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-7 18H2V2h10v16zm6 0h-5V2h5v16z'];\nexport var AddColumnLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-column-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 9h1v1c0 .55.45 1 1 1s1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V6c0-.55-.45-1-1-1s-1 .45-1 1v1H8c-.55 0-1 .45-1 1s.45 1 1 1zm7-9H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 14H2V2h3v12zm9 0H6V2h8v12z'];\nvar svgPaths20 = ['M10 11h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V7c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1zm9-11H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H2V2h5v16zm11 0H8V2h10v16z'];\nexport var AddColumnRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-column-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 11h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1H9V8c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-.55 0-1 .45-1 1s.45 1 1 1zm9-11H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V6h12v8zm0-9H2V2h12v3z'];\nvar svgPaths20 = ['M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V8h16v10zm0-11H2V2h16v5zM7 14h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-2c0-.55-.45-1-1-1s-1 .45-1 1v2H7c-.55 0-1 .45-1 1s.45 1 1 1z'];\nexport var AddRowBottomIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-row-bottom\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2v-3h12v3zm0-4H2V2h12v8zM6 7h1v1c0 .55.45 1 1 1s1-.45 1-1V7h1c.55 0 1-.45 1-1s-.45-1-1-1H9V4c0-.55-.45-1-1-1s-1 .45-1 1v1H6c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M7 8h2v2c0 .55.45 1 1 1s1-.45 1-1V8h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V4c0-.55-.45-1-1-1s-1 .45-1 1v2H7c-.55 0-1 .45-1 1s.45 1 1 1zm12-8H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2v-5h16v5zm0-6H2V2h16v10z'];\nexport var AddRowTopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-row-top\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 4.01h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1 0-.56-.45-1-1-1zm-13 2h6c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm8 6H1c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1 0-.56-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1 0-.56-.45-1-1-1z'];\nvar svgPaths20 = ['M13 12H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM1 6h9c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm12 2H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm6-4h-2V2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AddToArtifactIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-to-artifact\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M.01 7V5H16v7c0 .55-.45 1-1 1H9.005v-2.99C8.974 8.332 7.644 7 5.996 7H.01zM15 2H7.416L5.706.29a.996.996 0 00-.71-.29H1C.45 0 0 .45 0 1v3h15.99V3c.01-.55-.44-1-.99-1zM5.997 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.589L.3 14.29a1.003 1.003 0 001.42 1.42l3.287-3.29v1.59c0 .55.45 1 1 1 .549 0 .999-.45.999-1v-4A1.02 1.02 0 005.996 9z'];\nvar svgPaths20 = ['M.01 10V6H20v10c0 .55-.45 1-1 1H9.995v-3.99C9.965 11.332 8.635 10 6.987 10H.01zM19 3c.55 0 1 .45.99 1v1H0V2c0-.55.45-1 1-1h5.997c.28 0 .53.11.71.29L9.414 3H19zM6.987 12c.55 0 .999.45 1.009 1.01v5c0 .55-.45 1-1 1s-.999-.45-.999-1v-2.59l-4.288 4.29a1.003 1.003 0 01-1.42-1.42L4.579 14H1.989c-.55 0-1-.45-1-1s.45-1 1-1h4.998z'];\nexport var AddToFolderIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"add-to-folder\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 1.5A1.498 1.498 0 0013.44.44L9.91 3.97 2 1 1 3l5.93 3.95L3.88 10H1l-1 1 3 2 2 3 1-1v-2.88l3.05-3.05L13 15l2-1-2.97-7.91 3.53-3.53c.27-.27.44-.65.44-1.06z'];\nvar svgPaths20 = ['M20 2c0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-4.84 4.84L2 1 1 3l7.53 5.64L4.17 13H1l-1 1 4 2 2 4 1-1v-3.17l4.36-4.36L17 19l2-1-4.43-9.74 4.84-4.84c.37-.37.59-.87.59-1.42z'];\nexport var AirplaneIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"airplane\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 4c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1H4zM1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm13 10H2c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm1-6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-5 5c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1h4z'];\nvar svgPaths20 = ['M5 5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1H5zM1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm12 12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1h6zm4 2H3c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm2-8H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AlignCenterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"align-center\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12.98H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-14-10h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm14 4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 14H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-12H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AlignJustifyIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"align-justify\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 13H1c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zM1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 3h8c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 12h4c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M1 7h10c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 14H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM1 15h6c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z'];\nexport var AlignLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"align-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12.98H3c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm-14-10h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1 0 .56.45 1 1 1zm14 1H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0 6h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1zm0-3H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 17H5c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 10h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H9c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AlignRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"align-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 12h3c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm5 2H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h3c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1z'];\nvar svgPaths20 = ['M12 16h4c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1zm7 2H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM4 16h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1z'];\nexport var AlignmentBottomIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-bottom\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 7h-1V6c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v1H7V3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4H1c-.55 0-1 .45-1 1s.45 1 1 1h1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9h2v1c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V9h1c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 9h-2V7c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H9V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v6H1c-.55 0-1 .45-1 1s.45 1 1 1h2v6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-6h2v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var AlignmentHorizontalCenterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-horizontal-center\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 9H5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zM1 0C.45 0 0 .45 0 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm13 2H5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M1 0C.45 0 0 .45 0 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm11 11H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm7-8H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var AlignmentLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 9H7c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm4-9c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-4 2H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 0c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-4 11H8c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm0-8H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var AlignmentRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM6 4H3c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm7 0h-3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M8 4H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm11-4H1C.45 0 0 .45 0 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-3 4h-4c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z'];\nexport var AlignmentTopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-top\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 2H9V1c0-.55-.45-1-1-1S7 .45 7 1v1H3c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4v2H6c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1H9V7h4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M17 3h-6V1c0-.55-.45-1-1-1S9 .45 9 1v2H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h6v2H7c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1h-2V9h6c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var AlignmentVerticalCenterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"alignment-vertical-center\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.52 2.77c.3-.29.48-.7.48-1.15C16 .73 15.27 0 14.38 0c-.45 0-.85.18-1.15.48l-1.34 1.34 2.3 2.3 1.33-1.35zM7.4 10.9l6.21-6.21-2.3-2.3L5.1 8.6l2.3 2.3zM14 14H2V2h6.34l2-2H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5.66l-2 2V14zM3 13l3.58-1.29-2.29-2.27L3 13z'];\nvar svgPaths20 = ['M9.41 13.41l7.65-7.65-2.83-2.83-7.65 7.65 2.83 2.83zm10-10c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.64-1.66zM18 18H2V2h8.93l2-2H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7.07l-2 2V18zM4 16l4.41-1.59-2.81-2.79L4 16z'];\nexport var AnnotationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"annotation\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.5 7h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zM15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 12H2V5h12v8zM3.5 9h4c.28 0 .5-.22.5-.5S7.78 8 7.5 8h-4c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5z'];\nvar svgPaths20 = ['M3.5 9h9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-9c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm-1 16H2V6h16v11zM3.5 13h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5z'];\nexport var ApplicationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"application\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.5 11h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-2c-.28 0-.5.22-.5.5s.22.5.5.5zm0-2h5c.28 0 .5-.22.5-.5S8.78 8 8.5 8h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM11 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10H2V7h8v7zm5-14H5c-.55 0-1 .45-1 1v2h2V2h8v7h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM3.5 13h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5s.22.5.5.5z'];\nvar svgPaths20 = ['M15 5H1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 13H2V8h12v10zM3.5 10h7c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-7c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-3c-.28 0-.5.22-.5.5s.22.5.5.5zm0 2h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5h-5c-.28 0-.5.22-.5.5s.22.5.5.5zM19 0H5c-.55 0-1 .45-1 1v3h2V3h12v10h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var ApplicationsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"applications\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.382 0a1 1 0 01.894.553L16 4v11a1 1 0 01-1 1H1a1 1 0 01-1-1V4L1.724.553A1 1 0 012.618 0h10.764zM8 6c-.55 0-1 .45-1 1v2.59l-.29-.29-.081-.076A.97.97 0 006 9a1.003 1.003 0 00-.71 1.71l2 2 .096.084c.168.13.38.206.614.206.28 0 .53-.11.71-.29l2-2 .084-.096A1.003 1.003 0 009.29 9.29l-.29.3V7l-.007-.116A1.004 1.004 0 008 6zm5-4H3L2 4h12l-1-2z'];\nvar svgPaths20 = ['M16.434 0a1 1 0 01.857.486L20 5v14a1 1 0 01-1 1H1a1 1 0 01-1-1V5L2.709.486A1 1 0 013.566 0h12.868zM10 8c-.55 0-1 .45-1 1v4.58l-1.29-1.29-.081-.073A.996.996 0 007 11.99a1.003 1.003 0 00-.71 1.71l3 3 .096.084c.168.13.38.206.614.206.28 0 .53-.11.71-.29l3-3 .084-.096a1.003 1.003 0 00-1.504-1.324L11 13.58V9l-.007-.116A1.004 1.004 0 0010 8zm6-6H4L2 5.002h16L16 2z'];\nexport var ArchiveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"archive\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 3a1.003 1.003 0 00-1.71-.71L4 10.59V6c0-.55-.45-1-1-1s-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1H5.41l8.29-8.29c.19-.18.3-.43.3-.71z'];\nvar svgPaths20 = ['M18 3a1.003 1.003 0 00-1.71-.71L4 14.59V7c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1H5.41l12.3-12.29c.18-.18.29-.43.29-.71z'];\nexport var ArrowBottomLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-bottom-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 5c-.55 0-1 .45-1 1v4.59l-8.29-8.3a1.003 1.003 0 00-1.42 1.42l8.3 8.29H6c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M17 6c-.55 0-1 .45-1 1v7.59L3.71 2.29a1.003 1.003 0 00-1.42 1.42L14.59 16H7c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z'];\nexport var ArrowBottomRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-bottom-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 8c-.3 0-.5.1-.7.3L9 11.6V2c0-.5-.4-1-1-1s-1 .5-1 1v9.6L3.7 8.3C3.5 8.1 3.3 8 3 8c-.5 0-1 .5-1 1 0 .3.1.5.3.7l5 5c.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1z'];\nvar svgPaths20 = ['M16 11c-.3 0-.5.1-.7.3L11 15.6V2c0-.5-.4-1-1-1s-1 .5-1 1v13.6l-4.3-4.3c-.2-.2-.4-.3-.7-.3-.5 0-1 .4-1 1 0 .3.1.5.3.7l6 6c.2.2.4.3.7.3s.5-.1.7-.3l6-6c.2-.2.3-.4.3-.7 0-.6-.5-1-1-1z'];\nexport var ArrowDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.99 6.99H4.41L7.7 3.7a1.003 1.003 0 00-1.42-1.42l-5 5a1.014 1.014 0 000 1.42l5 5a1.003 1.003 0 001.42-1.42L4.41 8.99H14c.55 0 1-.45 1-1s-.46-1-1.01-1z'];\nvar svgPaths20 = ['M18 9H4.41L8.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L4.41 11H18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var ArrowLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.7 7.29l-5-5a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3.29 3.29H1.99c-.55 0-1 .45-1 1s.45 1 1 1h9.59l-3.29 3.29a1.003 1.003 0 001.42 1.42l5-5c.18-.18.29-.43.29-.71s-.12-.52-.3-.7z'];\nvar svgPaths20 = ['M18.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42L15.59 9H2c-.55 0-1 .45-1 1s.45 1 1 1h13.59l-4.29 4.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var ArrowRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.71 12.29L5.41 4H10c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V5.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nvar svgPaths20 = ['M17.71 16.29L5.41 4H13c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5.41L16.29 17.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nexport var ArrowTopLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-top-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 2H6c-.55 0-1 .45-1 1s.45 1 1 1h4.59L2.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L12 5.41V10c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M17 2H7c-.55 0-1 .45-1 1s.45 1 1 1h7.59L2.29 16.29a1.003 1.003 0 001.42 1.42L16 5.41V13c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1z'];\nexport var ArrowTopRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-top-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.7 6.3l-5-5C8.5 1.1 8.3 1 8 1s-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L7 4.4V14c0 .6.4 1 1 1s1-.4 1-1V4.4l3.3 3.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7z'];\nvar svgPaths20 = ['M16.7 7.3l-6-6c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-6 6c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L9 4.4V18c0 .5.4 1 1 1s1-.5 1-1V4.4l4.3 4.3c.2.2.4.3.7.3.5 0 1-.4 1-1 0-.3-.1-.5-.3-.7z'];\nexport var ArrowUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrow-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.7 7.3l-4-4c-.2-.2-.4-.3-.7-.3-.6 0-1 .5-1 1 0 .3.1.5.3.7L12.6 7H3.4l2.3-2.3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7s.1.5.3.7l4 4c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 9h9.2l-2.3 2.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z'];\nvar svgPaths20 = ['M19.7 9.3l-5-5c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7L16.6 9H3.4l3.3-3.3c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1-.3 0-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7s.1.5.3.7l5 5c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7L3.4 11h13.2l-3.3 3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l5-5c.2-.2.3-.4.3-.7s-.1-.5-.3-.7z'];\nexport var ArrowsHorizontalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrows-horizontal\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 10c-.3 0-.5.1-.7.3L9 12.6V3.4l2.3 2.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7l-4-4C8.5.1 8.3 0 8 0s-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3L7 3.4v9.2l-2.3-2.3c-.2-.2-.4-.3-.7-.3-.5 0-1 .4-1 1 0 .3.1.5.3.7l4 4c.2.2.4.3.7.3s.5-.1.7-.3l4-4c.2-.2.3-.4.3-.7 0-.6-.4-1-1-1z'];\nvar svgPaths20 = ['M15 13c-.3 0-.5.1-.7.3L11 16.6V3.4l3.3 3.3c.2.2.4.3.7.3.6 0 1-.4 1-1 0-.3-.1-.5-.3-.7l-5-5c-.2-.2-.4-.3-.7-.3s-.5.1-.7.3l-5 5c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3L9 3.4v13.2l-3.3-3.3c-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.5.3.7l5 5c.2.2.4.3.7.3s.5-.1.7-.3l5-5c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1z'];\nexport var ArrowsVerticalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"arrows-vertical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.54 11.18l.01-.02L9.8 8l4.75-3.17-.01-.02c.27-.17.46-.46.46-.81 0-.55-.45-1-1-1-.21 0-.39.08-.54.18l-.01-.02L9 6.13V1c0-.55-.45-1-1-1S7 .45 7 1v5.13L2.55 3.17l-.01.01A.969.969 0 002 3c-.55 0-1 .45-1 1 0 .35.19.64.46.82l-.01.01L6.2 8l-4.75 3.17.01.02c-.27.17-.46.46-.46.81 0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02L7 9.87V15c0 .55.45 1 1 1s1-.45 1-1V9.87l4.45 2.96.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1 0-.35-.19-.64-.46-.82z'];\nvar svgPaths20 = ['M18.52 14.17l.01-.02L11.89 10l6.64-4.15-.01-.02A.97.97 0 0019 5c0-.55-.45-1-1-1-.2 0-.37.07-.52.17l-.01-.02L11 8.2V1c0-.55-.45-1-1-1S9 .45 9 1v7.2L2.53 4.15l-.01.02A.922.922 0 002 4c-.55 0-1 .45-1 1 0 .36.2.66.48.83l-.01.02L8.11 10l-6.64 4.15.01.02A.97.97 0 001 15c0 .55.45 1 1 1 .2 0 .37-.07.52-.17l.01.02L9 11.8V19c0 .55.45 1 1 1s1-.45 1-1v-7.2l6.47 4.04.01-.02c.15.11.32.18.52.18.55 0 1-.45 1-1 0-.36-.2-.66-.48-.83z'];\nexport var AsteriskIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"asterisk\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 14c-3.31 0-6-2.69-6-6 0-1.77.78-3.36 2-4.46V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1h1.74A7.95 7.95 0 000 8c0 4.42 3.58 8 8 8 .55 0 1-.45 1-1s-.45-1-1-1zM8 2a5.9 5.9 0 012.95.81l1.47-1.47A7.893 7.893 0 008 0c-.55 0-1 .45-1 1s.45 1 1 1zm2.71 6.71l5-5a1.003 1.003 0 00-1.42-1.42L10 6.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29s.53-.11.71-.29zM16 8c0-.55-.06-1.08-.16-1.6l-1.87 1.87A5.966 5.966 0 0112 12.45V11c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-1.74A7.95 7.95 0 0016 8z'];\nvar svgPaths20 = ['M10 18c-4.42 0-8-3.58-8-8 0-2.52 1.18-4.76 3-6.22V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1H2c-.55 0-1 .45-1 1s.45 1 1 1h2.06C1.61 3.82 0 6.71 0 10c0 5.52 4.48 10 10 10 .55 0 1-.45 1-1s-.45-1-1-1zm0-16c1.64 0 3.15.49 4.42 1.34l1.43-1.43A9.869 9.869 0 0010 0c-.55 0-1 .45-1 1s.45 1 1 1zm10 8c0-1.13-.2-2.21-.54-3.22L17.84 8.4A7.962 7.962 0 0115 16.22V15c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-2.06c2.45-1.82 4.06-4.71 4.06-8zm0-7a1.003 1.003 0 00-1.71-.71L12 8.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7c.18-.18.29-.43.29-.71z'];\nexport var AutomaticUpdatesIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"automatic-updates\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.36 4.59c-.15-1.13.5-2.01 1.1-2.87L13.43.53c-1.72.88-4.12.65-5.63-.53-1.51 1.18-3.91 1.41-5.63.52l-1.03 1.2c.61.86 1.25 1.74 1.1 2.87-.3 2.29-2.45 4.17-1.32 6.68.45 1.14 1.44 1.9 2.72 2.2 1.56.36 3.52.72 4.16 2.53.64-1.81 2.6-2.16 4.16-2.54 1.28-.3 2.27-1.06 2.72-2.2 1.12-2.5-1.03-4.38-1.32-6.67z'];\nvar svgPaths20 = ['M16.94 5.73c-.19-1.41.62-2.52 1.38-3.59L17.03.65C14.89 1.76 11.88 1.48 10 0 8.12 1.48 5.11 1.76 2.97.65L1.68 2.14c.76 1.07 1.57 2.18 1.38 3.59C2.68 8.59 0 10.94 1.4 14.08c.56 1.43 1.81 2.37 3.4 2.75 1.95.46 4.4.91 5.2 3.17.8-2.26 3.25-2.71 5.2-3.17 1.6-.38 2.84-1.32 3.4-2.75 1.4-3.14-1.28-5.49-1.66-8.35z'];\nexport var BadgeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"badge\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 9H5c-.55 0-1-.45-1-1s.45-1 1-1h6c.55 0 1 .45 1 1s-.45 1-1 1z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm5 11H5c-.55 0-1-.45-1-1s.45-1 1-1h10c.55 0 1 .45 1 1s-.45 1-1 1z'];\nexport var BanCircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"ban-circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.36 6.46l-.62-.14c-.31-1.12-.98-2.15-1.87-2.99l.4-1.77a.438.438 0 00-.49-.56c-.85.09-1.6.42-2.14.98-.84-.32-1.87-.51-2.85-.51-2.49 0-4.63 1.17-5.92 2.89-.18-.04-.36-.09-.53-.09-.76 0-1.34.61-1.34 1.4 0 .56.31 1.03.76 1.26-.05.33-.09.7-.09 1.07 0 1.68.71 3.17 1.83 4.34l-.27 1.59c-.09.56.35 1.07.89 1.07h.58c.45 0 .8-.33.89-.79l.04-.37c.94.42 2 .7 3.16.7 1.11 0 2.23-.23 3.16-.7l.05.37c.09.47.45.79.89.79h.58c.53 0 .98-.51.89-1.07l-.27-1.54c.62-.61 1.07-1.35 1.38-2.15l.8-.19c.4-.09.71-.47.71-.93V7.4c.09-.47-.22-.84-.62-.94zM12 8c-.6 0-1-.7-1-1.5S11.4 5 12 5s1 .7 1 1.5S12.6 8 12 8zM6.21 4.92c-.41.2-.91.04-1.12-.36-.21-.4-.04-.88.37-1.07 1.35-.65 2.73-.65 4.08 0 .41.2.58.68.37 1.07-.21.4-.71.56-1.12.36-.87-.43-1.71-.43-2.58 0z'];\nvar svgPaths20 = ['M19.2 8.02l-.78-.18C18.03 6.4 17.2 5.08 16.08 4l.5-2.28c.11-.42-.22-.78-.61-.72-1.06.12-2 .54-2.67 1.26-1.06-.42-2.34-.66-3.56-.66-3.12 0-5.79 1.5-7.4 3.72-.23-.05-.45-.11-.67-.11C.72 5.21 0 5.98 0 7c0 .72.39 1.32.95 1.62-.06.42-.12.9-.12 1.38 0 2.16.89 4.08 2.28 5.58l-.33 2.04c-.11.72.45 1.38 1.12 1.38h.72c.56 0 1-.42 1.11-1.02l.06-.48c1.17.54 2.5.9 3.95.9 1.39 0 2.78-.3 3.95-.9l.06.48c.11.6.56 1.02 1.11 1.02h.72c.67 0 1.22-.66 1.11-1.38l-.33-1.98c.78-.78 1.34-1.74 1.73-2.76l1-.24c.5-.12.89-.6.89-1.2V9.22c.11-.6-.28-1.08-.78-1.2zM15 10c-.6 0-1-.7-1-1.5S14.4 7 15 7s1 .7 1 1.5-.4 1.5-1 1.5zM7.55 5.83a.99.99 0 01-1.38-.28.99.99 0 01.28-1.38c2.34-1.56 4.77-1.56 7.11 0 .46.31.58.93.28 1.39-.31.46-.93.58-1.39.28-1.67-1.12-3.23-1.12-4.9-.01z'];\nexport var BankAccountIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"bank-account\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 14h2V2H0v12zm6 0h1V2H6v12zm2 0h1V2H8v12zm-5 0h2V2H3v12zM15 2v12h1V2h-1zm-5 12h1V2h-1v12zm2 0h2V2h-2v12z'];\nvar svgPaths20 = ['M6 16.98h2v-14H6v14zm3 0h1v-14H9v14zm-6 0h2v-14H3v14zm-3 0h2v-14H0v14zm16 0h2v-14h-2v14zm-4 0h1v-14h-1v14zm7-14v14h1v-14h-1zm-5 14h1v-14h-1v14z'];\nexport var BarcodeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"barcode\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = [''];\nvar svgPaths20 = [''];\nexport var BlankIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"blank\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.39 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.07-.01-.13-.02-.2.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.13-.39.27-.06.43-.36.5-.63.01-.03.03-.08.05-.12C8.18 7.8 6.94 6.04 6.94 4c0-.32.04-.62.09-.92-.17-.03-.35-.08-.51-.08-.65 0-1.37.2-1.88.59-.5.38-.87.92-1.05 1.51-.04.14-.07.27-.09.41-.09.48-.14 1.23-.14 1.74v.06c-.19.08-.36.27-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.12 15.5.03 16 .03 16h12.96s.15-.5-.22-1.36c-.37-.85-2.18-1.42-3.38-1.95zM11.97 0C9.75 0 7.94 1.79 7.94 4s1.8 4 4.03 4S16 6.21 16 4s-1.8-4-4.03-4zM9.96 4c0-1.1.9-2 2.01-2 .37 0 .72.11 1.02.28l-2.75 2.73c-.17-.3-.28-.64-.28-1.01zm2.01 2c-.37 0-.72-.11-1.02-.28l2.75-2.73c.18.3.28.64.28 1.01.01 1.1-.9 2-2.01 2z'];\nvar svgPaths20 = ['M11.55 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.06-.11.14-.35.17-.62C10.33 9.42 8.92 7.38 8.92 5c0-.3.05-.58.09-.87-.33-.08-.67-.13-.99-.13-.79 0-1.68.25-2.31.73-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.17 1.51-.17 2.14v.08c-.24.09-.45.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59C3 16.56.77 17.26.32 18.31-.15 19.38.04 20 .04 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.69-1.75-4.17-2.41zM14.97 0c-2.78 0-5.03 2.24-5.03 5s2.25 5 5.03 5S20 7.76 20 5s-2.25-5-5.03-5zm-3.03 5c0-1.66 1.35-3 3.02-3 .47 0 .9.11 1.29.3l-4.01 3.99c-.18-.4-.3-.83-.3-1.29zm3.03 3c-.47 0-.9-.11-1.29-.3l4.01-3.99c.19.39.3.82.3 1.29 0 1.66-1.36 3-3.02 3z'];\nexport var BlockedPersonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"blocked-person\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.7 7c.2-.4.3-1 .3-1.5v-.4V5c0-.1 0-.2-.1-.3v-.1C11.4 3.1 10.1 2 8.5 2H4c-.5 0-1 .4-1 1v10c0 .5.4 1 1 1h5c2.2 0 4-1.8 4-4 0-1.2-.5-2.3-1.3-3zM6 5h2c.6 0 1 .4 1 1s-.4 1-1 1H6V5zm3 6H6V9h3c.6 0 1 .4 1 1s-.4 1-1 1z'];\nvar svgPaths20 = ['M14.3 9c.4-.8.7-1.6.7-2.5C15 4 13 2 10.5 2H5c-.6 0-1 .4-1 1v13c0 .6.4 1 1 1h6.5c2.5 0 4.5-2 4.5-4.5 0-1.4-.7-2.7-1.7-3.5zM7 5h3.5c.8 0 1.5.7 1.5 1.5S11.3 8 10.5 8H7V5zm4.5 9H7v-3h4.5c.8 0 1.5.7 1.5 1.5s-.7 1.5-1.5 1.5z'];\nexport var BoldIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"bold\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 1v14c0 .55.45 1 1 1h1V0H3c-.55 0-1 .45-1 1zm11-1h-1v7l-2-2-2 2V0H5v16h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3 1v18c0 .55.45 1 1 1h2V0H4c-.55 0-1 .45-1 1zm14-1h-2v8l-2-2-2 2V0H7v20h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var BookIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"book\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.2.01h-.15C11.03.01 11.02 0 11 0H5c-.02 0-.03.01-.05.01H4.8c-.44 0-.8.37-.8.82v14.75c0 .45.25.56.57.24l2.87-2.94c.31-.32.82-.32 1.13 0l2.87 2.94c.31.32.57.21.57-.24V.83C12 .38 11.64.01 11.2.01z'];\nvar svgPaths20 = ['M6 0c-.55 0-1 .45-1 1v18c0 .55.32.68.71.29L9.3 15.7a.996.996 0 011.41 0l3.59 3.59c.38.39.7.26.7-.29v-8-4.5V1c0-.55-.45-1-1-1H6z'];\nexport var BookmarkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"bookmark\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 10h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm9.93-4.37v-.02L13.94.63C13.78.26 13.42 0 13 0H3c-.42 0-.78.26-.93.63L.08 5.61l-.01.02C.03 5.74 0 5.87 0 6v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.13-.03-.26-.07-.37zM9 2h3.32l1.2 3H9V2zM3.68 2H7v3H2.48l1.2-3zM14 14H2V7h12v7z'];\nvar svgPaths20 = ['M19.89 6.56l-2.99-6h-.01C16.72.23 16.39 0 16 0H4c-.39 0-.72.23-.89.56H3.1l-3 6h.01C.05 6.69 0 6.84 0 7v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7c0-.16-.05-.31-.11-.44zM11 2h4.38l2 4H11V2zM4.62 2H9v4H2.62l2-4zM18 18H2V8h16v10zM8 12h4c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1z'];\nexport var BoxIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"box\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 3.98h-3v-2c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v4h3v-1h2v1h6v-1h2v1h3v-4c0-.55-.45-1-1-1zm-5 0H6v-1h4v1zm3 7h-2v-1H5v1H3v-1H0v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-4h-3v1z'];\nvar svgPaths20 = ['M19 5h-4V2c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v3H1c-.55 0-1 .45-1 1v5h4v-1h2v1h8v-1h2v1h4V6c0-.55-.45-1-1-1zm-6 0H7V3h6v2zm3 8h-2v-1H6v1H4v-1H0v6c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-6h-4v1z'];\nexport var BriefcaseIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"briefcase\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 14a1 1 0 010 2H2a1 1 0 010-2h12zM7.995 3.005c.55 0 1 .45 1 .999v5.584l1.29-1.288a1.002 1.002 0 011.42 1.419l-3 2.996a1.015 1.015 0 01-1.42 0l-3-2.997A1.002 1.002 0 015.705 8.3l1.29 1.29V4.013c0-.55.45-1.009 1-1.009zM14 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zM8 0a1 1 0 110 2 1 1 0 010-2zM5 0a1 1 0 110 2 1 1 0 010-2zM2 0a1 1 0 110 2 1 1 0 010-2z'];\nvar svgPaths20 = ['M18 18a1 1 0 010 2H2a1 1 0 010-2h16zM9.995 3.005c.55 0 1 .45 1 .999v9.584l1.29-1.288a1.002 1.002 0 011.42 1.419l-3 2.996a1.015 1.015 0 01-1.42 0l-3-2.997a1.002 1.002 0 011.42-1.419l1.29 1.29V4.013c0-.55.45-1.009 1-1.009zM16 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zm-3 0a1 1 0 110 2 1 1 0 010-2zM7 0a1 1 0 110 2 1 1 0 010-2zM4 0a1 1 0 110 2 1 1 0 010-2z'];\nexport var BringDataIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"bring-data\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.39 12.41L7.7 6l1.07-1.1c.34-.34-.12-.63.12-1.26.88-2.17 3.41-2.35 3.41-2.35s.36-.37.71-.72C9.74-.81 7.53.53 6.54 1.4L3.12 4.9l-.71.72c-.39.4-.39 1.05 0 1.45l-.7.72c-.39-.4-1.02-.4-1.41 0s-.39 1.05 0 1.45l1.41 1.45c.39.4 1.02.4 1.41 0s.39-1.05 0-1.45l.71-.72c.39.4 1.02.4 1.41 0l.8-.82 6.39 7.67c.82.82 2.14.82 2.96 0 .81-.82.81-2.15 0-2.96z'];\nvar svgPaths20 = ['M19.43 16.67L9.31 7.81l1.47-1.56c.41-.44-.15-.8.15-1.6 1.08-2.76 4.19-2.99 4.19-2.99s.45-.47.87-.92C11.98-1 9.26.7 8.04 1.8L3.83 6.25l-.86.92c-.48.51-.48 1.33 0 1.84l-.87.92c-.48-.51-1.26-.51-1.74 0s-.48 1.33 0 1.84l1.74 1.84c.48.51 1.26.51 1.74 0s.48-1.33 0-1.84l.87-.92c.48.51 1.26.51 1.74 0l1.41-1.49 8.81 10.07c.76.76 2 .76 2.76 0 .76-.76.76-2 0-2.76z'];\nexport var BuildIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"build\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM6 14H4v-2h2v2zm0-3H4V9h2v2zm0-3H4V6h2v2zm3 6H7v-2h2v2zm0-3H7V9h2v2zm0-3H7V6h2v2zm3 6h-2V9h2v5zm0-6h-2V6h2v2zm0-3H4V2h8v3z'];\nvar svgPaths20 = ['M16 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V8h2v2zm4 8H9v-2h2v2zm0-4H9v-2h2v2zm0-4H9V8h2v2zm4 8h-2v-6h2v6zm0-8h-2V8h2v2zm0-4H5V2h10v4z'];\nexport var CalculatorIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"calculator\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 3c.6 0 1-.5 1-1V1c0-.6-.4-1-1-1s-1 .4-1 1v1c0 .5.4 1 1 1zm3-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H6v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h13c.6 0 1-.4 1-1V2c0-.6-.5-1-1-1zM5 13H2v-3h3v3zm0-4H2V6h3v3zm4 4H6v-3h3v3zm0-4H6V6h3v3zm4 4h-3v-3h3v3zm0-4h-3V6h3v3zM4 3c.6 0 1-.5 1-1V1c0-.6-.4-1-1-1S3 .4 3 1v1c0 .5.4 1 1 1z'];\nvar svgPaths20 = ['M15 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zM5 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm13-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H7v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H2c-.5 0-1 .5-1 1v14c0 .5.5 1 1 1h16c.5 0 1-.5 1-1V4c0-.5-.5-1-1-1zM7 17H3v-4h4v4zm0-5H3V8h4v4zm5 5H8v-4h4v4zm0-5H8V8h4v4zm5 5h-4v-4h4v4zm0-5h-4V8h4v4z'];\nexport var CalendarIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"calendar\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 3h-2.59L10.7 1.29A.956.956 0 0010 1H6c-.28 0-.53.11-.71.29L3.59 3H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2.56c1.1 1.22 2.67 2 4.44 2s3.34-.78 4.44-2H15c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zM3 6H1V5h2v1zm5 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M10 8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm9-4h-3.59L13.7 2.29A.956.956 0 0013 2H7c-.28 0-.53.11-.71.29L4.59 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h4.11c1.26 1.24 2.99 2 4.89 2s3.63-.76 4.89-2H19c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zM4 8H2V6h2v2zm6 8c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nexport var CameraIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"camera\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 6.5c0-.28-.22-.5-.5-.5h-7a.495.495 0 00-.37.83l3.5 4c.09.1.22.17.37.17s.28-.07.37-.17l3.5-4c.08-.09.13-.2.13-.33z'];\nvar svgPaths20 = ['M16 7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63z'];\nexport var CaretDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"caret-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.5 4c-.13 0-.24.05-.33.13l-4 3.5c-.1.09-.17.22-.17.37s.07.28.17.37l4 3.5a.495.495 0 00.83-.37v-7c0-.28-.22-.5-.5-.5z'];\nvar svgPaths20 = ['M13 4c-.24 0-.46.1-.63.24l-.01-.01-6 5 .01.01c-.22.19-.37.45-.37.76s.15.57.37.76l-.01.01 6 5 .01-.01c.17.14.39.24.63.24.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z'];\nexport var CaretLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"caret-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 8c0-.15-.07-.28-.17-.37l-4-3.5A.495.495 0 006 4.5v7a.495.495 0 00.83.37l4-3.5c.1-.09.17-.22.17-.37z'];\nvar svgPaths20 = ['M14 10c0-.31-.15-.57-.37-.76l.01-.01-6-5-.01.01C7.46 4.1 7.24 4 7 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1 .24 0 .46-.1.63-.24l.01.01 6-5-.01-.01c.22-.19.37-.45.37-.76z'];\nexport var CaretRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"caret-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.87 9.17s.01 0 0 0l-3.5-4C8.28 5.07 8.15 5 8 5s-.28.07-.37.17l-3.5 4a.495.495 0 00.37.83h7a.495.495 0 00.37-.83z'];\nvar svgPaths20 = ['M15.76 12.37l.01-.01-5-6-.01.01C10.57 6.15 10.31 6 10 6s-.57.15-.76.37l-.01-.01-5 6 .01.01c-.14.17-.24.39-.24.63 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63z'];\nexport var CaretUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"caret-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.97 6.76c-.01-.05-.04-.08-.06-.13-.02-.05-.03-.1-.05-.15.08-.14.14-.3.14-.48 0-.55-.45-1-1-1s-1 .45-1 1c0 .18.06.34.14.48-.03.05-.03.1-.05.15-.02.05-.05.08-.06.13l-2 8c-.13.54.19 1.08.73 1.21a.995.995 0 001.21-.73L7.53 13h.94l.56 2.24a1 1 0 001.94-.48l-2-8zM3.72 1.7C4.1 1.3 4.09.67 3.7.28S2.67-.09 2.28.3c-3.05 3.12-3.05 8.28 0 11.4a.996.996 0 101.43-1.39c-2.28-2.35-2.28-6.27.01-8.61zM11.6 3.2c-.44-.33-1.07-.24-1.4.2-.33.44-.24 1.07.2 1.4.43.32.53 1.96-.04 2.43-.42.35-.48.98-.13 1.41.35.42.98.48 1.41.13 1.59-1.33 1.39-4.5-.04-5.57z', 'M13.72.3c-.39-.4-1.02-.4-1.41-.02s-.41 1.02-.03 1.42c2.29 2.34 2.29 6.26 0 8.6-.39.39-.38 1.03.02 1.41s1.03.38 1.41-.02c3.05-3.11 3.05-8.27.01-11.39zM5.4 7.23c-.57-.47-.47-2.11-.04-2.43.44-.33.53-.96.2-1.4s-.96-.53-1.4-.2c-1.44 1.07-1.63 4.24-.04 5.57.42.35 1.05.3 1.41-.13.35-.42.29-1.06-.13-1.41z'];\nvar svgPaths20 = ['M11.5 8.32c.31-.35.51-.81.51-1.32 0-1.1-.9-2-2-2s-2 .9-2 2c0 .51.2.97.51 1.32L5.06 18.69c-.17.52.11 1.09.63 1.26s1.09-.11 1.26-.63L8.39 15h3.23l1.44 4.32c.17.52.74.81 1.26.63s.81-.74.63-1.26L11.5 8.32zM10.95 13H9.06l.95-2.84.94 2.84zM5.31 10.73a.996.996 0 101.37-1.45c-1.4-1.33-1.28-3.35-.01-4.54.4-.38.43-1.01.05-1.41-.36-.41-1-.43-1.4-.06-2.09 1.95-2.28 5.3-.01 7.46z', 'M4.6 12.2C3 11.1 2 9 2 7c0-2.1.9-3.9 2.6-5.2.5-.3.5-1 .2-1.4-.3-.5-1-.5-1.4-.2C1.2 1.9-.1 4.2 0 7c.1 2.7 1.4 5.3 3.4 6.8.2.1.4.2.6.2.3 0 .6-.1.8-.4.4-.5.3-1.1-.2-1.4zM13.27 10.69c.38.4 1.01.42 1.41.04 2.27-2.16 2.08-5.51-.01-7.46a.996.996 0 10-1.36 1.46c1.28 1.19 1.39 3.21-.01 4.54-.39.39-.41 1.02-.03 1.42z', 'M16.6.2c-.4-.3-1.1-.3-1.4.2-.3.4-.3 1.1.2 1.4C17.1 3.1 18 4.9 18 7c0 2-1 4.1-2.6 5.2-.5.3-.6.9-.2 1.4.2.3.5.4.8.4.2 0 .4-.1.6-.2C18.7 12.3 20 9.7 20 7c.09-2.8-1.2-5.1-3.4-6.8z'];\nexport var CellTowerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cell-tower\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.29 7.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L13 7.59V1c0-.55-.45-1-1-1s-1 .45-1 1v6.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42zM14.5 13h-13c-.83 0-1.5.67-1.5 1.5S.67 16 1.5 16h13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5zM1 5c.28 0 .53-.11.71-.29L3 3.41V10c0 .55.45 1 1 1s1-.45 1-1V3.41L6.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C4.53.11 4.28 0 4 0s-.53.11-.71.29l-3 3A1.003 1.003 0 001 5z'];\nvar svgPaths20 = ['M18 16H2c-1.1 0-2 .9-2 2s.9 2 2 2h16c1.1 0 2-.9 2-2s-.9-2-2-2zM3 5c.28 0 .53-.11.71-.29L5 3.41V13c0 .55.45 1 1 1s1-.45 1-1V3.41L8.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C6.53.11 6.28 0 6 0s-.53.11-.71.29l-3 3A1.003 1.003 0 003 5zm7.29 5.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L15 10.59V1c0-.55-.45-1-1-1s-1 .45-1 1v9.59L11.71 9.3A.965.965 0 0011 9a1.003 1.003 0 00-.71 1.71z'];\nexport var ChangesIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"changes\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V9.4L0 11v4zm6-5.5V15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-5l-1 1-3-1.5zM13 7l-1 1v7c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V7.88c-.26.07-.58.12-1 .12-1.96 0-2-1-2-1zm2-6h-3c-.55 0-1 .45-1 1s.45 1 1 1h.59L8.8 6.78 5.45 5.11v.01C5.31 5.05 5.16 5 5 5s-.31.05-.44.11V5.1l-4 2v.01C.23 7.28 0 7.61 0 8c0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L5 7.12 8.55 8.9v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L14 4.41V5c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M7 11v8c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8l-2 2-4-2zm-7 8c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-8l-6 3v5zM17 7l-3 3v9c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V8.74c-.26.15-.58.26-1 .26-1.92 0-2-2-2-2zm2-6h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59L10.8 8.78 7.45 7.11v.01C7.31 7.05 7.16 7 7 7s-.31.05-.44.11V7.1l-6 3v.01c-.33.17-.56.5-.56.89 0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L7 9.12l3.55 1.78v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L18 4.41V6c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nexport var ChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 10c-1.1 0-2-.9-2-2V3H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1v2a1.003 1.003 0 001.71.71L5.41 13H10c.55 0 1-.45 1-1v-1.17l-.83-.83H6zm9-10H6c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 0H7c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h5.59l3.71 3.71c.17.18.42.29.7.29.55 0 1-.45 1-1v-3h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 13c-1.1 0-2-.9-2-2V4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h1v3a1.003 1.003 0 001.71.71L7.41 16H13c.55 0 1-.45 1-1v-.17L12.17 13H7z'];\nexport var ChatIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chat\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L6 6.59V4c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1V9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L7.41 8z'];\nvar svgPaths20 = ['M8.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L7 8.59V4c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1s1-.45 1-1v-4.59l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L8.41 10z'];\nexport var ChevronBackwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-backward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 5c-.28 0-.53.11-.71.29L8 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 5z'];\nvar svgPaths20 = ['M16 6c-.28 0-.53.11-.71.29L10 11.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 6z'];\nexport var ChevronDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 3c-.55 0-1 .45-1 1v2.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L7.59 8 4.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L9 9.41V12c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M13 3c-.55 0-1 .45-1 1v4.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5.29-5.3V16c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var ChevronForwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-forward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C5.11 7.47 5 7.72 5 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L7.41 8z'];\nvar svgPaths20 = ['M8.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L8.41 10z'];\nexport var ChevronLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42L8.59 8 5.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M13.71 9.29l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var ChevronRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.71 9.29l-4-4C8.53 5.11 8.28 5 8 5s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 7.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nvar svgPaths20 = ['M16.71 12.29l-6-6C10.53 6.11 10.28 6 10 6s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 8.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nexport var ChevronUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"chevron-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8-3.6-8-8-8zm0 14c-3.3 0-6-2.7-6-6s2.7-6 6-6 6 2.7 6 6-2.7 6-6 6z'];\nvar svgPaths20 = ['M10 0C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10S15.5 0 10 0zm0 18c-4.4 0-8-3.6-8-8s3.6-8 8-8 8 3.6 8 8-3.6 8-8 8z'];\nexport var CircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 7c-.28 0-.53.11-.71.29L9 8.59V5c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 7zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nvar svgPaths20 = ['M14 10c-.28 0-.53.11-.71.29L11 12.59V5c0-.55-.45-1-1-1s-1 .45-1 1v7.59L6.71 10.3A.965.965 0 006 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0014 10zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'];\nexport var CircleArrowDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"circle-arrow-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 7H7.41L8.7 5.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C4.11 7.47 4 7.72 4 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L7.41 9H11c.55 0 1-.45 1-1s-.45-1-1-1zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nvar svgPaths20 = ['M15 9H7.41L9.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L7.41 11H15c.55 0 1-.45 1-1s-.45-1-1-1zm-5-9C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'];\nexport var CircleArrowLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"circle-arrow-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.71 4.29a1.003 1.003 0 00-1.42 1.42L8.59 7H5c-.55 0-1 .45-1 1s.45 1 1 1h3.59L7.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nvar svgPaths20 = ['M15.71 9.29l-4-4a1.003 1.003 0 00-1.42 1.42L12.59 9H5c-.55 0-1 .45-1 1s.45 1 1 1h7.59l-2.29 2.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'];\nexport var CircleArrowRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"circle-arrow-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.71 4.29C8.53 4.11 8.28 4 8 4s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L7 7.41V11c0 .55.45 1 1 1s1-.45 1-1V7.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.71-13.71C10.53 4.11 10.28 4 10 4s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L9 7.41V15c0 .55.45 1 1 1s1-.45 1-1V7.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z'];\nexport var CircleArrowUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"circle-arrow-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.02 5c0-1.66-1.34-3-3-3s-3 1.34-3 3a2.996 2.996 0 003.6 2.94C12.1 9.76 11.14 11 10.02 11c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5-3.13 5-7 0-.2-.02-.39-.04-.58.01-.14.04-.28.04-.42zm-11-3c-1.66 0-3 1.34-3 3a2.996 2.996 0 003.6 2.94C4.1 9.76 3.14 11 2.02 11c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5-3.13 5-7 0-.2-.02-.39-.04-.58.01-.14.04-.28.04-.42 0-1.66-1.35-3-3-3z'];\nvar svgPaths20 = ['M4 1C1.79 1 0 2.79 0 5s1.79 4 4 4c.1 0 .2-.01.3-.02C3.82 11.32 2.53 13 1 13c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7-4.48 7-10 0-2.21-1.79-4-4-4zM16 1c-2.21 0-4 1.79-4 4s1.79 4 4 4c.1 0 .2-.01.3-.02C15.82 11.32 14.53 13 13 13c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7-4.48 7-10 0-2.21-1.79-4-4-4z'];\nexport var CitationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"citation\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 8l-1.2 2.796-2.8 1.2 2.8 1.197L12 16l1.2-2.807L16 12l-2.8-1.204zM5 0L3.5 3.5 0 4.995 3.5 6.5 5 10l1.5-3.5L10 5 6.5 3.5z'];\nvar svgPaths20 = ['M7 0L5 5 0 6.998 5 9l2 5 2-5 5-1.995L9 5zM15 10l-1.5 3.496-3.5 1.499 3.5 1.498L15 20l1.5-3.507L20 15l-3.5-1.504z'];\nexport var CleanIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"clean\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 2c0-.55-.45-1-1-1h.22C9.88.4 9.24 0 8.5 0S7.12.4 6.78 1H7c-.55 0-1 .45-1 1v1h5V2zm2 0h-1v2H5V2H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M13 2c0-.55-.45-1-1-1h-.78a1.98 1.98 0 00-3.44 0H7c-.55 0-1 .45-1 1v2h7V2z', 'M16 2h-2v3H5V2H3c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nexport var ClipboardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"clipboard\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 6c-.03 0-.07 0-.1.01A5 5 0 002 7c0 .11.01.22.02.33A3.51 3.51 0 000 10.5C0 12.43 1.57 14 3.5 14H12c2.21 0 4-1.79 4-4s-1.79-4-4-4z'];\nvar svgPaths20 = ['M15 7c-.12 0-.24.03-.36.04C13.83 4.69 11.62 3 9 3 5.69 3 3 5.69 3 9c0 .05.01.09.01.14A3.98 3.98 0 000 13c0 2.21 1.79 4 4 4h11c2.76 0 5-2.24 5-5s-2.24-5-5-5z'];\nexport var CloudIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cloud\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 11c-.28 0-.53.11-.71.29L9 12.59V8c0-.55-.45-1-1-1s-1 .45-1 1v4.59L5.71 11.3A.965.965 0 005 11a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 11zm1-7c-.03 0-.07 0-.1.01A5 5 0 002 5c0 .11.01.22.02.33A3.51 3.51 0 000 8.5c0 1.41.84 2.61 2.03 3.17C2.2 10.17 3.46 9 5 9c.06 0 .13.02.19.02C5.07 8.7 5 8.36 5 8c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .36-.07.7-.19 1.02.06 0 .13-.02.19-.02 1.48 0 2.7 1.07 2.95 2.47A3.964 3.964 0 0016 8c0-2.21-1.79-4-4-4z'];\nvar svgPaths20 = ['M15 4c-.12 0-.24.03-.36.04C13.83 1.69 11.62 0 9 0 5.69 0 3 2.69 3 6c0 .05.01.09.01.14A3.98 3.98 0 000 10c0 2.21 1.79 4 4 4h.78c.55-.61 1.34-1 2.22-1v-2c0-1.66 1.34-3 3-3s3 1.34 3 3v2c.88 0 1.66.38 2.2.98C17.87 13.87 20 11.69 20 9c0-2.76-2.24-5-5-5zm-2 11c-.28 0-.53.11-.71.29L11 16.59V11c0-.55-.45-1-1-1s-1 .45-1 1v5.59L7.71 15.3A.965.965 0 007 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0013 15z'];\nexport var CloudDownloadIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cloud-download\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.71 7.29C8.53 7.11 8.28 7 8 7s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L7 10.41V15c0 .55.45 1 1 1s1-.45 1-1v-4.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM12 4c-.03 0-.07 0-.1.01A5 5 0 002 5c0 .11.01.22.02.33a3.495 3.495 0 00.07 6.37c-.05-.23-.09-.46-.09-.7 0-.83.34-1.58.88-2.12l3-3a2.993 2.993 0 014.24 0l3 3c.54.54.88 1.29.88 2.12 0 .16-.02.32-.05.47C15.17 10.78 16 9.5 16 8c0-2.21-1.79-4-4-4z'];\nvar svgPaths20 = ['M10.71 10.29c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 13.41V19c0 .55.45 1 1 1s1-.45 1-1v-5.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM15 4c-.12 0-.24.03-.36.04C13.83 1.69 11.62 0 9 0 5.69 0 3 2.69 3 6c0 .05.01.09.01.14A3.98 3.98 0 000 10c0 2.21 1.79 4 4 4 0-.83.34-1.58.88-2.12l3-3a2.993 2.993 0 014.24 0l3 3-.01.01c.52.52.85 1.23.87 2.02C18.28 13.44 20 11.42 20 9c0-2.76-2.24-5-5-5z'];\nexport var CloudUploadIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cloud-upload\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.71 7.29l-3-3a1.003 1.003 0 00-1.42 1.42L13.59 8l-2.29 2.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM5 5a1.003 1.003 0 00-1.71-.71l-3 3C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L2.41 8 4.7 5.71c.19-.18.3-.43.3-.71zm4-3c-.48 0-.87.35-.96.81l-2 10c-.01.06-.04.12-.04.19 0 .55.45 1 1 1 .48 0 .87-.35.96-.81l2-10c.01-.06.04-.12.04-.19 0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M6 6a1.003 1.003 0 00-1.71-.71l-4 4C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L2.41 10 5.7 6.71c.19-.18.3-.43.3-.71zm6-4c-.46 0-.83.31-.95.73l-4 14c-.02.09-.05.17-.05.27 0 .55.45 1 1 1 .46 0 .83-.31.95-.73l4-14c.02-.09.05-.17.05-.27 0-.55-.45-1-1-1zm7.71 7.29l-4-4a1.003 1.003 0 00-1.42 1.42l3.3 3.29-3.29 3.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var CodeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"code\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 3h-2V2c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1H7V2c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-8.29 8.29a1.003 1.003 0 01-1.42 1.42l-3-3C2.11 9.53 2 9.28 2 9s.11-.53.29-.71l3-3a1.003 1.003 0 011.42 1.42L4.41 9l2.3 2.29zm7-1.58l-3 3a1.003 1.003 0 01-1.42-1.42L11.59 9l-2.3-2.29a1.003 1.003 0 011.42-1.42l3 3c.18.18.29.43.29.71s-.11.53-.29.71z'];\nvar svgPaths20 = ['M19 5h-2V3c0-.55-.45-1-1-1h-4c-.55 0-1 .45-1 1v2H9V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM8.71 15.29a1.003 1.003 0 01-1.42 1.42l-4-4C3.11 12.53 3 12.28 3 12s.11-.53.29-.71l4-4a1.003 1.003 0 011.42 1.42L5.41 12l3.3 3.29zm8-2.58l-4 4a1.003 1.003 0 01-1.42-1.42l3.3-3.29-3.29-3.29A.965.965 0 0111 8a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71s-.11.53-.29.71z'];\nexport var CodeBlockIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"code-block\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.19 6.39h-1.85c-.11-.37-.27-.71-.45-1.04l1.36-1.36c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0l-1.36 1.36c-.33-.17-.67-.33-1.04-.44V.79c0-.44-.36-.8-.8-.8h-1.6c-.44 0-.8.36-.8.8v1.86c-.39.12-.75.28-1.1.47l-1.3-1.3c-.3-.3-.79-.3-1.09 0L1.82 2.91c-.3.3-.3.79 0 1.09l1.3 1.3c-.2.34-.36.7-.48 1.09H.79c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.85c.11.37.27.71.45 1.04l-1.36 1.36c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.36-1.36c.33.18.67.33 1.04.44v1.86c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.86c.39-.12.75-.28 1.1-.47l1.3 1.3c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1.3-1.3c.19-.35.36-.71.48-1.1h1.85c.44 0 .8-.36.8-.8v-1.6a.816.816 0 00-.81-.79zm-7.2 4.6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'];\nvar svgPaths20 = ['M19 8h-2.31c-.14-.46-.33-.89-.56-1.3l1.7-1.7a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-1.7 1.7c-.41-.22-.84-.41-1.3-.55V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v2.33c-.48.14-.94.34-1.37.58L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.99 0 1.36L3.9 6.62c-.24.44-.44.89-.59 1.38H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2.31c.14.46.33.89.56 1.3L2.17 15a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l1.7-1.7c.41.22.84.41 1.3.55V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.33c.48-.14.94-.35 1.37-.59L15 17.72c.37.37.98.37 1.36 0l1.36-1.36c.37-.37.37-.98 0-1.36l-1.62-1.62c.24-.43.45-.89.6-1.38H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z'];\nexport var CogIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cog\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.29 6.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L8 4.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4zm1.42 2.58C8.53 9.11 8.28 9 8 9s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 11.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z'];\nvar svgPaths20 = ['M9.29 8.71c.18.18.43.29.71.29s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L10 6.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6zm1.42 2.58c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42l5.29-5.3 5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6z'];\nexport var CollapseAllIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"collapse-all\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 13H2V3h2v10zm3 0H5V3h2v10zm7 0H8V3h6v10z'];\nvar svgPaths20 = ['M19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM5 17H2V3h3v14zm4 0H6V3h3v14zm9 0h-8V3h8v14z'];\nexport var ColumnLayoutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"column-layout\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 1H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h2v3a1.003 1.003 0 001.71.71L8.41 12H14c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM3.5 8C2.67 8 2 7.33 2 6.5S2.67 5 3.5 5 5 5.67 5 6.5 4.33 8 3.5 8zm4 0C6.67 8 6 7.33 6 6.5S6.67 5 7.5 5 9 5.67 9 6.5 8.33 8 7.5 8zm4 0c-.83 0-1.5-.67-1.5-1.5S10.67 5 11.5 5s1.5.67 1.5 1.5S12.33 8 11.5 8z'];\nvar svgPaths20 = ['M19 1H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3v4a1.003 1.003 0 001.71.71l4.7-4.71H19c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6 0c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'];\nexport var CommentIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"comment\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99-.01c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1v-14c0-.55-.45-1-1-1zm-3 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm10 0h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm0 3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-4v-2h4v2zm-10-3h-4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M6 8H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm13-6h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 3h-5V3h5v2zM6 14H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zM6 2H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm4-2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm9 14h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm0 3h-5v-2h5v2zm0-9h-5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm0 3h-5V9h5v2z'];\nexport var ComparisonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"comparison\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 8c0 .14-.03.27-.08.39l-3 6.99c-.15.37-.51.62-.92.62s-.77-.25-.92-.61l-3-6.99a1.006 1.006 0 010-.79l3-6.99C7.23.25 7.59 0 8 0s.77.25.92.61l3 6.99c.05.13.08.26.08.4zM8 3.54L6.09 8h3.82L8 3.54z'];\nvar svgPaths20 = ['M15 10c0 .14-.03.28-.09.4l-3.99 8.98-.01.02a.991.991 0 01-1.82 0l-.01-.02-3.99-8.98c-.06-.12-.09-.26-.09-.4s.03-.28.09-.4L9.08.62 9.09.6a.991.991 0 011.82 0l.01.02 3.99 8.98c.06.12.09.26.09.4zm-5-6.54L7.09 10h5.81L10 3.46z'];\nexport var CompassIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"compass\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.93 5.63v-.02L13.94.63C13.78.26 13.42 0 13 0H3c-.42 0-.78.26-.93.63L.08 5.61l-.01.02C.03 5.74 0 5.87 0 6v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.13-.03-.26-.07-.37zM9 2h3.32l1.2 3H9V2zM3.68 2H7v3H2.48l1.2-3zM14 14H2V7h5v2.59l-1.29-1.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L9 9.59V7h5v7z'];\nvar svgPaths20 = ['M19.89 6.56l-2.99-6h-.01C16.72.23 16.39 0 16 0H4c-.39 0-.72.23-.89.56H3.1l-3 6h.01C.05 6.69 0 6.84 0 7v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7c0-.16-.05-.31-.11-.44zM11 2h4.38l2 4H11V2zM4.62 2H9v4H2.62l2-4zM18 18H2V8h7v4.59L6.71 10.3A.965.965 0 006 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L11 12.59V8h7v10z'];\nexport var CompressedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"compressed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l5-5a1.003 1.003 0 00-1.42-1.42l-4.29 4.3L8.7 4.29zm5.22 3.01c.03.23.07.45.07.69 0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6c.81 0 1.59.17 2.3.46l1.5-1.5A7.998 7.998 0 00-.01 7.99c0 4.42 3.58 8 8 8s8-3.58 8-8c0-.83-.13-1.64-.36-2.39l-1.71 1.7z'];\nvar svgPaths20 = ['M9.71 5.29a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7a1.003 1.003 0 00-1.42-1.42L12 7.59l-2.29-2.3zm7.93 2.32c.23.75.36 1.56.36 2.39 0 4.42-3.58 8-8 8s-8-3.58-8-8a7.998 7.998 0 0111.8-7.04l1.46-1.46C13.73.56 11.93 0 10 0 4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-1.4-.29-2.73-.81-3.95l-1.55 1.56z'];\nexport var ConfirmIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"confirm\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 15H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h14c.55 0 1 .45 1 1v12c0 .55-.45 1-1 1zM14 5H2v8h12V5zM4 6c.28 0 .53.11.71.29l2 2c.18.18.29.43.29.71s-.11.53-.29.71l-2 2a1.003 1.003 0 01-1.42-1.42L4.59 9l-1.3-1.29A1.003 1.003 0 014 6zm5 4h3c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1z'];\nvar svgPaths20 = ['M19 19H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1h18c.55 0 1 .45 1 1v16c0 .55-.45 1-1 1zM18 6H2v11h16V6zM4 8c.28 0 .53.11.71.29l2 2c.18.18.29.43.29.71s-.11.53-.29.71l-2 2a1.003 1.003 0 01-1.42-1.42L4.59 11l-1.3-1.29A1.003 1.003 0 014 8zm5 4h3c.55 0 1 .45 1 1s-.45 1-1 1H9c-.55 0-1-.45-1-1s.45-1 1-1z'];\nexport var ConsoleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"console\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.2 6.4h-1.44c-.13-.47-.32-.92-.56-1.34L14.26 4c.31-.31.31-.82 0-1.13l-1.13-1.13a.803.803 0 00-1.13 0L10.94 2.8c-.42-.24-.86-.42-1.34-.56V.8c0-.44-.36-.8-.8-.8H7.2c-.44 0-.8.36-.8.8v1.44c-.5.14-.96.34-1.4.59l-1-1c-.3-.3-.79-.3-1.09 0L1.83 2.91c-.3.3-.3.79 0 1.09l1 1c-.25.44-.45.9-.59 1.4H.8c-.44 0-.8.36-.8.8v1.6c0 .44.36.8.8.8h1.44c.13.47.32.92.56 1.34L1.74 12c-.31.31-.31.82 0 1.13l1.13 1.13c.31.31.82.31 1.13 0l1.06-1.06c.42.24.86.42 1.34.56v1.44c0 .44.36.8.8.8h1.6c.44 0 .8-.36.8-.8v-1.44c.5-.14.96-.33 1.4-.59l1 1c.3.3.79.3 1.09 0l1.09-1.09c.3-.3.3-.79 0-1.09l-1-1c.25-.43.45-.9.59-1.4h1.44c.44 0 .8-.36.8-.8V7.2a.818.818 0 00-.81-.8zM8 12c-2.21 0-4-1.79-4-4s1.79-4 4-4v8z'];\nvar svgPaths20 = ['M19 8h-1.26c-.19-.73-.48-1.42-.85-2.06l.94-.94a.996.996 0 000-1.41l-1.41-1.41a.996.996 0 00-1.41 0l-.94.94c-.65-.38-1.34-.67-2.07-.86V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1.26c-.76.2-1.47.5-2.13.89L5 2.28a.972.972 0 00-1.36 0L2.28 3.64c-.37.38-.37.98 0 1.36l.87.87c-.39.66-.69 1.37-.89 2.13H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h1.26c.19.73.48 1.42.85 2.06l-.94.94a.996.996 0 000 1.41l1.41 1.41c.39.39 1.02.39 1.41 0l.94-.94c.64.38 1.33.66 2.06.85V19c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1.26c.76-.2 1.47-.5 2.13-.89l.88.87c.37.37.98.37 1.36 0l1.36-1.36c.37-.38.37-.98 0-1.36l-.87-.87c.4-.65.7-1.37.89-2.13H19c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-9 7c-2.76 0-5-2.24-5-5s2.24-5 5-5v10z'];\nexport var ContrastIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"contrast\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 8H8v5h5V8zm0-5H8v4h5V3zm2-3H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V2h12v12zM7 3H3v10h4V3z'];\nvar svgPaths20 = ['M17 10h-7v7h7v-7zm0-7h-7v6h7V3zM9 3H3v14h6V3zm10-3H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V2h16v16z'];\nexport var ControlIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"control\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.99 2.95h-14c-.55 0-1 .45-1 1v1h16v-1c0-.55-.45-1-1-1zm-15 10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-6h-16v6zm5.5-2h5c.28 0 .5.22.5.5s-.22.5-.5.5h-5c-.28 0-.5-.22-.5-.5s.23-.5.5-.5zm-3 0h1c.28 0 .5.22.5.5s-.22.5-.5.5h-1c-.28 0-.5-.22-.5-.5s.23-.5.5-.5z'];\nvar svgPaths20 = ['M19 3H1c-.55 0-1 .45-1 1v2h20V4c0-.55-.45-1-1-1zM0 16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V8H0v8zm6.5-2h7c.28 0 .5.22.5.5s-.22.5-.5.5h-7c-.28 0-.5-.22-.5-.5s.22-.5.5-.5zm-4 0h2c.28 0 .5.22.5.5s-.22.5-.5.5h-2c-.28 0-.5-.22-.5-.5s.22-.5.5-.5z'];\nexport var CreditCardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"credit-card\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6l3 2 3-4 3 4 3-2-1 6H3L2 6zm6-5a1 1 0 110 2 1 1 0 010-2zM1 3a1 1 0 110 2 1 1 0 010-2zm14 0a1 1 0 110 2 1 1 0 010-2zM3 13h10v2H3v-2z'];\nvar svgPaths20 = ['M2 8l4 2 4-5 4 5 4-2-1 7H3L2 8zm8-6a1 1 0 110 2 1 1 0 010-2zM1 5a1 1 0 110 2 1 1 0 010-2zm18 0a1 1 0 110 2 1 1 0 010-2zM3 16h14v2H3v-2z'];\nexport var CrownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"crown\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.194 3.54L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l5.698 3.255zm.75.71a1 1 0 01.056.33v6.84a1 1 0 01-.504.868L8.5 15.714V8.277l6.444-4.027zm-13.888 0L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33z'];\nvar svgPaths20 = ['M1.953 4.481l7.41-4.02c.394-.215.88-.215 1.275 0l7.409 4.02L10 9.22 1.953 4.48zm-.817.68L9.5 10.085v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547zm17.728 0c.088.166.136.353.136.546v8.35c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281l8.364-4.926z'];\nexport var CubeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cube\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 2h1a1 1 0 010 2h-1v1a1 1 0 01-2 0V4h-1a1 1 0 010-2h1V1a1 1 0 012 0v1zM9.136.65a3.001 3.001 0 00.992 5.222c.018.058.038.115.059.172L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l.64.365zM15 7.235v4.184a1 1 0 01-.504.868L8.5 15.714V8.277l2.187-1.367A2.994 2.994 0 0013 8c.768 0 1.47-.289 2-.764zM1.056 4.25L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33z'];\nvar svgPaths20 = ['M17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2zm-3.969 4.435L10 9.22 1.953 4.48l7.41-4.02c.394-.215.88-.215 1.275 0l1.33.721A3.001 3.001 0 0013 7c0 .148.01.293.031.435zm.319.972A3 3 0 0019 7v7.057c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281l2.85-1.679zM1.136 5.16L9.5 10.086v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547z'];\nexport var CubeAddIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cube-add\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.365 5.933L8 7.41 1.806 3.54 7.504.283a1 1 0 01.992 0l.64.365a3.001 3.001 0 001.228 5.283zM15 6v5.42a1 1 0 01-.504.868L8.5 15.714V8.277L12.143 6H15zM1.056 4.25L7.5 8.277v7.437l-5.996-3.426A1 1 0 011 11.42V4.58a1 1 0 01.056-.33zM11 2h4a1 1 0 010 2h-4a1 1 0 010-2z'];\nvar svgPaths20 = ['M11.968 1.182A3.001 3.001 0 0013 7h.77L10 9.22 1.953 4.48l7.41-4.02c.394-.215.88-.215 1.275 0l1.33.721zM19 7v7.057c0 .438-.247.842-.648 1.06l-7.714 4.186c-.045.024-.091.046-.138.064v-9.281L15.74 7H19zM1.136 5.16L9.5 10.086v9.281a1.316 1.316 0 01-.138-.064l-7.714-4.186A1.211 1.211 0 011 14.057v-8.35c0-.193.048-.38.136-.547zM13 3h6a1 1 0 010 2h-6a1 1 0 010-2z'];\nexport var CubeRemoveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cube-remove\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12H3.12l1.81-1.39c1.73 1.01 5.53-.03 9.08-2.61l-1.22-1.5C10.3 8.3 7.86 9.37 6.65 9.29L14.3 3.4l-.6-.8-7.83 6.03c-.01-1.07 1.8-3.19 4.47-5.13L9.12 2C5.38 4.7 3.34 8.1 4.25 9.87L2 11.6V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16H3.02l2.14-1.74c2.25 1.7 7.33.46 11.83-2.99l-1.29-1.5c-3.56 2.74-7.31 4.03-8.93 3.19l10.55-8.57-.63-.78-10.59 8.6c-.64-1.64 1.46-4.91 5.09-7.7L9.9 3.01c-4.6 3.54-6.91 8.12-5.41 10.51L2 15.54V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var CurvedRangeChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"curved-range-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 2s.71-1.29 0-2L8.66 5.07l1.05 1.32L13 2zm.07 8c-.42 0-.82.09-1.18.26L3.31 0c-.69.71 0 2 0 2l3.68 5.02-2.77 3.24A2.996 2.996 0 000 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-.46-.11-.89-.29-1.27L8.1 8.54l2.33 3.19c-.18.39-.29.82-.29 1.27 0 1.66 1.31 3 2.93 3S16 14.66 16 13s-1.31-3-2.93-3zM3 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10.07 0c-.54 0-.98-.45-.98-1s.44-1 .98-1 .98.45.98 1-.44 1-.98 1z'];\nvar svgPaths20 = ['M16 2s.72-1.28 0-2l-5.29 6.25 1.28 1.54L16 2zm.08 10c-.55 0-1.07.12-1.54.32L4.31 0c-.7.72 0 2 0 2l4.45 6.56-3.19 3.77C5.09 12.12 4.56 12 4 12c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.65-.17-1.26-.45-1.8l2.54-3.67 2.49 3.67c-.27.54-.44 1.15-.44 1.8 0 2.21 1.76 4 3.92 4 2.17 0 3.92-1.79 3.92-4 .02-2.21-1.74-4-3.9-4zM4 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.08 0c-1.08 0-1.96-.9-1.96-2s.88-2 1.96-2 1.96.9 1.96 2-.88 2-1.96 2z'];\nexport var CutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cut\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-2 6c0 1.1.9 2 2 2s2-.9 2-2c0-.53-2-5-2-5s-2 4.47-2 5zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm4-9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z'];\nvar svgPaths20 = ['M6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM4 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-5C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm6-9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-8 5c0 1.1.9 2 2 2s2-.9 2-2c0-.33-2-8-2-8s-2 7.67-2 8zm6-9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z'];\nexport var DashboardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"dashboard\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1.067 0C.477 0 0 .478 0 1.067V3.2c0 .59.478 1.067 1.067 1.067h2.24a5.342 5.342 0 002.9 3.734 5.337 5.337 0 00-2.9 3.733h-2.24C.477 11.733 0 12.21 0 12.8v2.133C0 15.523.478 16 1.067 16H6.4c.59 0 1.067-.478 1.067-1.067V12.8c0-.59-.478-1.067-1.067-1.067H4.401a4.27 4.27 0 013.92-3.194l.212-.006V9.6c0 .59.478 1.067 1.067 1.067h5.333c.59 0 1.067-.478 1.067-1.067V6.4c0-.59-.478-1.067-1.067-1.067H9.6c-.59 0-1.067.478-1.067 1.067v1.067a4.268 4.268 0 01-4.132-3.2H6.4c.59 0 1.067-.478 1.067-1.067V1.067C7.467.477 6.989 0 6.4 0H1.067z'];\nvar svgPaths20 = ['M1.053 0C.47 0 0 .471 0 1.053V4.21c0 .58.471 1.052 1.053 1.052h3.275a6.332 6.332 0 003.728 4.738 6.33 6.33 0 00-3.728 4.737l-3.275-.001C.47 14.737 0 15.208 0 15.789v3.158C0 19.53.471 20 1.053 20h7.435c.581 0 1.053-.471 1.053-1.053V15.79c0-.58-.472-1.052-1.053-1.052H5.406a5.293 5.293 0 015.195-4.21v2.105c0 .58.471 1.052 1.052 1.052h7.294c.582 0 1.053-.471 1.053-1.052V7.368c0-.58-.471-1.052-1.053-1.052h-7.294c-.581 0-1.052.471-1.052 1.052v2.106a5.293 5.293 0 01-5.194-4.21h3.081c.581 0 1.053-.472 1.053-1.053V1.053C9.54.47 9.069 0 8.488 0H1.053z'];\nexport var DataLineageIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"data-lineage\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 4c3.31 0 6-.9 6-2s-2.69-2-6-2C4.68 0 2 .9 2 2s2.68 2 6 2zm-6-.48V8c0 1.1 2.69 2 6 2s6-.9 6-2V3.52C12.78 4.4 10.56 5 8 5s-4.78-.6-6-1.48zm0 6V14c0 1.1 2.69 2 6 2s6-.9 6-2V9.52C12.78 10.4 10.56 11 8 11s-4.78-.6-6-1.48z'];\nvar svgPaths20 = ['M2.01 5.1v5.4c0 1.38 3.58 2.5 8 2.5s8-1.12 8-2.5V5.1c-1.49 1.13-4.51 1.9-8 1.9-3.48 0-6.5-.77-8-1.9zm8 .9c4.42 0 8-1.12 8-2.5s-3.58-2.5-8-2.5-8 1.12-8 2.5S5.6 6 10.01 6zm-8 6.1v5.4c0 1.38 3.58 2.5 8 2.5s8-1.12 8-2.5v-5.4c-1.49 1.13-4.51 1.9-8 1.9-3.48 0-6.5-.77-8-1.9z'];\nexport var DatabaseIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"database\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.99 4.99a1.003 1.003 0 00-1.71-.71l-2.29 2.3L5.7 4.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2.29 2.29-2.29 2.29A1.003 1.003 0 005.7 11.7l2.29-2.29 2.29 2.29a1.003 1.003 0 001.42-1.42L9.41 7.99 11.7 5.7c.18-.18.29-.43.29-.71zm-4-5c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z'];\nvar svgPaths20 = ['M15 6a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10l3.29-3.29c.19-.18.3-.43.3-.71zm-5-6C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'];\nexport var DeleteIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"delete\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0L0 16h16L8 0zM7 5l5 10H2L7 5z'];\nvar svgPaths20 = ['M10 0L0 20h20L10 0zM9 6l6 12H3L9 6z'];\nexport var DeltaIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"delta\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.08 6.67h-.84c.24-.92.56-1.6.96-2.03.24-.27.48-.4.71-.4.05 0 .08.01.11.04s.04.06.04.1c0 .04-.03.11-.1.21-.06.1-.1.2-.1.29 0 .13.05.24.15.33.1.09.23.14.39.14.17 0 .31-.06.42-.17A.58.58 0 008 4.73c0-.22-.09-.39-.26-.53-.17-.13-.44-.2-.81-.2-.59 0-1.12.16-1.59.48-.48.32-.93.85-1.36 1.59-.15.26-.29.42-.42.49s-.35.11-.64.1l-.19.65h.81l-1.19 4.37c-.2.72-.33 1.16-.4 1.33-.1.24-.26.45-.46.62-.08.07-.18.1-.3.1-.03 0-.06-.01-.08-.03l-.03-.04c0-.02.03-.06.09-.11.06-.06.09-.14.09-.26 0-.13-.05-.23-.14-.32a.6.6 0 00-.4-.13c-.21 0-.38.05-.51.16s-.21.25-.21.4c0 .16.08.3.23.42.16.12.4.18.74.18.53 0 .99-.13 1.4-.39.41-.26.76-.65 1.07-1.19.3-.54.62-1.4.94-2.59l.68-2.53h.82l.2-.63zM15 0H8c-.55 0-1 .45-1 1v2h2V2h5v12H9v-1H7v2c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM8.3 9.94c.18.52.33.89.46 1.13.13.24.28.4.44.51.17.1.37.16.62.16.24 0 .49-.08.74-.25.33-.21.66-.58 1.01-1.09l-.21-.11c-.23.31-.41.5-.52.57a.44.44 0 01-.26.07c-.12 0-.24-.07-.36-.21-.2-.24-.46-.91-.8-2 .3-.49.55-.81.75-.96.15-.11.3-.16.47-.16.06 0 .17.02.34.06.16.04.31.06.43.06.17 0 .31-.06.43-.17.1-.11.16-.25.16-.43 0-.19-.06-.33-.17-.44-.12-.11-.28-.16-.49-.16-.19 0-.37.04-.54.13-.17.09-.39.27-.65.56-.2.21-.48.58-.87 1.11-.15-.66-.41-1.26-.78-1.81l-2.05.33-.04.21c.15-.03.28-.04.39-.04.2 0 .37.08.5.25.21.26.5 1.03.88 2.33-.29.37-.49.61-.6.72-.18.18-.33.3-.44.36-.09.04-.19.07-.3.07-.09 0-.23-.04-.42-.13a.866.866 0 00-.36-.09c-.2 0-.36.06-.49.18a.59.59 0 00-.19.46c0 .17.06.32.18.43.12.11.28.16.48.16.2 0 .38-.04.55-.11.17-.08.39-.24.65-.49.24-.27.6-.66 1.06-1.21z'];\nvar svgPaths20 = ['M7.1 8.2h-.99c.28-1.11.66-1.92 1.12-2.43.28-.32.56-.48.83-.48.05 0 .1.02.13.05.03.03.05.07.05.12 0 .04-.04.13-.11.25a.64.64 0 00-.12.35c0 .15.06.28.18.39.12.11.27.16.45.16.2 0 .36-.07.49-.2s.2-.31.2-.54c0-.26-.1-.47-.3-.63-.19-.16-.51-.24-.95-.24-.68 0-1.3.19-1.85.58-.56.38-1.09 1.02-1.59 1.91-.17.3-.34.5-.49.59-.15.08-.4.13-.74.12l-.23.77h.95l-1.39 5.24c-.23.86-.39 1.39-.47 1.59-.12.29-.3.54-.54.75-.1.08-.21.12-.35.12-.04 0-.07-.01-.1-.03l-.03-.04c0-.02.03-.07.1-.13.07-.07.1-.17.1-.31 0-.15-.05-.28-.16-.38-.11-.1-.27-.15-.47-.15-.25 0-.44.07-.59.2-.15.12-.23.28-.23.46 0 .19.09.36.27.5.19.14.47.21.86.21.61 0 1.16-.15 1.63-.46.48-.31.89-.78 1.25-1.43.35-.64.72-1.68 1.09-3.11l.8-3.03h.96l.24-.77zM19 0h-9c-.55 0-1 .45-1 1v3h2V2h7v16h-7v-2H9v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-8.79 13.49c.15.28.32.49.52.61.19.12.44.19.73.19.28 0 .57-.1.86-.3.38-.25.77-.69 1.17-1.31l-.25-.14c-.27.37-.48.6-.61.69-.09.06-.19.09-.31.09-.14 0-.28-.09-.42-.26-.23-.29-.54-1.09-.93-2.4.35-.59.64-.97.87-1.15.17-.13.35-.2.55-.2.07 0 .2.03.39.08s.36.08.5.08c.2 0 .37-.07.5-.2.15-.14.22-.31.22-.52 0-.22-.07-.4-.2-.53s-.33-.2-.58-.2c-.22 0-.43.05-.63.15-.2.1-.45.32-.75.67-.23.25-.56.7-1.01 1.33a6.52 6.52 0 00-.91-2.15l-2.39.39-.05.25c.18-.03.33-.05.45-.05.24 0 .43.1.59.3.25.31.59 1.24 1.02 2.8-.34.44-.58.73-.7.87-.21.22-.38.36-.52.43-.1.05-.22.08-.35.08-.1 0-.26-.05-.49-.16a1.01 1.01 0 00-.42-.11c-.23 0-.42.07-.57.22-.15.14-.23.33-.23.55 0 .21.07.38.21.51.14.13.33.2.56.2.23 0 .44-.05.64-.14.2-.09.45-.29.75-.59s.72-.78 1.25-1.43c.21.61.39 1.06.54 1.35z'];\nexport var DeriveColumnIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"derive-column\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v10c0 .55.45 1 1 1h4.75l-.5 2H4c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-1.25l-.5-2H15c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 10H2V2h12v8z'];\nvar svgPaths20 = ['M19 0H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h5.67l-.5 3H5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1h-1.17l-.5-3H19c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 13H2V2h16v11z'];\nexport var DesktopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"desktop\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 8v3h-2V9H9v2H7V9H3v2H1V8a1 1 0 011-1h5V5h2v2h5a1 1 0 011 1zM1 12h2a1 1 0 011 1v2a1 1 0 01-1 1H1a1 1 0 01-1-1v-2a1 1 0 011-1zm12 0h2a1 1 0 011 1v2a1 1 0 01-1 1h-2a1 1 0 01-1-1v-2a1 1 0 011-1zm-6 0h2a1 1 0 011 1v2a1 1 0 01-1 1H7a1 1 0 01-1-1v-2a1 1 0 011-1zM7 0h2a1 1 0 011 1v2a1 1 0 01-1 1H7a1 1 0 01-1-1V1a1 1 0 011-1z'];\nvar svgPaths20 = ['M19 10v5h-2v-4h-6v4H9v-4H3v4H1v-5a1 1 0 011-1h7V5h2v4h7a1 1 0 011 1zM1 16h2a1 1 0 011 1v2a1 1 0 01-1 1H1a1 1 0 01-1-1v-2a1 1 0 011-1zm16 0h2a1 1 0 011 1v2a1 1 0 01-1 1h-2a1 1 0 01-1-1v-2a1 1 0 011-1zm-8 0h2a1 1 0 011 1v2a1 1 0 01-1 1H9a1 1 0 01-1-1v-2a1 1 0 011-1zM9 0h2a1 1 0 011 1v2a1 1 0 01-1 1H9a1 1 0 01-1-1V1a1 1 0 011-1z'];\nexport var DiagramTreeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"diagram-tree\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 1.99l-16 6 16 6-4-6z'];\nvar svgPaths20 = ['M20 3.02l-20 7 20 7-5-7z'];\nexport var DirectionLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"direction-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 7.99l-16-6 4 6-4 6z'];\nvar svgPaths20 = ['M20 10.02l-20-7 5 7-5 7z'];\nexport var DirectionRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"direction-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm-6 8c0-3.31 2.69-6 6-6 1.3 0 2.49.42 3.47 1.12l-8.35 8.35c-.7-.98-1.12-2.17-1.12-3.47zm6 6c-1.3 0-2.49-.42-3.47-1.12l8.35-8.35c.7.98 1.12 2.17 1.12 3.47 0 3.32-2.68 6-6 6z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM2 10c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L3.69 14.9A7.902 7.902 0 012 10zm8 8c-1.85 0-3.55-.63-4.9-1.69L16.31 5.1A7.902 7.902 0 0118 10c0 4.42-3.58 8-8 8z'];\nexport var DisableIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"disable\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5L9 0zm3 14H4V2h4v4h4v8z'];\nvar svgPaths20 = ['M11.98 0h-8c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V6l-6-6zm4 18h-11V2h6v5h5v11z'];\nexport var DocumentIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"document\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 12c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1h1.59L1.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L6 10.41V12zm4-12H4c-.55 0-1 .45-1 1v4h2V2h4v4h4v8H5.24l-1.8 1.8c.16.12.35.2.56.2h10c.55 0 1-.45 1-1V5l-5-5z'];\nvar svgPaths20 = ['M8 15c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1h2.59L1.3 16.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 12.41V15zm5-15H5c-.55 0-1 .45-1 1v6h2V2h6v5h5v11H6v-.76L4.04 19.2c.1.45.48.8.96.8h13c.55 0 1-.45 1-1V6l-6-6z'];\nexport var DocumentOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"document-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 14H2V2h4v4h1c0-.83.36-1.55.91-2.09l-.03-.03.9-.9C8.3 2.45 8 1.77 8 1L7 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V8.22c-.53.48-1.23.78-2 .78v5zm5-14h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 3.41V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M14.09 10.09c-.31.31-.67.57-1.09.72V18H2V2h6v5h1.18c.15-.42.39-.8.7-1.11v-.01l2.45-2.45c-.42-.29-.78-.65-1.01-1.11L9 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V9.24l-.88.88-.03-.03zM19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var DocumentShareIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"document-share\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.83 9.51c-.1-.3-.25-.58-.45-.84s-.45-.49-.75-.7c-.3-.2-.65-.36-1.05-.48-.16-.04-.43-.11-.8-.2-.35-.09-.73-.18-1.12-.28-.39-.1-.74-.19-1.06-.27-.31-.08-.49-.12-.54-.13-.43-.12-.78-.29-1.05-.52-.27-.23-.4-.55-.4-.95 0-.29.07-.53.21-.72.14-.19.32-.34.54-.46.22-.11.46-.19.72-.24.26-.05.52-.08.77-.08.74 0 1.35.15 1.83.46.48.3.75.83.81 1.56h2.14c0-.6-.13-1.13-.38-1.58-.25-.45-.59-.84-1.02-1.15-.43-.31-.93-.54-1.49-.7-.24-.06-.49-.1-.75-.14V1c0-.55-.45-1-1-1s-1 .45-1 1v1.08c-.23.03-.46.07-.68.13-.54.13-1.02.34-1.44.61-.42.28-.76.63-1.02 1.05-.26.43-.39.93-.39 1.5 0 .3.04.59.13.88.09.29.23.56.44.82.21.26.48.49.83.7.35.21.79.38 1.31.51.85.21 1.56.38 2.14.52.58.13 1.08.28 1.52.42.25.09.48.23.69.44.21.21.32.53.32.97 0 .21-.05.42-.14.63-.09.21-.24.39-.45.55-.21.16-.47.29-.81.39-.33.1-.73.15-1.2.15-.43 0-.84-.05-1.21-.14-.37-.09-.7-.24-.99-.43-.29-.2-.51-.45-.67-.76-.16-.31-.24-.68-.24-1.12H3c.01.71.15 1.32.43 1.84.27.52.64.94 1.1 1.27.46.33.99.58 1.61.74.27.07.56.12.85.16V15c0 .55.45 1 1 1s1-.45 1-1v-1.05c.3-.03.61-.08.9-.15.58-.13 1.1-.34 1.56-.63.46-.29.83-.66 1.11-1.11.28-.45.42-1 .42-1.64 0-.31-.05-.61-.15-.91z'];\nvar svgPaths20 = ['M15.57 11.19c-.27-.51-.63-.93-1.07-1.26-.44-.33-.95-.6-1.51-.79-.56-.2-1.14-.36-1.72-.5-.6-.14-1.19-.26-1.75-.38-.57-.13-1.07-.27-1.51-.44-.44-.17-.8-.38-1.07-.63s-.41-.59-.41-1c0-.33.09-.6.28-.81.19-.21.42-.36.69-.47.27-.11.57-.18.88-.22.31-.04.58-.06.8-.06.71 0 1.35.14 1.9.41.55.27.91.81 1.06 1.62h3.36c-.09-.84-.32-1.56-.69-2.16-.37-.6-.83-1.08-1.38-1.45-.56-.37-1.18-.64-1.86-.81-.19-.05-.38-.07-.57-.1V1c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v1.1c-.22.03-.43.05-.66.1-.73.13-1.39.37-1.98.71-.6.34-1.09.8-1.47 1.35-.39.56-.58 1.25-.58 2.08 0 .76.13 1.41.4 1.93.26.52.62.95 1.06 1.28.44.33.94.6 1.5.79.55.2 1.13.36 1.74.5.58.14 1.16.26 1.72.38s1.07.26 1.51.43c.44.17.8.39 1.09.66.28.27.43.63.45 1.06.02.43-.08.78-.3 1.04-.22.26-.49.47-.83.6-.34.14-.7.23-1.09.28-.39.05-.73.07-1.03.07-.87 0-1.61-.2-2.23-.59-.62-.39-.98-1.08-1.07-2.06H3c.02.9.19 1.68.52 2.34.33.66.78 1.21 1.35 1.65.57.44 1.25.77 2.03.98.35.1.71.16 1.08.21V19c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-1.13c.25-.04.5-.07.76-.13.77-.18 1.47-.46 2.1-.85.63-.39 1.14-.9 1.54-1.53.4-.63.59-1.39.59-2.29.01-.75-.13-1.37-.4-1.88z'];\nexport var DollarIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"dollar\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 5a3 3 0 100 6 3 3 0 100-6z'];\nvar svgPaths20 = ['M10 6a4 4 0 100 8 4 4 0 100-8z'];\nexport var DotIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"dot\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.71 7.29l-3-3A1.003 1.003 0 009 5v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM6 4c-.28 0-.53.11-.71.29l-3 3C2.11 7.47 2 7.72 2 8c0 .28.11.53.29.71l3 3A1.003 1.003 0 007 11V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M8 4c-.24 0-.46.1-.63.24l-.01-.01-6 5 .01.01c-.22.19-.37.45-.37.76s.15.57.37.76l-.01.01 6 5 .01-.01c.17.14.39.24.63.24.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm11 6c0-.31-.15-.57-.37-.76l.01-.01-6-5-.01.01C12.46 4.1 12.24 4 12 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1 .24 0 .46-.1.63-.24l.01.01 6-5-.01-.01c.22-.19.37-.45.37-.76z'];\nexport var DoubleCaretHorizontalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-caret-horizontal\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 7h6a1.003 1.003 0 00.71-1.71l-3-3C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-3 3A1.003 1.003 0 005 7zm6 2H5a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0011 9z'];\nvar svgPaths20 = ['M5 9h10c.55 0 1-.45 1-1 0-.24-.1-.46-.24-.63l.01-.01-5-6-.01.01C10.57 1.15 10.31 1 10 1s-.57.15-.76.37l-.01-.01-5 6 .01.01C4.1 7.54 4 7.76 4 8c0 .55.45 1 1 1zm10 2H5c-.55 0-1 .45-1 1 0 .24.1.46.24.63l-.01.01 5 6 .01-.01c.19.22.45.37.76.37s.57-.15.76-.37l.01.01 5-6-.01-.01c.14-.17.24-.39.24-.63 0-.55-.45-1-1-1z'];\nexport var DoubleCaretVerticalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-caret-vertical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.29 8.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4zM12 8c-.28 0-.53.11-.71.29L8 11.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 8z'];\nvar svgPaths20 = ['M9.29 10.71c.18.18.43.29.71.29s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L10 8.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6zM16 9c-.28 0-.53.11-.71.29L10 14.59l-5.29-5.3a1.003 1.003 0 00-1.42 1.42l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 9z'];\nexport var DoubleChevronDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-chevron-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4.41 8L7.7 4.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C2.11 7.47 2 7.72 2 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.41 8zm5 0l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C7.11 7.47 7 7.72 7 8c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L9.41 8z'];\nvar svgPaths20 = ['M5.41 10l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L5.41 10zm6 0l5.29-5.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-6 6c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l6 6a1.003 1.003 0 001.42-1.42L11.41 10z'];\nexport var DoubleChevronLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-chevron-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 8c0-.28-.11-.53-.29-.71l-4-4a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4C8.89 8.53 9 8.28 9 8zm4.71-.71l-4-4a1.003 1.003 0 00-1.42 1.42L11.59 8 8.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M11 10c0-.28-.11-.53-.29-.71l-6-6a1.003 1.003 0 00-1.42 1.42L8.59 10 3.3 15.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71zm5.71-.71l-6-6a1.003 1.003 0 00-1.42 1.42l5.3 5.29-5.29 5.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var DoubleChevronRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-chevron-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 8c.28 0 .53-.11.71-.29L8 4.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-4 4A1.003 1.003 0 004 8zm4.71-.71C8.53 7.11 8.28 7 8 7s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4z'];\nvar svgPaths20 = ['M4 11c.28 0 .53-.11.71-.29L10 5.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6A.997.997 0 0010 3c-.28 0-.53.11-.71.29l-6 6A1.003 1.003 0 004 11zm6.71-1.71A.997.997 0 0010 9c-.28 0-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42l5.29-5.3 5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6z'];\nexport var DoubleChevronUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"double-chevron-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.86 7h4.05C15.45 3.39 12.61.52 9 .07v4.07A4 4 0 0111.86 7zM12 8c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4V0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8h-4z'];\nvar svgPaths20 = ['M16 10c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6V0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10h-4zm-.09-1h4.04C19.48 4.28 15.72.52 11 .05V4.1A5.98 5.98 0 0115.91 9z'];\nexport var DoughnutChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"doughnut-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM11.7 9.7l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-3-3A1.003 1.003 0 015.7 8.28l1.29 1.29V3.99c0-.55.45-1 1-1s1 .45 1 1v5.59l1.29-1.29a1.003 1.003 0 011.71.71c0 .27-.11.52-.29.7z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4.71 11.71l-4 4c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-4-4a1.003 1.003 0 011.42-1.42L9 12.59V5c0-.55.45-1 1-1s1 .45 1 1v7.59l2.29-2.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71z'];\nexport var DownloadIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"download\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm8-2c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-4-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z'];\nvar svgPaths20 = ['M7.5 11c-.83 0-1.5.67-1.5 1.5S6.67 14 7.5 14 9 13.33 9 12.5 8.33 11 7.5 11zm-5-5C1.67 6 1 6.67 1 7.5S1.67 9 2.5 9 4 8.33 4 7.5 3.33 6 2.5 6zm0 5c-.83 0-1.5.67-1.5 1.5S1.67 14 2.5 14 4 13.33 4 12.5 3.33 11 2.5 11zm15-2c.83 0 1.5-.67 1.5-1.5S18.33 6 17.5 6 16 6.67 16 7.5 16.67 9 17.5 9zm-5 2c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm5 0c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-10-5C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6zm5 0c-.83 0-1.5.67-1.5 1.5S11.67 9 12.5 9 14 8.33 14 7.5 13.33 6 12.5 6z'];\nexport var DragHandleHorizontalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"drag-handle-horizontal\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-6c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4 8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z'];\nvar svgPaths20 = ['M7.5 6C6.67 6 6 6.67 6 7.5S6.67 9 7.5 9 9 8.33 9 7.5 8.33 6 7.5 6zm0 5c-.83 0-1.5.67-1.5 1.5S6.67 14 7.5 14 9 13.33 9 12.5 8.33 11 7.5 11zm0 5c-.83 0-1.5.67-1.5 1.5S6.67 19 7.5 19 9 18.33 9 17.5 8.33 16 7.5 16zm5-12c.83 0 1.5-.67 1.5-1.5S13.33 1 12.5 1 11 1.67 11 2.5 11.67 4 12.5 4zm-5-3C6.67 1 6 1.67 6 2.5S6.67 4 7.5 4 9 3.33 9 2.5 8.33 1 7.5 1zm5 10c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-10c-.83 0-1.5.67-1.5 1.5S11.67 9 12.5 9 14 8.33 14 7.5 13.33 6 12.5 6z'];\nexport var DragHandleVerticalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"drag-handle-vertical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.9 11c-.3 0-.5.1-.7.3l-3 3c-.2.2-.3.4-.3.7 0 .6.5 1 1 1 .3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7 0-.5-.4-1-1-1zm-1-1v-.2l-1-5c-.1-.3-.3-.6-.6-.7l-11-4-.3.3 5.8 5.8c.2-.1.4-.2.6-.2.8 0 1.5.7 1.5 1.5S8.3 9 7.4 9s-1.5-.7-1.5-1.5c0-.2.1-.4.2-.6L.3 1.1l-.3.3 4 11c.1.3.4.6.7.6l5 1h.2c.3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7z'];\nvar svgPaths20 = ['M17.7 12.7c0-.1 0-.2-.1-.3l-2-7c-.1-.3-.3-.6-.6-.7L1.8 0l-.6.5L7.7 7c.3-.2.6-.3 1-.3 1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2c0-.4.1-.7.3-1L.5 1.2l-.5.6L4.7 15c.1.3.4.5.7.6l7 2c.1 0 .2.1.3.1.3 0 .5-.1.7-.3l4-4c.2-.2.3-.5.3-.7zm1 1c-.3 0-.5.1-.7.3l-4 4c-.2.2-.3.4-.3.7 0 .5.4 1 1 1 .3 0 .5-.1.7-.3l4-4c.2-.2.3-.4.3-.7 0-.6-.5-1-1-1z'];\nexport var DrawIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"draw\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.12 4.76h-1.05l-.76-2.12c-.19-.53-.76-1.08-1.27-1.24 0 0-1.32-.4-4.04-.4-2.72 0-4.04.4-4.04.4-.5.16-1.07.71-1.26 1.24l-.77 2.12H.88c-.48 0-.88.42-.88.94s.4.94.88.94h.38L1 7c-.03.69 0 1.44 0 2v5c0 .66.38 1 1 1s1-.34 1-1v-1h10v1c0 .66.38 1 1 1s1-.34 1-1V9c0-.56-.01-1.37 0-2l-.26-.37h.38c.48 0 .88-.42.88-.93 0-.52-.4-.94-.88-.94zM5 10H3V8h2v2zm8 0h-2V8h2v2zm0-4H3c-.18 0-.06-.82 0-1l.73-1.63C3.79 3.19 3.82 3 4 3h8c.18 0 .21.19.27.37L13 5c.06.18.18 1 0 1z'];\nvar svgPaths20 = ['M20.01 7.7c0-.63-.5-1.14-1.1-1.14h-1.32l-.95-2.57c-.24-.64-.95-1.31-1.59-1.5 0 0-1.65-.49-5.05-.49s-5.04.49-5.04.49c-.63.19-1.35.86-1.59 1.5l-.95 2.57H1.1C.5 6.56 0 7.07 0 7.7c0 .63.5 1.14 1.1 1.14h.47l-.34.91c-.24.64-.43 1.72-.43 2.4v5.39c0 .8.63 1.45 1.4 1.45.77 0 1.4-.65 1.4-1.45v-.83h12.8v.83c0 .8.63 1.45 1.4 1.45s1.4-.65 1.4-1.45v-5.39c0-.68-.19-1.77-.43-2.4l-.34-.91h.47c.61 0 1.11-.51 1.11-1.14zm-16.47.34l1.12-3.16c.08-.22.32-.39.54-.39h9.6c.22 0 .46.17.54.39l1.12 3.16c.08.21-.04.39-.26.39H3.8c-.22-.01-.34-.18-.26-.39zm.96 4.94c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.68 1.5 1.5c0 .83-.67 1.5-1.5 1.5zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'];\nexport var DriveTimeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"drive-time\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H5c-.55 0-1 .45-1 1v2h2V2h8v7h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 10H2V6h8v8z'];\nvar svgPaths20 = ['M15 4H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 14H2V6h12v12zm5-18H5c-.55 0-1 .45-1 1v2h2V2h12v12h-1v2h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var DuplicateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"duplicate\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.25 10.26l2.47 2.47 6.69-6.69-2.46-2.48-6.7 6.7zM.99 14.99l3.86-1.39-2.46-2.44-1.4 3.83zm12.25-14c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.44-1.44c.32-.32.51-.75.51-1.24.01-.95-.77-1.74-1.74-1.74z'];\nvar svgPaths20 = ['M4.59 12.59l2.83 2.83 7.65-7.65-2.83-2.83-7.65 7.65zM2 18l4.41-1.59-2.81-2.79L2 18zM16 2c-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.83 1.65-1.65A2.006 2.006 0 0016 2z'];\nexport var EditIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"edit\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 9h8a1.003 1.003 0 00.71-1.71l-4-4C8.53 3.11 8.28 3 8 3s-.53.11-.71.29l-4 4A1.003 1.003 0 004 9zm8 1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M4 12h12c.55 0 1-.45 1-1 0-.25-.1-.47-.25-.64l.01-.01-6-7-.01.01C10.57 3.14 10.3 3 10 3s-.57.14-.75.36l-.01-.01-6 7 .01.01c-.15.17-.25.39-.25.64 0 .55.45 1 1 1zm12 1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z'];\nexport var EjectIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"eject\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.86 7.5l-.81-1.42V4.5c0-.36-.19-.68-.49-.87l-1.37-.8-.81-1.41c-.19-.31-.51-.49-.86-.49H9.89L8.5.14a.948.948 0 00-1 0l-1.39.8H4.52a1 1 0 00-.86.49l-.8 1.37-1.44.83c-.3.19-.49.51-.49.87v1.65l-.8 1.37c-.08.15-.13.32-.13.49s.05.34.14.49l.8 1.37v1.65c0 .36.19.68.49.87l1.42.81.8 1.37c.19.31.51.49.86.49H6.1l1.39.8c.15.09.32.14.48.14s.34-.05.49-.14l1.39-.8h1.63a1 1 0 00.86-.49l.81-1.41 1.37-.8c.3-.19.49-.51.49-.87V9.93l.81-1.42a.89.89 0 00.04-1.01zm-4.12-.82l-4.01 4.01c-.18.18-.43.29-.71.29s-.53-.11-.71-.29l-2-2c-.18-.19-.3-.44-.3-.71a1.003 1.003 0 011.71-.71l1.3 1.3 3.3-3.3a1.003 1.003 0 011.71.71.95.95 0 01-.29.7z'];\nvar svgPaths20 = ['M19.83 9.38L18.81 7.6V5.62c0-.45-.23-.85-.61-1.08l-1.71-1-1.02-1.76a1.25 1.25 0 00-1.08-.61h-2.03l-1.74-1c-.38-.23-.87-.23-1.25 0l-1.74 1H5.65c-.44 0-.85.23-1.08.61L3.58 3.5l-1.8 1.04c-.38.24-.62.64-.62 1.08v2.06L.17 9.4c-.11.19-.17.4-.17.61s.06.42.17.61l.99 1.72v2.06c0 .45.23.85.61 1.08l1.78 1.02.99 1.72c.23.38.63.61 1.08.61h1.99l1.74 1c.19.11.41.17.62.17.21 0 .42-.06.61-.17l1.74-1h2.03c.44 0 .85-.23 1.08-.61l1.02-1.76 1.71-1c.38-.23.61-.64.61-1.08v-1.97l1.02-1.78c.27-.38.27-.85.04-1.25zm-5.08-.71l-5.01 5.01c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.29l-3.01-3.01a1.003 1.003 0 011.42-1.42l2.3 2.3 4.31-4.3a1.003 1.003 0 011.71.71c0 .28-.12.53-.3.71z'];\nexport var EndorsedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"endorsed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 3.06v9.88L4.94 8 0 3.06zM14.94 2H1.06L8 8.94 14.94 2zm-6.41 8.53c-.14.14-.32.22-.53.22s-.39-.08-.53-.22L6 9.06 1.06 14h13.88L10 9.06l-1.47 1.47zM11.06 8L16 12.94V3.06L11.06 8z'];\nvar svgPaths20 = ['M0 4.01v11.91l6.27-6.27L0 4.01zm18.91-1.03H1.09L10 10.97l8.91-7.99zm-5.18 6.66L20 15.92V4.01l-6.27 5.63zm-3.23 2.9c-.13.12-.31.19-.5.19s-.37-.07-.5-.19l-2.11-1.89-6.33 6.33h17.88l-6.33-6.33-2.11 1.89z'];\nexport var EnvelopeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"envelope\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 5h10a1 1 0 010 2H3a1 1 0 110-2zm0 4h10a1 1 0 010 2H3a1 1 0 010-2z'];\nvar svgPaths20 = ['M4 7h12a1 1 0 010 2H4a1 1 0 110-2zm0 4h12a1 1 0 010 2H4a1 1 0 010-2z'];\nexport var EqualsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"equals\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.06 13.91l7.63-7.44c.41-.4.41-1.05 0-1.45L10.86.3c-.41-.4-1.08-.4-1.49 0L.31 9.13c-.41.4-.41 1.05 0 1.45l5.58 5.44h8.12v-.01c.55 0 1-.45 1-1s-.45-1-1-1H7.96l.1-.1zm-2.17.06L1.67 9.85l4.22-4.11 4.22 4.11-4.22 4.12z'];\nvar svgPaths20 = ['M18.71 8.43c.39-.4.39-1.05 0-1.45l-5.53-5.72a.967.967 0 00-1.4 0L1.29 12.1c-.39.4-.39 1.05 0 1.45l4.25 4.39 2.13 2.05h9.27c.02 0 .03.01.05.01.55 0 1-.45 1-1s-.45-1-1-1H9.46l.05-.05h.01l.81-.84 8.38-8.68zM7.52 17.94l-4.95-5.12 4.46-4.61 4.95 5.12-4.46 4.61z'];\nexport var EraserIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"eraser\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99-.01c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13h-2v-2h2v2zm0-3h-2v-7h2v7z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z'];\nexport var ErrorIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"error\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.52 3.18c.51-.27 1.12-.4 1.83-.4.48 0 .91.06 1.27.18.37.12.68.29.96.51.18.14.3.33.44.51l1.53-1.53c-.12-.11-.23-.22-.36-.32a5.61 5.61 0 00-1.74-.83c-.66-.2-1.36-.3-2.1-.3-.99 0-1.88.18-2.66.53-.79.35-1.45.82-2 1.41-.55.58-.96 1.27-1.26 2.06H2c-.55 0-1 .45-1 1s.45 1 1 1h.04c-.01.17-.04.33-.04.5 0 .17.03.33.04.5H2c-.55 0-1 .45-1 1s.45 1 1 1h.43c0 .01 0 .02.01.02a6.2 6.2 0 001.25 2.07 5.77 5.77 0 002 1.4c.78.34 1.67.51 2.66.51.81 0 1.54-.12 2.21-.36.67-.24 1.25-.59 1.75-1.03l.03-.03-1.55-1.33c-.01.01-.02.03-.03.04-.29.3-.63.53-1.02.69-.4.17-.85.25-1.37.25-.71 0-1.32-.13-1.83-.4s-.93-.62-1.25-1.07c-.19-.24-.34-.49-.46-.76H9c.55 0 1-.45 1-1s-.45-1-1-1H4.35c-.01-.17-.03-.33-.03-.5 0-.17.02-.34.03-.5H10c.55 0 1-.45 1-1s-.45-1-1-1H4.83c.13-.27.27-.52.44-.76.32-.44.74-.8 1.25-1.06zM14 8.98v0z'];\nvar svgPaths20 = ['M8.89 4.47c.56-.31 1.23-.47 2.03-.47.44 0 .85.07 1.25.22.4.14.76.35 1.07.6.17.14.33.3.47.47l2.32-2.32c-.16-.15-.3-.32-.47-.46-.62-.49-1.33-.87-2.12-1.13-.8-.25-1.64-.38-2.52-.38-1.24 0-2.35.22-3.33.66-.99.44-1.82 1.05-2.49 1.82-.68.78-1.2 1.68-1.56 2.72-.09.26-.13.54-.2.8H2c-.55 0-1 .45-1 1s.45 1 1 1h1.04c-.01.2-.04.38-.04.58 0 .15.03.28.03.42H2c-.55 0-1 .45-1 1s.45 1 1 1h1.31c.07.3.13.6.23.89.36 1.02.88 1.92 1.56 2.67.68.76 1.51 1.35 2.49 1.79.98.43 2.09.65 3.33.65.99 0 1.9-.15 2.73-.46.83-.3 1.55-.74 2.17-1.32.03-.03.05-.06.08-.09l-2.41-2.15c-.01.01-.02.02-.02.03-.61.67-1.46 1-2.54 1-.8 0-1.47-.16-2.03-.47-.56-.31-1.01-.72-1.35-1.24-.28-.38-.47-.83-.63-1.3H12c.55 0 1-.45 1-1s-.45-1-1-1H6.56c0-.14-.02-.28-.02-.42 0-.2.02-.39.03-.58H13c.55 0 1-.45 1-1s-.45-1-1-1H6.94c.15-.46.34-.9.59-1.28.35-.52.8-.94 1.36-1.25zM18 11.38v0z'];\nexport var EuroIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"euro\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1.99 5.99c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zm4.15 1.86a.495.495 0 10.7-.7L5.7 5.99h5.79c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H5.7l1.15-1.15a.495.495 0 10-.7-.7l-2 2c-.1.09-.16.21-.16.35s.06.26.15.35l2 2.01zm7.85-1.86c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zM9.85 8.14a.533.533 0 00-.36-.15.495.495 0 00-.35.85l1.15 1.15h-5.8c-.28 0-.5.22-.5.5s.22.5.5.5h5.79l-1.15 1.15a.495.495 0 10.7.7l2-2c.09-.09.15-.22.15-.35s-.06-.26-.15-.35l-1.98-2z'];\nvar svgPaths20 = ['M2.5 8a2.5 2.5 0 000 5 2.5 2.5 0 000-5zm10.35 3.15a.495.495 0 10-.7.7L13.3 13H5.5c-.28 0-.5.22-.5.5s.22.5.5.5h7.79l-1.15 1.15c-.08.09-.14.21-.14.35a.495.495 0 00.85.35l2-2c.09-.09.15-.21.15-.35s-.06-.26-.15-.35l-2-2zM17.5 8a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM7.15 9.85a.495.495 0 10.7-.7L6.71 8h7.79c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H6.71l1.15-1.15c.08-.09.14-.21.14-.35a.495.495 0 00-.85-.35l-2 2c-.09.09-.15.21-.15.35s.06.26.15.35l2 2z'];\nexport var ExchangeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"exchange\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 10a1.003 1.003 0 001.71.71L3 9.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 8 5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L3 6.59l-1.29-1.3A1.003 1.003 0 00.29 6.71L1.59 8 .29 9.29C.11 9.47 0 9.72 0 10zm1-7h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 10H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-1-7H9c-1.1 0-2 .9-2 2s.9 2 2 2h5c1.1 0 2-.9 2-2s-.9-2-2-2z'];\nvar svgPaths20 = ['M1 3h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zM0 13a1.003 1.003 0 001.71.71L4 11.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L5.41 10 7.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L4 8.59l-2.29-2.3A1.003 1.003 0 00.29 7.71L2.59 10 .3 12.29c-.19.18-.3.43-.3.71zm18-5h-7c-1.1 0-2 .9-2 2s.9 2 2 2h7c1.1 0 2-.9 2-2s-.9-2-2-2zm1 9H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var ExcludeRowIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"exclude-row\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 7c.28 0 .53-.11.71-.29L8 3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-4 4A1.003 1.003 0 004 7zm8 2c-.28 0-.53.11-.71.29L8 12.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0012 9z'];\nvar svgPaths20 = ['M4 9c.28 0 .53-.11.71-.29L10 3.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-6-6C10.53 1.11 10.28 1 10 1s-.53.11-.71.29l-6 6A1.003 1.003 0 004 9zm12 2c-.28 0-.53.11-.71.29L10 16.59 4.71 11.3A.965.965 0 004 11a1.003 1.003 0 00-.71 1.71l6 6c.18.18.43.29.71.29s.53-.11.71-.29l6-6A1.003 1.003 0 0016 11z'];\nexport var ExpandAllIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"expand-all\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 6c.28 0 .53-.11.71-.29L7 3.41V11c0 .55.45 1 1 1s1-.45 1-1V3.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-4-4C8.53.11 8.28 0 8 0s-.53.11-.71.29l-4 4A1.003 1.003 0 004 6zm11 5c-.55 0-1 .45-1 1v2H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M5 7c.28 0 .53-.11.71-.29L9 3.41V15c0 .55.45 1 1 1s1-.45 1-1V3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-5-5C10.53.11 10.28 0 10 0s-.53.11-.71.29l-5 5A1.003 1.003 0 005 7zm14 7c-.55 0-1 .45-1 1v3H2v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z'];\nexport var ExportIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"export\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 7.97v-.02-.01-.02-.02a.672.672 0 00-.17-.36c-.49-.63-1.07-1.2-1.65-1.72l-3.16 2.26a2.978 2.978 0 01-2.98 2.9c-.31 0-.6-.06-.88-.15L5.09 12.3c.44.19.9.36 1.37.47.97.23 1.94.24 2.92.05.88-.17 1.74-.54 2.53-.98 1.25-.7 2.39-1.67 3.38-2.75.18-.2.37-.41.53-.62.09-.1.15-.22.17-.36v-.02-.02-.01-.02-.03c.01-.02.01-.03.01-.04zm-.43-4.17c.25-.18.43-.46.43-.8 0-.55-.45-1-1-1-.22 0-.41.08-.57.2l-.01-.01-2.67 1.91c-.69-.38-1.41-.69-2.17-.87a6.8 6.8 0 00-2.91-.05c-.88.18-1.74.54-2.53.99-1.25.7-2.39 1.67-3.38 2.75-.18.2-.37.41-.53.62-.23.29-.23.63-.01.92.51.66 1.11 1.25 1.73 1.79.18.16.38.29.56.44l-2.09 1.5.01.01c-.25.18-.43.46-.43.8 0 .55.45 1 1 1 .22 0 .41-.08.57-.2l.01.01 14-10-.01-.01zm-10.41 5a3.03 3.03 0 01-.11-.8 2.99 2.99 0 012.99-2.98c.62 0 1.19.21 1.66.53L5.16 8.8z'];\nvar svgPaths20 = ['M20 9.96v-.03-.01-.02-.02a.794.794 0 00-.21-.43c-.55-.69-1.19-1.3-1.85-1.87l-3.93 2.62a3.966 3.966 0 01-3.96 3.77c-.47 0-.91-.1-1.33-.24l-2.24 1.49c.52.21 1.05.39 1.6.51 1.21.27 2.43.28 3.64.05 1.11-.21 2.17-.64 3.17-1.18 1.56-.84 2.99-2 4.23-3.3.23-.24.46-.49.67-.75a.87.87 0 00.21-.43v-.02-.02-.01-.03V10v-.04zm-.46-5.14c.27-.18.46-.47.46-.82 0-.55-.45-1-1-1-.21 0-.39.08-.54.18l-.01-.02L15 5.46c-.95-.53-1.95-.96-3.01-1.2a9.158 9.158 0 00-3.65-.04c-1.11.21-2.17.64-3.17 1.18-1.56.84-2.99 2-4.23 3.3-.23.24-.46.48-.67.75-.27.34-.27.76 0 1.1.64.79 1.39 1.5 2.16 2.15.26.21.52.41.79.61L.44 15.16l.01.02A1 1 0 000 16c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 18-12-.01-.02zm-8.67 3.4c-.25-.12-.53-.2-.83-.2-1.1 0-1.99.89-1.99 1.99 0 .03.02.06.02.09l-1.78 1.19c-.14-.4-.22-.83-.22-1.28 0-2.19 1.78-3.97 3.98-3.97 1.01 0 1.91.38 2.61 1l-1.79 1.18z'];\nexport var EyeOffIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"eye-off\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.29 6.7c.18.18.43.29.71.29s.53-.11.71-.29l4-4c.17-.18.29-.43.29-.7a1.003 1.003 0 00-1.71-.71L11 4.58 9.71 3.29A.997.997 0 009 3c-.55 0-1 .44-1 1a1 1 0 00.3.7l1.99 2zM16 7.96v-.02-.01-.02-.02a.64.64 0 00-.17-.36c-.3-.4-.65-.76-1-1.12l-1.7 1.7c-.55.55-1.3.88-2.13.88-.06 0-.11-.01-.17-.02C10.42 10.15 9.32 11 8.01 11A3.005 3.005 0 016.4 5.46c-.24-.43-.39-.93-.39-1.46 0-.26.04-.5.1-.74-.7.2-1.37.5-2.01.86-1.26.7-2.4 1.68-3.4 2.77-.18.21-.36.41-.53.63-.22.29-.22.64 0 .93.51.67 1.12 1.27 1.73 1.81 1.33 1.17 2.85 2.15 4.53 2.55.97.23 1.95.24 2.92.05.89-.18 1.74-.54 2.54-.99 1.25-.71 2.4-1.69 3.39-2.78.18-.2.37-.41.54-.63.09-.1.15-.23.17-.37v-.02-.02-.01-.02-.03c.01-.01.01-.02.01-.03zM8.01 9c.48 0 .87-.35.96-.81a.55.55 0 01-.07-.09l-.02.01L7.8 7.03c-.45.1-.79.48-.79.96 0 .56.45 1.01 1 1.01z'];\nvar svgPaths20 = ['M13.3 8.71c.18.18.43.29.71.29s.53-.11.71-.29l4.99-5a1.003 1.003 0 00-1.42-1.42L14 6.58l-2.29-2.29a.956.956 0 00-.7-.29 1.003 1.003 0 00-.71 1.71l3 3zM20 9.96v-.03-.01-.02-.02a.823.823 0 00-.21-.44c-.44-.55-.94-1.05-1.46-1.52l-2.2 2.2c-.55.54-1.3.88-2.12.88-.05 0-.09-.01-.14-.01a3.978 3.978 0 01-3.86 3.02 4.007 4.007 0 01-1.66-7.65A2.97 2.97 0 018.02 5c0-.28.05-.54.12-.8-1.05.22-2.07.64-3.02 1.15-1.57.85-3 2.02-4.24 3.33-.23.25-.46.5-.67.76-.28.35-.28.77 0 1.12.64.8 1.4 1.52 2.17 2.17 1.66 1.41 3.56 2.58 5.66 3.06 1.21.27 2.43.29 3.65.05 1.11-.21 2.18-.65 3.18-1.19 1.57-.85 3-2.02 4.24-3.33.23-.24.46-.49.67-.76.11-.12.18-.27.21-.44v-.02-.02-.01-.03V10c.01-.01.01-.03.01-.04zm-9.99 2.05c1.03 0 1.87-.79 1.98-1.8l-.09-.09-.01.01-2.1-2.11c-1 .11-1.77.95-1.77 1.98-.01 1.11.89 2.01 1.99 2.01z'];\nexport var EyeOnIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"eye-on\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.002 7.003a1.003 1.003 0 000 2.005 1.003 1.003 0 000-2.005zm7.988.972v-.02-.01-.02-.02a.675.675 0 00-.17-.36c-.509-.673-1.118-1.264-1.737-1.806-1.328-1.173-2.846-2.155-4.523-2.546a6.702 6.702 0 00-2.925-.06c-.889.18-1.738.541-2.546.992C2.84 4.837 1.692 5.81.694 6.902c-.18.211-.36.411-.53.632a.742.742 0 000 .932c.51.672 1.119 1.264 1.738 1.805 1.328 1.173 2.846 2.156 4.523 2.547.968.23 1.947.24 2.925.04.889-.18 1.738-.542 2.546-.993 1.248-.712 2.397-1.684 3.395-2.777.18-.2.37-.411.54-.632.09-.1.149-.23.169-.36v-.02-.02-.01-.02-.03c0-.01-.01-.01-.01-.02zm-7.988 3.038a2.998 2.998 0 01-2.995-3.008 2.998 2.998 0 012.995-3.008 2.998 2.998 0 012.996 3.008 2.998 2.998 0 01-2.996 3.008z'];\nvar svgPaths20 = ['M10.01 7.984A2.008 2.008 0 008.012 9.99c0 1.103.9 2.006 1.998 2.006a2.008 2.008 0 001.998-2.006c0-1.103-.9-2.006-1.998-2.006zM20 9.96v-.03-.01-.02-.02a.827.827 0 00-.21-.442c-.64-.802-1.398-1.514-2.168-2.166-1.658-1.404-3.566-2.587-5.664-3.058a8.982 8.982 0 00-3.656-.05c-1.11.2-2.178.641-3.177 1.183-1.569.852-2.997 2.016-4.246 3.33-.23.25-.46.49-.67.761-.279.351-.279.773 0 1.124.64.802 1.4 1.514 2.169 2.166 1.658 1.404 3.566 2.577 5.664 3.058 1.209.271 2.438.281 3.656.05 1.11-.21 2.178-.651 3.177-1.193 1.569-.852 2.997-2.016 4.246-3.33.23-.24.46-.49.67-.751.11-.12.179-.271.209-.442v-.02-.02-.01-.03V10v-.04zM10.01 14A4.003 4.003 0 016.014 9.99a4.003 4.003 0 013.996-4.011 4.003 4.003 0 013.996 4.011 4.003 4.003 0 01-3.996 4.011z'];\nexport var EyeOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"eye-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 3c-.24 0-.44.09-.62.23l-.01-.01L9 6.72V4c0-.55-.45-1-1-1-.24 0-.44.09-.62.23v-.01l-5 4 .01.01C2.16 7.41 2 7.68 2 8s.16.59.38.77v.01l5 4 .01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V9.28l4.38 3.5.01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M18 3c-.23 0-.42.09-.59.21l-.01-.01L11 8V4c0-.55-.45-1-1-1-.23 0-.42.09-.59.21L9.4 3.2l-8 6 .01.01C1.17 9.4 1 9.67 1 10s.17.6.41.79l-.01.01 8 6 .01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1v-4l6.4 4.8.01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var FastBackwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"fast-backward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 8c0-.32-.16-.59-.38-.77l.01-.01-5-4-.01.01A.987.987 0 009 3c-.55 0-1 .45-1 1v2.72l-4.38-3.5v.01A.987.987 0 003 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01L8 9.28V12c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01 5-4-.01-.01c.22-.18.38-.45.38-.77z'];\nvar svgPaths20 = ['M19 10c0-.33-.17-.6-.41-.79l.01-.01-8-6-.01.01C10.42 3.09 10.23 3 10 3c-.55 0-1 .45-1 1v4L2.6 3.2l-.01.01C2.42 3.09 2.23 3 2 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01L9 12v4c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01 8-6-.01-.01c.24-.19.41-.46.41-.79z'];\nexport var FastForwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"fast-forward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1.99 11.99c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.89-2-2-2zm1-4c-.55 0-1 .45-1 1s.45 1 1 1c1.66 0 3 1.34 3 3 0 .55.45 1 1 1s1-.45 1-1c0-2.76-2.24-5-5-5zm0-4c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7 3.13 7 7 0 .55.45 1 1 1s1-.45 1-1a9 9 0 00-9-9zm0-4c-.55 0-1 .45-1 1s.45 1 1 1c6.08 0 11 4.92 11 11 0 .55.45 1 1 1s1-.45 1-1c0-7.18-5.82-13-13-13z'];\nvar svgPaths20 = ['M2.5 15a2.5 2.5 0 000 5 2.5 2.5 0 000-5zm.5-5c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5 2.24 5 5 0 .55.45 1 1 1s1-.45 1-1c0-3.87-3.13-7-7-7zM3 0c-.55 0-1 .45-1 1s.45 1 1 1c8.28 0 15 6.72 15 15 0 .55.45 1 1 1s1-.45 1-1C20 7.61 12.39 0 3 0zm0 5c-.55 0-1 .45-1 1s.45 1 1 1c5.52 0 10 4.48 10 10 0 .55.45 1 1 1s1-.45 1-1C15 10.37 9.63 5 3 5z'];\nexport var FeedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"feed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 2c1.06 0 2.08.16 3.06.45.13-.71.52-1.32 1.05-1.76C5.82.25 4.44 0 3 0c-.55 0-1 .45-1 1s.45 1 1 1zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8.32-6.33a.99.99 0 001.4 0l3.98-3.98c.19-.18.3-.42.3-.7 0-.55-.45-.99-1-.99-.28 0-.52.11-.7.29l-3.28 3.28-1.29-1.29a.99.99 0 00-.7-.29 1 1 0 00-1 .99c0 .27.11.52.29.7l2 1.99zm3.73.53l-.93.93-.02-.02c-.17.17-.35.33-.56.45C13.47 9.16 14 11.02 14 13c0 .55.45 1 1 1s1-.45 1-1c0-2.5-.73-4.82-1.95-6.8zM3 8c-.55 0-1 .45-1 1s.45 1 1 1c1.66 0 3 1.34 3 3 0 .55.45 1 1 1s1-.45 1-1c0-2.76-2.24-5-5-5zm5.91-.91l-.03.03-2-2 .03-.03c-.11-.11-.23-.2-.33-.33A8.9 8.9 0 003 4c-.55 0-1 .45-1 1s.45 1 1 1c3.87 0 7 3.13 7 7 0 .55.45 1 1 1s1-.45 1-1c0-1.87-.57-3.61-1.55-5.06-.61-.11-1.13-.42-1.54-.85z'];\nvar svgPaths20 = ['M2.5 15a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM3 2c1.76 0 3.44.31 5.01.87.03-.71.31-1.35.75-1.85C6.96.37 5.03 0 3 0c-.55 0-1 .45-1 1s.45 1 1 1zm10.32 4.67a.99.99 0 001.4 0l4.98-4.98c.19-.17.3-.42.3-.7 0-.55-.45-1-1-1a.99.99 0 00-.7.29l-4.27 4.27-2.28-2.28a.99.99 0 00-.7-.29c-.55 0-.99.45-.99 1 0 .28.11.52.29.7l2.97 2.99zM3 10c-.55 0-1 .45-1 1s.45 1 1 1c2.76 0 5 2.24 5 5 0 .55.45 1 1 1s1-.45 1-1c0-3.87-3.13-7-7-7zm13.94-2.69l-.82.82-.02-.02c-.2.2-.42.37-.67.51A14.8 14.8 0 0118 17c0 .55.45 1 1 1s1-.45 1-1c0-3.61-1.14-6.94-3.06-9.69zM3 5c-.55 0-1 .45-1 1s.45 1 1 1c5.52 0 10 4.48 10 10 0 .55.45 1 1 1s1-.45 1-1C15 10.37 9.63 5 3 5z'];\nexport var FeedSubscribedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"feed-subscribed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1h-5v2H6V1H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h5v-2h4v2h5c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM4 13H2v-2h2v2zm0-3H2V8h2v2zm0-3H2V5h2v2zm0-3H2V2h2v2zm6 6H6V5h4v5zm4 3h-2v-2h2v2zm0-3h-2V8h2v2zm0-3h-2V5h2v2zm0-3h-2V2h2v2z'];\nvar svgPaths20 = ['M19 2h-5v3H6V2H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h5v-3h8v3h5c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM4 17H2v-2h2v2zm0-3H2v-2h2v2zm0-3H2V9h2v2zm0-3H2V6h2v2zm0-3H2V3h2v2zm10 8H6V7h8v6zm4 4h-2v-2h2v2zm0-3h-2v-2h2v2zm0-3h-2V9h2v2zm0-3h-2V6h2v2zm0-3h-2V3h2v2z'];\nexport var FilmIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"film\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.99.99h-12a1.003 1.003 0 00-.71 1.71l4.71 4.71V14a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V7.41L14.7 2.7a1.003 1.003 0 00-.71-1.71z'];\nvar svgPaths20 = ['M18 1H2a1.003 1.003 0 00-.71 1.71L7 8.41V18a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71V8.41l5.71-5.71c.18-.17.29-.42.29-.7 0-.55-.45-1-1-1z'];\nexport var FilterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"filter\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 10c-.28 0-.53.11-.71.29L12 12.59l-1.29-1.29A.965.965 0 0010 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 0015 10zm-3-8c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7z'];\nvar svgPaths20 = ['M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm4 11c-.28 0-.53.11-.71.29L15 16.59l-1.29-1.29A.965.965 0 0013 15a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l4-4A1.003 1.003 0 0019 13z'];\nexport var FilterKeepIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"filter-keep\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 8c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1h-5c-.55 0-1 .45-1 1zm3-6c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7zm3 8h-5c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0 3h-5c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm-4 8c0 .55.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1h-7c-.55 0-1 .45-1 1zm8 7h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4h-7c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var FilterListIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"filter-list\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.707 10.293a1 1 0 010 1.414l-3 3c-.63.63-1.707.184-1.707-.707V8c0-.89 1.077-1.337 1.707-.707l3 3zM12 2c0 .28-.11.53-.29.7L8 6.41V10c0 .28-.11.53-.29.71l-2 2A1.003 1.003 0 014 12V6.41L.29 2.71A1.003 1.003 0 011 1h10c.55 0 1 .45 1 1z'];\nvar svgPaths20 = ['M15 2c0 .28-.11.53-.29.7L10 7.41V13c0 .28-.11.53-.29.71l-3 3A1.003 1.003 0 015 16V7.41L.29 2.71A1.003 1.003 0 011 1h13c.55 0 1 .45 1 1zm4.707 11.293a1 1 0 010 1.414l-4 4c-.63.63-1.707.184-1.707-.707v-8c0-.89 1.077-1.337 1.707-.707l4 4z'];\nexport var FilterOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"filter-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L4 6.41V12a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71V6.41l3.71-3.71c.18-.17.29-.42.29-.7zm2.41 10l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L13 10.59 11.71 9.3A.965.965 0 0011 9a1.003 1.003 0 00-.71 1.71l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l1.29-1.3 1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L14.41 12z'];\nvar svgPaths20 = ['M15 2c0-.55-.45-1-1-1H1a1.003 1.003 0 00-.71 1.71L5 7.41V16a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71V7.41l4.71-4.71c.18-.17.29-.42.29-.7zm2.91 13.5l1.79-1.79c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-1.79 1.79-1.79-1.79a1.003 1.003 0 00-1.42 1.42l1.79 1.79-1.79 1.79a1.003 1.003 0 001.42 1.42l1.79-1.79 1.79 1.79a1.003 1.003 0 001.42-1.42l-1.8-1.79z'];\nexport var FilterRemoveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"filter-remove\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.99 2.99c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1s1-.45 1-1v-11c0-.55-.45-1-1-1zm0-3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm2 3.03v7.23c2.07-2.11 5.92 1.75 9 0V3.02c-3 2.07-6.94-2.03-9 0z'];\nvar svgPaths20 = ['M3 3c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm0-3c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm2 4.08v8.28c3.01-2.41 8.67 2.64 13 0V4.08C13.61 7.14 8.01 1 5 4.08z'];\nexport var FlagIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flag\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.217 0c0 1.368.368 2.462 1.104 3.282C12.774 5.197 14 7.385 14 9.846c0 2.735-1.472 4.786-4.415 6.154 2.165-2.4 1.84-3.385-.368-6.4-2.342 1.2-1.967 2-1.592 3.6-.786 0-1.5 0-1.875-.4 0 .547.898 2 1.464 3.2-2.943-.82-6.092-5.744-4.988-6.154.736-.273 1.594-.137 2.575.41C3.575 5.333 5.047 1.915 9.217 0z'];\nvar svgPaths20 = ['M11.622 0c0 1.71.49 3.077 1.472 4.103C16.364 6.496 18 9.23 18 12.308c0 3.418-1.962 5.983-5.887 7.692 2.887-3 2.453-4.23-.49-8C8.5 13.5 9 14.5 9.5 16.5c-1.048 0-2 0-2.5-.5 0 .684 1.197 2.5 1.952 4-3.924-1.026-8.123-7.18-6.651-7.692.981-.342 2.126-.171 3.434.513C4.1 6.667 6.062 2.393 11.622 0z'];\nexport var FlameIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flame\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 8c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1zm4-4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S7 .45 7 1v2c0 .55.45 1 1 1zM3.79 5.21a1.003 1.003 0 001.42-1.42l-1.5-1.5a1.003 1.003 0 00-1.42 1.42l1.5 1.5zm.71 5.29c-.28 0-.53.11-.71.29l-1.5 1.5a1.003 1.003 0 001.42 1.42l1.5-1.5a1.003 1.003 0 00-.71-1.71zm7-5c.28 0 .53-.11.71-.29l1.5-1.5a1.003 1.003 0 00-1.42-1.42l-1.5 1.5a1.003 1.003 0 00.71 1.71zm.71 5.29a1.003 1.003 0 00-1.42 1.42l1.5 1.5a1.003 1.003 0 001.42-1.42l-1.5-1.5zM15 7h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zM8 5C6.34 5 5 6.34 5 8s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0 3c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M4.96 6.37a1.003 1.003 0 001.42-1.42l-2-2a1.07 1.07 0 00-.71-.28 1.003 1.003 0 00-.71 1.71l2 1.99zm9.37.3c.28 0 .53-.11.71-.29l2-2a1.003 1.003 0 00-1.42-1.42l-2 2a1.003 1.003 0 00.71 1.71zM10 5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S9 .45 9 1v3c0 .55.45 1 1 1zm-5 5c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1zm14-1h-3c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm-9-3c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5.04 1.63a1.003 1.003 0 00-1.42 1.42l2 2a1.003 1.003 0 001.42-1.42l-2-2zM10 15c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1v-3c0-.55-.45-1-1-1zm-4.33-1.67c-.28 0-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l2-2a1.003 1.003 0 00-.71-1.71z'];\nexport var FlashIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flash\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.71 2.29l-2-2A.997.997 0 0013 0h-1v6H4V0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V3c0-.28-.11-.53-.29-.71zM14 15H2V9c0-.55.45-1 1-1h10c.55 0 1 .45 1 1v6zM11 1H9v4h2V1z'];\nvar svgPaths20 = ['M14 1h-3v5h3V1zm5.71 2.29l-3-3A.997.997 0 0016 0h-1v7H5V0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V4c0-.28-.11-.53-.29-.71zM17 19H3v-8c0-.55.45-1 1-1h12c.55 0 1 .45 1 1v8z'];\nexport var FloppyDiskIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"floppy-disk\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.643 6.595c.22.418.344.894.344 1.399 0 .439-.094.855-.263 1.231l3.265 3.462-.002-1.75a.973.973 0 01.314-.68.99.99 0 011.388.048c.186.2.316.46.3.715l-.009 4.03a.959.959 0 01-.3.68.972.972 0 01-.698.266l-4.053.002a.97.97 0 01-.679-.314 1.031 1.031 0 01.05-1.42.972.972 0 01.698-.266l1.7-.001-3.305-3.35a2.998 2.998 0 01-4.228-1.653H.999a1 1 0 010-2h4.166a2.998 2.998 0 014.06-1.735l3.449-3.268-1.745.002a.979.979 0 01-.631-1.692c.199-.186.459-.316.713-.3l4.025.009c.247.008.493.1.679.3.186.2.274.451.265.7l.002 4.046a.972.972 0 01-.313.68 1.03 1.03 0 01-1.42-.05.973.973 0 01-.266-.7V3.295l-3.34 3.301z'];\nvar svgPaths20 = ['M14.425 7.953a3.98 3.98 0 01.562 2.045 3.98 3.98 0 01-.583 2.08L18 15.671V12.98c0-.248.097-.496.29-.689.379-.379 1.047-.38 1.426 0a.94.94 0 01.283.696l-.001 5.049a.957.957 0 01-.276.69.955.955 0 01-.69.273h-5.059a.971.971 0 01-.689-.289 1.026 1.026 0 010-1.417.972.972 0 01.69-.29h2.702l-3.634-3.573a3.998 3.998 0 01-5.924-2.431H1a1 1 0 010-2h6.12a3.998 3.998 0 015.96-2.409L16.665 3l-2.694-.001a.972.972 0 01-.689-.29 1.035 1.035 0 010-1.425.94.94 0 01.696-.283l5.05.001c.248 0 .497.083.69.276a.954.954 0 01.272.69l.001 5.052a.971.971 0 01-.29.689 1.028 1.028 0 01-1.419 0 .972.972 0 01-.29-.69V4.323l-3.567 3.63z'];\nexport var FlowBranchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flow-branch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.702 7.31c.176.176.293.41.293.684a.976.976 0 01-.283.695c-1.888 1.91-2.892 2.918-3.011 3.027-.179.164-.42.284-.693.284a.995.995 0 01-.997-.985c0-.274.112-.541.292-.72.12-.12.624-.551 1.514-1.293H.98c-.536 0-.975-.47-.975-1.008 0-.537.439-.996.975-.996h5.837c-.895-.752-1.4-1.187-1.514-1.304a1.03 1.03 0 01-.292-.705C5.01 4.45 5.464 4 6 4c.272 0 .52.108.695.294A535.7 535.7 0 009.702 7.31zM13 11.002c-1.657 0-3-1.347-3-3.008a3.004 3.004 0 013-3.007c1.657 0 3 1.346 3 3.007a3.004 3.004 0 01-3 3.008z'];\nvar svgPaths20 = ['M12 9.919a3.998 3.998 0 014-3.92c2.21 0 4 1.79 4 3.997a3.998 3.998 0 01-4 3.996 3.998 3.998 0 01-4-3.916.967.967 0 01-.28.612L7.685 14.71a.958.958 0 01-.686.285c-.536 0-.994-.461-.994-.997 0-.273.107-.528.283-.704l2.379-2.302H.98c-.537 0-.976-.46-.976-.996s.44-.992.976-.992h7.676L6.287 6.687a.957.957 0 01-.283-.686c0-.536.458-.996.994-.996.274 0 .51.1.686.285l4.027 4.024c.159.158.27.365.29.605z'];\nexport var FlowEndIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flow-end\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4.16 9.002H.977C.44 9.002 0 8.532 0 7.994c0-.537.44-.99.978-.99h3.18A3.01 3.01 0 016.995 5a3.01 3.01 0 012.839 2.004h2.98c-.898-.756-1.404-1.193-1.518-1.31a1.03 1.03 0 01-.293-.705c0-.538.454-.989.992-.989.274 0 .521.108.697.294.118.124 1.122 1.13 3.014 3.016a.96.96 0 01.293.684.975.975 0 01-.284.695l-3.018 3.027a.974.974 0 01-.694.284c-.553 0-1-.447-1-.985 0-.274.117-.545.293-.72l1.518-1.293H9.833A3.01 3.01 0 016.996 11 3.01 3.01 0 014.16 9.002z'];\nvar svgPaths20 = ['M5.125 10.997H.976C.439 10.997 0 10.537 0 10c0-.536.44-.993.976-.993h4.148a4.002 4.002 0 017.752 0h3.776L14.293 6.69a.962.962 0 01-.285-.687c0-.537.46-1.001.996-1.001a.96.96 0 01.698.3l4.005 4.015c.176.176.293.41.293.683a.972.972 0 01-.283.693L15.702 14.7a.997.997 0 01-.698.297c-.537 0-.996-.453-.996-.99 0-.273.107-.517.283-.692l2.371-2.318h-3.787a4.002 4.002 0 01-7.75 0z'];\nexport var FlowLinearIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flow-linear\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.175 7.004a3.003 3.003 0 012.83-2.001c1.305 0 2.416.835 2.83 2.001h1.985c-.896-.756-1.401-1.193-1.515-1.31a1.03 1.03 0 01-.292-.705c0-.538.453-.989.99-.989a.95.95 0 01.696.294c.117.124 1.12 1.13 3.008 3.016.176.176.293.41.293.684a.976.976 0 01-.283.695l-3.013 3.027a.995.995 0 01-1.691-.702c0-.273.116-.544.292-.72l1.515-1.292h-1.98a3.003 3.003 0 01-2.835 2.016A3.003 3.003 0 015.17 9.002H3.18l1.515 1.292c.176.176.292.447.292.72a.995.995 0 01-1.69.702L.282 8.69A.976.976 0 010 7.994c0-.273.117-.508.293-.684A535.858 535.858 0 003.3 4.294.95.95 0 013.997 4c.537 0 .99.45.99.989 0 .273-.12.528-.292.705-.114.117-.62.554-1.515 1.31h1.995z'];\nvar svgPaths20 = ['M6.13 9.004A4.005 4.005 0 0110.012 6c1.87 0 3.44 1.278 3.881 3.005h2.768l-2.354-2.317a.97.97 0 01-.283-.691c0-.536.462-.995 1-.995.273 0 .517.107.693.283l4 4.041a.97.97 0 01.284.692.956.956 0 01-.293.682l-3.991 3.997a.944.944 0 01-.694.292c-.537 0-1-.46-1-.997a.97.97 0 01.284-.692l2.345-2.29h-2.765a4.005 4.005 0 01-3.875 2.981 4.005 4.005 0 01-3.874-2.981H3.349l2.376 2.308a.97.97 0 01.283.691 1 1 0 01-.994.983.989.989 0 01-.713-.291L.293 10.699A.956.956 0 010 10.017a.97.97 0 01.283-.692l4.03-4.037a.996.996 0 01.701-.283c.537 0 .994.464.994 1a.97.97 0 01-.283.691L3.34 9.004h2.79z'];\nexport var FlowReviewIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flow-review\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.392 10.647A3.002 3.002 0 016.16 8.995H3.37l1.338 1.318c.172.178.287.41.282.683-.01.536-.524.995-.99.995-.465 0-.63-.187-.747-.294L.281 8.682A.956.956 0 010 7.994a.971.971 0 01.294-.687l3.01-3.028a.973.973 0 01.697-.27c.536.01.998.485.989 1.021a.971.971 0 01-.295.687L3.37 6.997h2.79a3.002 3.002 0 014.106-1.716l2.416-2.277-1.732.004a.99.99 0 01-.679-.329.978.978 0 01.05-1.378c.199-.186.459-.315.714-.3l4.012.005c.248.009.493.1.68.3.185.2.273.45.264.699L15.99 6.05a.973.973 0 01-.314.679 1.03 1.03 0 01-1.421-.048.971.971 0 01-.265-.699V4.29L11.65 6.602c.219.416.343.89.343 1.394 0 .451-.1.88-.279 1.263L14 11.68l-.004-1.73a.982.982 0 01.323-.68.978.978 0 011.378.049c.187.2.316.46.3.714l-.004 4.011a.983.983 0 01-.3.691.972.972 0 01-.7.265l-4.046-.001a.987.987 0 01-.679-.326 1.017 1.017 0 01.048-1.41.972.972 0 01.699-.265h1.693l-2.315-2.35z'];\nvar svgPaths20 = ['M13.04 13.424c-.6.36-1.302.568-2.052.568a4 4 0 01-3.868-2.999H3.342l2.372 2.31c.176.176.283.42.283.694 0 .537-.452.998-.988.998a.935.935 0 01-.691-.289L.292 10.683A.96.96 0 010 9.999c0-.274.107-.518.283-.694l4.035-4.04a.973.973 0 01.691-.288c.536 0 .988.47.988 1.007a.975.975 0 01-.283.694L3.332 8.984h3.786a4 4 0 013.87-3.006c.771 0 1.492.22 2.102.599l3.565-3.57-2.538-.003a.974.974 0 01-.69-.29c-.38-.38-.38-1.052-.002-1.431A.94.94 0 0114.122 1l4.896.005a.96.96 0 01.69.277c.193.193.27.442.27.69l.005 4.9a.971.971 0 01-.289.69 1.023 1.023 0 01-1.416 0 .975.975 0 01-.29-.691l-.003-2.54-3.554 3.62c.351.596.553 1.291.553 2.034 0 .763-.213 1.477-.583 2.084l3.595 3.595.003-2.54c0-.249.097-.497.29-.69.38-.38 1.05-.381 1.429-.002a.94.94 0 01.282.697l-.005 4.9a.927.927 0 01-.277.675.974.974 0 01-.69.291L13.974 19a.97.97 0 01-.69-.29 1.03 1.03 0 01.002-1.42.974.974 0 01.69-.29l2.696-.003-3.632-3.573z'];\nexport var FlowReviewBranchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flow-review-branch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.5 6a2.5 2.5 0 00-2.45 2h-1.3L5.74 4l-.75.75L8.25 8h-3.3a2.5 2.5 0 100 1h3.3l-3.26 3.25.75.75 4.01-4h1.3a2.5 2.5 0 102.45-3z'];\nvar svgPaths20 = ['M17.5 7.93a2.5 2.5 0 00-2.45 2h-2.3l-4.01-4-.75.75 3.26 3.25h-6.3a2.5 2.5 0 100 1h6.3l-3.26 3.25.75.75 4.01-4h2.3a2.5 2.5 0 102.45-3z'];\nexport var FlowsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"flows\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M-.01 14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7h-16v7zm15-10H7.41L5.7 2.3a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h16V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M0 17c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V7H0v10zM19 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h20V5c0-.55-.45-1-1-1z'];\nexport var FolderCloseIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"folder-close\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.165 7a3.003 3.003 0 002.827 2 3.003 3.003 0 002.827-2H16v7c0 .55-.45 1-1 1H1.01c-.55 0-1-.45-1-1V7h10.155zM8.76 6H0V3c0-.55.45-1 1-1h1.998c.28 0 .53.11.71.29L5.417 4h2.578c0 .768.29 1.469.765 2zm6.23-3c.55 0 1 .45 1 1s-.45 1-1 1h-.999v1c0 .55-.45 1-1 1-.549 0-.998-.45-.998-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 .999-1 .55 0 1 .45 1 1v1h.999z'];\nvar svgPaths20 = ['M12.994 7c0 1.655 1.344 3 2.998 3a3.002 3.002 0 002.999-3H20v10c0 .55-.45 1-1 1H1.01c-.55 0-1-.45-1-1V7h12.984zM10.76 6H0V3c0-.55.45-1 1-1h3.998c.28 0 .53.11.71.29L7.415 4h2.579c0 .768.29 1.469.765 2zm8.23-3c.55 0 1 .45 1 1s-.45 1-1 1h-1.998v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-1.998c-.55 0-1-.45-1-1s.45-1 1-1h1.999V1c0-.55.45-1 .999-1 .55 0 1 .45 1 1v2h1.999z'];\nexport var FolderNewIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"folder-new\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.06 6.69c.14-.4.5-.69.94-.69h11V5c0-.55-.45-1-1-1H6.41l-1.7-1.71A.997.997 0 004 2H1c-.55 0-1 .45-1 1v9.84l2.05-6.15h.01zM16 8c0-.55-.45-1-1-1H4a.99.99 0 00-.94.69l-2 6c-.04.09-.06.2-.06.31 0 .55.45 1 1 1h11c.44 0 .81-.29.94-.69l2-6c.04-.09.06-.2.06-.31z'];\nvar svgPaths20 = ['M20 9c0-.55-.45-1-1-1H5c-.43 0-.79.27-.93.65h-.01l-3 8h.01c-.04.11-.07.23-.07.35 0 .55.45 1 1 1h14c.43 0 .79-.27.93-.65h.01l3-8h-.01c.04-.11.07-.23.07-.35zM3.07 7.63C3.22 7.26 3.58 7 4 7h14V5c0-.55-.45-1-1-1H8.41l-1.7-1.71A.997.997 0 006 2H1c-.55 0-1 .45-1 1v12.31l3.07-7.68z'];\nexport var FolderOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"folder-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.76 5.98c-.47-.53-.77-1.22-.77-1.99h-.58L5.7 2.29a.965.965 0 00-.71-.3h-4c-.55 0-1 .45-1 1v3h8.76l.01-.01zm6.23-2.99h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.3a.99.99 0 00-.29.7 1.003 1.003 0 001.71.71l3.29-3.29V8c0 .55.45 1 1 1s1-.45 1-1V4c0-.56-.45-1.01-1-1.01zm-1.98 7.23l-.9.9-.01-.01c-.54.55-1.28.89-2.11.89-1.66 0-3-1.34-3-3 0-.77.3-1.47.78-2H-.01v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.18c-.31.11-.65.18-1 .18-.76-.01-1.45-.31-1.98-.78z'];\nvar svgPaths20 = ['M11 4H9.41l-1.7-1.71A.997.997 0 007 2H1c-.55 0-1 .45-1 1v3h11.78C11.3 5.47 11 4.77 11 4zm8-1h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L12.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1zm-2.46 7.7l-1.42 1.42a2.996 2.996 0 11-4.24-4.24l.88-.88H0v10c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-5.18c-.31.11-.65.18-1 .18-1.02 0-1.92-.52-2.46-1.3z'];\nexport var FolderSharedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"folder-shared\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.02 10.22l-.9.9-.01-.01c-.54.55-1.28.89-2.11.89-1.66 0-3-1.34-3-3 0-.77.3-1.47.78-2H4a.99.99 0 00-.94.69l-2 6c-.04.09-.06.2-.06.31 0 .55.45 1 1 1h11c.44 0 .81-.29.94-.69l1.11-3.32c-.01 0-.03.01-.05.01-.77 0-1.45-.3-1.98-.78zM2.06 6.69c.14-.4.5-.69.94-.69h5.76l.01-.01C8.3 5.46 8 4.77 8 4H6.41l-1.7-1.71A.997.997 0 004 2H1c-.55 0-1 .45-1 1v9.84l2.05-6.15h.01zM15 3h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 6.41V8c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3.07 7.63C3.22 7.26 3.58 7 4 7h7.76l.54-.54A2.97 2.97 0 0111 4H8.41l-1.7-1.71A.997.997 0 006 2H1c-.55 0-1 .45-1 1v12.31l3.07-7.68zm13.47 3.07l-1.42 1.42A2.996 2.996 0 0110 10c0-.77.3-1.47.78-2H5c-.43 0-.79.27-.93.65h-.01l-3 8h.01c-.04.11-.07.23-.07.35 0 .55.45 1 1 1h14c.43 0 .79-.27.93-.65h.01l2.01-5.36c-1-.01-1.88-.52-2.41-1.29zM19 3h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L12.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 6.41V9c0 .55.45 1 1 1s1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var FolderSharedOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"folder-shared-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.37 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.06-.01-.12-.01-.19.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.12-.39.28-.06.44-.36.5-.63.06-.11.19-.39.16-.7-.04-.4-.2-.59-.38-.67v-.07c0-.52-.05-1.26-.14-1.74a2.72 2.72 0 00-.09-.43 3.02 3.02 0 00-1.04-1.51C7.87 3.2 7.15 3 6.5 3c-.64 0-1.36.2-1.87.59-.5.38-.87.92-1.05 1.51-.04.13-.07.27-.09.4-.09.49-.14 1.24-.14 1.75v.06c-.19.07-.36.26-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.13 15.5.02 16 .02 16h12.96s.15-.5-.22-1.36c-.38-.85-2.19-1.42-3.39-1.95zm6.33-10.4l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9.99c-.55 0-1 .45-1 1s.45 1 1 1h2.58l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M11.54 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.69 3.69 0 00-1.29-1.86C9.69 4.25 8.8 4 8.01 4c-.8 0-1.69.25-2.32.73-.61.47-1.06 1.13-1.28 1.86-.05.17-.09.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.44.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59-1.48.65-3.71 1.35-4.16 2.4C-.16 19.38.02 20 .02 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.68-1.75-4.16-2.41zm8.15-12.63l-3-3a.956.956 0 00-.7-.29 1.003 1.003 0 00-.71 1.71L16.58 3H13c-.55 0-1 .45-1 1s.45 1 1 1h3.58l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.3-.71z'];\nexport var FollowerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"follower\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.37 12.69c-1.2-.53-1.04-.85-1.08-1.29-.01-.06-.01-.12-.01-.19.41-.37.75-.87.97-1.44 0 0 .01-.03.01-.04.05-.13.09-.26.12-.39.28-.06.44-.36.5-.63.06-.11.19-.39.16-.7-.04-.4-.2-.59-.38-.67v-.07c0-.52-.05-1.26-.14-1.74a2.72 2.72 0 00-.09-.43 3.02 3.02 0 00-1.04-1.51C7.87 3.2 7.15 3 6.5 3c-.64 0-1.36.2-1.87.59-.5.38-.87.92-1.05 1.51-.04.13-.07.27-.09.4-.09.49-.14 1.24-.14 1.75v.06c-.19.07-.36.26-.4.68-.03.31.1.59.16.7.06.28.23.59.51.64.04.14.08.27.13.39 0 .01.01.02.01.02v.01c.22.59.57 1.1.99 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.12 1.29-1.2.53-3.01 1.1-3.38 1.95C-.13 15.5.02 16 .02 16h12.96s.15-.5-.22-1.36c-.38-.85-2.19-1.42-3.39-1.95zM14.99 2h-2.58l.29-.29A1.003 1.003 0 0011.28.29l-2 2c-.17.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L12.41 4h2.58c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M11.55 15.92c-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.69 3.69 0 00-1.29-1.86C9.7 4.25 8.81 4 8.02 4c-.79 0-1.68.25-2.31.73-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.44.32-.48.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59C3 16.56.77 17.26.32 18.31-.15 19.38.04 20 .04 20h15.95s.18-.62-.27-1.67c-.46-1.06-2.69-1.75-4.17-2.41zM19 3h-3.58l1.29-1.29A1.003 1.003 0 0015.29.29l-3 3c-.17.18-.28.43-.28.71 0 .28.11.53.29.71l3 3c.18.18.43.29.7.29a1.003 1.003 0 00.71-1.71L15.42 5H19c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var FollowingIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"following\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.93 14.67L8.94.67h-.01C8.79.28 8.43 0 8 0s-.79.28-.93.67h-.01l-5 14h.01c-.04.1-.07.21-.07.33 0 .55.45 1 1 1 .43 0 .79-.28.93-.67h.01L5.49 11h5.02l1.55 4.34h.01c.14.38.5.66.93.66.55 0 1-.45 1-1 0-.12-.03-.23-.07-.33zM6.2 9L8 3.97 9.8 9H6.2z'];\nvar svgPaths20 = ['M17.93 18.64l-7-18C10.78.27 10.42 0 10 0s-.78.27-.93.64l-7 18c-.04.11-.07.23-.07.36 0 .55.45 1 1 1 .42 0 .78-.27.93-.64L6.41 13h7.19l2.47 6.36c.15.37.51.64.93.64.55 0 1-.45 1-1 0-.13-.03-.25-.07-.36zM7.18 11L10 3.76 12.82 11H7.18z'];\nexport var FontIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"font\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.7 9.29a1.003 1.003 0 00-1.42 1.42l.29.29H11.4l-5-5h6.17l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.29.29H.99c-.55 0-1 .45-1 1s.45 1 1 1h2.59l6.71 6.71c.18.18.43.29.71.29h1.59l-.29.29a1.003 1.003 0 001.42 1.42l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71l-2.02-2z'];\nvar svgPaths20 = ['M16.71 11.29a1.003 1.003 0 00-1.42 1.42l1.3 1.29h-2.17l-8-8h10.17L15.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 4H1c-.55 0-1 .45-1 1s.45 1 1 1h2.59l9.71 9.71c.17.18.42.29.7.29h2.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3z'];\nexport var ForkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"fork\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 11v2h2v-2H2zM1 9h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1zm9-6h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1zM6 1a1.003 1.003 0 01.71 1.71l-3 4C3.53 6.89 3.28 7 3 7s-.53-.11-.71-.29l-2-2a1.003 1.003 0 011.42-1.42L3 4.59l2.29-3.3C5.47 1.11 5.72 1 6 1zm4 10h5c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1z'];\nvar svgPaths20 = ['M2 13v4h4v-4H2zm-1-2h6c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm11-7h7c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1zM8 1a1.003 1.003 0 01.71 1.71l-5 6C3.53 8.89 3.28 9 3 9s-.53-.11-.71-.29l-2-2a1.003 1.003 0 011.42-1.42L3 6.59l4.29-5.3C7.47 1.11 7.72 1 8 1zm4 13h7c.55 0 1 .45 1 1s-.45 1-1 1h-7c-.55 0-1-.45-1-1s.45-1 1-1z'];\nexport var FormIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"form\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0a8 8 0 100 16A8 8 0 108 0z'];\nvar svgPaths20 = ['M9.96 0a10 10 0 100 20 10 10 0 100-20z'];\nexport var FullCircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"full-circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 12h1c.55 0 1-.45 1-1V8h-3v3c0 .55.45 1 1 1zM10 2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3h3V2zm0 4H7v3h3V6zm5-4c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v2h3V2zm0 3h-3v2h3V5zM5 5H2v3h3V5zm-2 7h1c.55 0 1-.45 1-1V9H2v2c0 .55.45 1 1 1zm12 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM5 2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h3V2zm3 10h1c.55 0 1-.45 1-1v-1H7v1c0 .55.45 1 1 1z'];\nvar svgPaths20 = ['M15 16h2c.55 0 1-.45 1-1v-5h-4v5c0 .55.45 1 1 1zM12 2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4h4V2zm6 4h-4v3h4V6zm0-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h4V2zm-6 5H8v5h4V7zm-9 9h2c.55 0 1-.45 1-1v-3H2v3c0 .55.45 1 1 1zm6 0h2c.55 0 1-.45 1-1v-2H8v2c0 .55.45 1 1 1zm10 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM6 2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3h4V2zm0 4H2v5h4V6z'];\nexport var FullStackedChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"full-stacked-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.41 2H5c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v4c0 .55.45 1 1 1s1-.45 1-1V3.41L5.29 6.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L3.41 2zM6 9c-.28 0-.53.11-.71.29L2 12.59V11c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.41l3.29-3.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1zm9 1c-.55 0-1 .45-1 1v1.59L10.71 9.3A.965.965 0 0010 9a1.003 1.003 0 00-.71 1.71l3.3 3.29H11c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm0-10h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.29a1.003 1.003 0 001.42 1.42L14 3.41V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3.41 2H6c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1s1-.45 1-1V3.41L7.29 8.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L3.41 2zM8 11c-.28 0-.53.11-.71.29L2 16.59V14c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1H3.41l5.29-5.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1zM19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm0 13c-.55 0-1 .45-1 1v2.59l-5.29-5.29A.965.965 0 0012 11a1.003 1.003 0 00-.71 1.71l5.3 5.29H14c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z'];\nexport var FullscreenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"fullscreen\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.12 4.74H6.98c.33-1.29.75-2.24 1.28-2.84.33-.37.64-.56.95-.56.06 0 .11.02.15.05.04.04.06.09.06.15 0 .05-.04.15-.13.29-.09.14-.13.28-.13.4 0 .18.07.33.2.46.14.13.31.19.52.19.22 0 .41-.08.56-.23.15-.16.23-.37.23-.63 0-.3-.11-.55-.34-.74C10.1 1.09 9.74 1 9.24 1c-.78 0-1.49.22-2.12.67-.64.45-1.24 1.2-1.81 2.23-.2.36-.38.59-.56.69-.18.1-.46.15-.85.15l-.26.9h1.08l-1.59 6.12c-.27 1.01-.44 1.63-.54 1.86-.14.34-.34.63-.62.87-.11.1-.24.15-.4.15a.15.15 0 01-.11-.04l-.04-.05c0-.03.04-.08.12-.16.08-.08.12-.2.12-.36 0-.18-.06-.33-.19-.44-.12-.12-.3-.18-.54-.18-.28 0-.51.08-.68.23-.16.14-.25.32-.25.53 0 .22.1.42.31.59.21.17.53.25.97.25.7 0 1.32-.18 1.87-.54.54-.36 1.02-.92 1.42-1.67.41-.75.82-1.96 1.25-3.63l.91-3.54h1.1l.29-.89zm5.43 1.52c.2-.15.41-.23.62-.23.08 0 .23.03.45.09s.41.09.57.09c.23 0 .42-.08.57-.23.16-.16.24-.36.24-.61 0-.26-.08-.47-.23-.62-.15-.15-.37-.23-.66-.23-.25 0-.5.06-.72.18-.23.12-.51.38-.86.78-.26.3-.64.81-1.15 1.55-.2-.91-.55-1.75-1.05-2.51l-2.72.46-.06.29c.2-.04.37-.06.51-.06.27 0 .49.11.67.34.28.36.67 1.45 1.17 3.26-.39.52-.66.85-.8 1.01-.24.26-.44.42-.59.5-.12.06-.25.09-.41.09-.11 0-.3-.06-.56-.18-.18-.08-.34-.12-.48-.12-.27 0-.48.08-.66.25-.17.17-.26.38-.26.64 0 .25.08.44.24.6.16.15.37.23.64.23.26 0 .5-.05.73-.16.23-.11.52-.34.86-.69.35-.35.82-.9 1.43-1.67.23.73.44 1.25.61 1.58s.37.57.59.71c.22.15.5.22.83.22.32 0 .65-.11.98-.34.44-.3.88-.81 1.34-1.53l-.26-.15c-.31.43-.54.7-.69.8-.1.07-.22.1-.35.1-.16 0-.32-.1-.48-.3-.27-.34-.62-1.27-1.06-2.8.4-.68.73-1.13 1-1.34z'];\nvar svgPaths20 = ['M10.14 5.82H8.73c.4-1.66.94-2.87 1.6-3.64.4-.48.8-.72 1.18-.72.08 0 .14.02.19.07.05.05.07.1.07.18 0 .07-.05.19-.16.37s-.16.36-.16.52c0 .23.08.43.25.59a.9.9 0 00.64.25c.28 0 .51-.1.7-.3.19-.2.28-.47.28-.81 0-.39-.14-.7-.42-.94-.28-.24-.74-.36-1.36-.36-.97 0-1.86.29-2.65.87-.79.56-1.54 1.52-2.26 2.85-.24.46-.48.75-.7.88-.22.13-.57.19-1.06.19l-.32 1.15H5.9l-1.99 7.85c-.33 1.29-.56 2.09-.67 2.39-.17.44-.43.81-.77 1.12a.74.74 0 01-.5.19c-.05 0-.1-.02-.14-.05l-.04-.07c0-.03.05-.1.15-.2.1-.1.15-.26.15-.47 0-.23-.08-.42-.23-.57-.16-.15-.38-.23-.67-.23-.35 0-.63.1-.85.29-.21.2-.32.43-.32.7 0 .29.13.54.39.75.25.22.65.33 1.2.33.88 0 1.66-.23 2.33-.69.68-.46 1.27-1.17 1.78-2.14.51-.96 1.03-2.52 1.56-4.66l1.14-4.54H9.8l.34-1.15zm6.8 1.95c.25-.2.51-.29.78-.29.1 0 .29.04.56.11.27.08.51.11.72.11.29 0 .52-.1.72-.3.18-.19.28-.45.28-.77 0-.33-.1-.6-.29-.8-.19-.2-.47-.29-.82-.29-.32 0-.62.08-.9.23-.28.15-.64.49-1.08 1-.33.38-.81 1.05-1.44 2a9.712 9.712 0 00-1.31-3.22l-3.4.59-.07.37c.25-.05.47-.08.64-.08.34 0 .62.15.84.44.35.46.84 1.85 1.46 4.19-.49.66-.82 1.09-1 1.3-.3.33-.55.54-.74.64-.15.08-.32.12-.51.12-.14 0-.38-.08-.7-.24-.22-.1-.42-.16-.59-.16-.33 0-.6.11-.82.32-.21.22-.32.49-.32.83 0 .31.1.57.3.77.2.2.47.29.8.29.32 0 .63-.07.92-.21.29-.14.64-.43 1.08-.88.43-.45 1.03-1.16 1.79-2.14.29.93.55 1.61.76 2.03.21.42.46.73.74.91.28.19.62.28 1.04.28.4 0 .81-.15 1.23-.44.55-.38 1.1-1.04 1.68-1.97l-.35-.21c-.39.55-.68.89-.87 1.03-.12.09-.27.13-.44.13-.2 0-.4-.13-.59-.38-.33-.43-.77-1.63-1.33-3.6.47-.86.89-1.44 1.23-1.71z'];\nexport var FunctionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"function\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 10c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1zM6 7c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1zm9 5H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM4 5h3c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M4 7h5c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm3 2v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1zm12 3h-6c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0 4H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var GanttChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"gantt-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M-.01 6.66l7.34 2 2 7.33 6.66-16z'];\nvar svgPaths20 = ['M0 8.33l9.17 2.5 2.5 9.17L20 0z'];\nexport var GeolocationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"geolocation\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.82 12.4h.66c.23 0 .36-.17.36-.4v-1.48l.19-.18c-.27.03-.55.06-.83.06-.28 0-.56-.03-.84-.07.02.04.05.08.07.13V12c0 .23.15.4.39.4zM6.4 15.1A5.51 5.51 0 01.9 9.6c0-.49.06-.98.18-1.43.03 0 .05-.01.08-.01h.08v.44c0 .19.17.34.36.34.03 0 .07-.01.1-.01l.71.7c.07.07.19.07.26 0s.07-.19 0-.26l-.7-.72c0-.02.03-.03.03-.05v-.11c0-.15.08-.2.23-.33h.42c.08 0 .15-.01.22-.04h.02c.02-.02.03-.02.04-.04.01-.01.01-.01.02-.01l.02-.01.9-.9c-.13-.26-.24-.52-.34-.8h-.5v-.43c0-.01.05.05.04-.08h.31c-.03-.13-.06-.26-.08-.39h-.57c.16-.12.34-.24.51-.36-.02-.23-.04-.46-.04-.7 0-.12.01-.23.02-.34A6.385 6.385 0 000 9.6C0 13.13 2.87 16 6.4 16c3.1 0 5.67-2.22 6.26-5.15l-.78-.88c-.21 2.85-2.58 5.13-5.48 5.13zm-1.7-2.93v-.28h.12c.23 0 .39-.19.39-.42v-.54s.01-.01 0-.01L3.77 9.45h-.62c-.23 0-.38.19-.38.42v1.6c0 .23.14.42.38.42h.26v1.61c0 .23.22.41.45.41s.45-.18.45-.41v-.97H4.3c.24 0 .4-.13.4-.36zm11.07-2.34l-2.94-2.94c.11-.17.21-.34.3-.52.01-.03.03-.06.04-.09.08-.18.16-.36.22-.55v-.01c.06-.19.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.4.05-.61a4.4 4.4 0 00-4.4-4.4C6.77 0 4.8 1.97 4.8 4.4s1.97 4.4 4.4 4.4c.21 0 .41-.02.61-.05.04 0 .09-.01.14-.02.2-.03.39-.08.58-.14h.01c.19-.06.37-.14.55-.22.03-.01.06-.03.09-.04.18-.09.35-.19.52-.3l2.94 2.94a.8.8 0 00.57.23c.44 0 .8-.36.8-.8a.895.895 0 00-.24-.57zM9.2 7.6C7.43 7.6 6 6.17 6 4.4c0-1.77 1.43-3.2 3.2-3.2s3.2 1.43 3.2 3.2c0 1.77-1.43 3.2-3.2 3.2zm1.54 4.26v-.52c0-.09-.1-.17-.19-.17s-.19.07-.19.17v.52c0 .09.1.17.19.17s.19-.07.19-.17z'];\nvar svgPaths20 = ['M8 18.88c-3.79 0-6.88-3.09-6.88-6.88 0-.61.08-1.22.23-1.79.03.01.06-.01.1-.01h.09v.55c0 .23.21.42.44.42.04 0 .09-.01.12-.02l.9.88c.09.09.23.09.32 0s.09-.23 0-.32l-.86-.9c0-.02.05-.04.05-.07v-.13c0-.18.1-.25.29-.41h.53c.1 0 .19-.01.27-.05.01-.01.02 0 .03-.01.02-.01.03-.02.05-.04.01-.01.02-.01.02-.02l.02-.02 1.13-1.13c-.16-.32-.3-.65-.42-.99h-.64v-.53c0-.01.06.06.06-.1h.38c-.04-.16-.08-.32-.1-.48h-.71c.2-.16.42-.31.64-.45C4.02 6.09 4 5.8 4 5.5c0-.14.01-.28.02-.43C1.62 6.46 0 9.04 0 12c0 4.41 3.59 8 8 8 3.87 0 7.09-2.77 7.82-6.44l-.97-1.1c-.26 3.57-3.23 6.42-6.85 6.42zm-2.12-3.67v-.35h.15c.29 0 .49-.23.49-.53v-.68c0-.01.01-.01 0-.02L4.71 11.8h-.77c-.29 0-.47.24-.47.53v2c0 .29.18.53.47.53h.33v2.02c0 .28.28.51.56.51s.56-.23.56-.51v-1.22h-.01c.29 0 .5-.16.5-.45zm13.83-2.92l-3.68-3.68c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.24.06-.49.06-.75C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.04.11-.05.23-.11.44-.24.65-.38l3.68 3.68c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM11.5 9.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm1.93 5.33v-.65c0-.11-.13-.21-.24-.21-.11 0-.24.09-.24.21v.65c0 .11.13.21.24.21.11 0 .24-.1.24-.21zm-2.41.67h.83c.29 0 .46-.21.46-.5v-1.86l.23-.22c-.34.05-.69.08-1.04.08-.36 0-.7-.03-1.05-.08.03.05.06.1.08.16V15c.01.29.2.5.49.5z'];\nexport var GeosearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"geosearch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 1c-1.66 0-3 1.34-3 3 0 1.25.76 2.32 1.85 2.77A2.02 2.02 0 019 8H7c-.73 0-1.41.2-2 .55V5.82C6.16 5.4 7 4.3 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.82v4.37c-1.16.4-2 1.51-2 2.81 0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.04-.53-1.95-1.32-2.49.35-.31.81-.51 1.32-.51h2c1.92 0 3.52-1.35 3.91-3.15A2.996 2.996 0 0012 1zM4 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M15 2c-1.66 0-3 1.34-3 3 0 1.3.84 2.4 2 2.82V9c0 1.1-.9 2-2 2H8c-.73 0-1.41.21-2 .55V5.82C7.16 5.4 8 4.3 8 3c0-1.66-1.34-3-3-3S2 1.34 2 3c0 1.3.84 2.4 2 2.82v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.25-.77-2.3-1.85-2.75C6.45 13.52 7.16 13 8 13h4c2.21 0 4-1.79 4-4V7.82C17.16 7.4 18 6.3 18 5c0-1.66-1.34-3-3-3zM5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM15 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nexport var GitBranchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-branch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 7h-3.14c-.45-1.72-2-3-3.86-3S4.59 5.28 4.14 7H1c-.55 0-1 .45-1 1s.45 1 1 1h3.14c.45 1.72 2 3 3.86 3s3.41-1.28 3.86-3H15c.55 0 1-.45 1-1s-.45-1-1-1zm-7 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'];\nvar svgPaths20 = ['M19 9h-4.1a5 5 0 00-9.8 0H1c-.55 0-1 .45-1 1s.45 1 1 1h4.1a5 5 0 009.8 0H19c.55 0 1-.45 1-1s-.45-1-1-1zm-9 4c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'];\nexport var GitCommitIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-commit\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 6c-1.3 0-2.4.84-2.82 2H9c-1.62 0-3-.96-3.63-2.34C6.33 5.16 7 4.16 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.81v4.37C1.84 10.6 1 11.7 1 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V8.43A5.89 5.89 0 009 10h.18A2.996 2.996 0 0015 9c0-1.66-1.34-3-3-3zm-8 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M15 8c-1.3 0-2.4.84-2.82 2H11c-2.49 0-4.54-1.83-4.92-4.21A2.995 2.995 0 005 0C3.34 0 2 1.34 2 3c0 1.3.84 2.4 2 2.81v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V9.86C7.27 11.17 9.03 12 11 12h1.18A2.996 2.996 0 0018 11c0-1.66-1.34-3-3-3zM5 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM5 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nexport var GitMergeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-merge\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3.18 4.8C10.51 7.51 9.82 8 9 8H7c-.73 0-1.41.2-2 .55V5.82C6.16 5.4 7 4.3 7 3c0-1.66-1.34-3-3-3S1 1.34 1 3c0 1.3.84 2.4 2 2.82v4.37c-1.16.4-2 1.51-2 2.81 0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.04-.53-1.95-1.32-2.49.35-.31.81-.51 1.32-.51h2c1.9 0 3.49-1.33 3.89-3.11-.29.07-.58.11-.89.11-.41 0-.8-.08-1.18-.2zM4 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 12c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M17 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3 4.86V9c0 1.1-.9 2-2 2H8c-.73 0-1.41.21-2 .55V5.82C7.16 5.4 8 4.3 8 3c0-1.66-1.34-3-3-3S2 1.34 2 3c0 1.3.84 2.4 2 2.82v8.37C2.84 14.6 2 15.7 2 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.25-.77-2.3-1.85-2.75C6.45 13.52 7.16 13 8 13h4c2.21 0 4-1.79 4-4V7.86c-.32.08-.65.14-1 .14s-.68-.06-1-.14zM5 2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nexport var GitNewBranchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-new-branch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 1C1.34 1 0 2.34 0 4c0 1.3.84 2.4 2 2.82v3.37C.84 10.6 0 11.7 0 13c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V6.82C5.16 6.4 6 5.3 6 4c0-1.66-1.34-3-3-3zm0 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm11 5.18V6c0-1.66-1.34-3-3-3H9.41l1.29-1.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-3 3C6.11 3.47 6 3.72 6 4c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L9.41 5H11c.55 0 1 .45 1 1v4.18A2.996 2.996 0 0013 16c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82zM13 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M17 14.18V7c0-2.21-1.79-4-4-4h-2.59l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C7.11 3.47 7 3.72 7 4c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L10.41 5H13c1.1 0 2 .9 2 2v7.18A2.996 2.996 0 0016 20c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82zM16 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 1C2.34 1 1 2.34 1 4c0 1.3.84 2.4 2 2.82v7.37C1.84 14.6 1 15.7 1 17c0 1.66 1.34 3 3 3s3-1.34 3-3c0-1.3-.84-2.4-2-2.82V6.82C6.16 6.4 7 5.3 7 4c0-1.66-1.34-3-3-3zm0 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM4 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nexport var GitPullIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-pull\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 6h1V5H4v1zm9 3c0-.28-.11-.53-.29-.71l-3-3C9.53 5.11 9.28 5 9 5s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L8 8.41V15c0 .55.45 1 1 1s1-.45 1-1V8.41l1.29 1.29c.18.19.43.3.71.3.55 0 1-.45 1-1zM5 3H4v1h1V3zm10-3H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h5v-2H2v-1h4v-1H3V2h11v9h-2v1h2v1h-2v2h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M15 11c0-.28-.11-.53-.29-.71l-3-3C11.53 7.11 11.28 7 11 7s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42l1.29-1.3V19c0 .55.45 1 1 1s1-.45 1-1v-8.59l1.29 1.29c.18.19.43.3.71.3.55 0 1-.45 1-1zm4-11H1C.45 0 0 .45 0 1v16c0 .55.45 1 1 1h7v-2H2v-2h6v-1H4V2h14v11h-4v1h4v2h-4v2h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 8h2V6H5v2zm2-5H5v2h2V3z'];\nexport var GitPushIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-push\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 9H4v1h1V9zm10-9H1C.45 0 0 .45 0 1v13c0 .55.45 1 1 1h3v1l2-1 2 1v-1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM4 13H2v-1h2v1zm10 0H8v-1h6v1zm0-2H3V2h11v9zM5 3H4v1h1V3zm0 4H4v1h1V7zm0-2H4v1h1V5z'];\nvar svgPaths20 = ['M7 3H5v2h2V3zm0 6H5v2h2V9zm0-3H5v2h2V6zm12-6H1C.45 0 0 .45 0 1v16c0 .55.45 1 1 1h4v2l2-1 2 1v-2h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 16H9v-1H5v1H2v-2h16v2zm0-3H4V2h14v11z'];\nexport var GitRepoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"git-repo\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 0v4c0 2.97 2.16 5.43 5 5.91V14H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1H9V9.91c2.84-.48 5-2.94 5-5.91V0H2z'];\nvar svgPaths20 = ['M17 6V0H3v6c0 3.53 2.61 6.43 6 6.92V18H6c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1h-3v-5.08c3.39-.49 6-3.39 6-6.92z'];\nexport var GlassIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"glass\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4.45 7.83c-.26 0-.41.21-.41.46v1.75c0 .26.16.46.41.46h.29v1.77c0 .25.24.45.49.45s.49-.2.49-.45V11.2h-.01c.26 0 .44-.14.44-.4v-.3h.14c.26 0 .43-.2.43-.46v-.59s.01-.01 0-.01l-1.58-1.6h-.69zM8.51 3.9h.22c.06 0 .12-.01.12-.07 0-.06-.05-.07-.12-.07h-.22c-.06 0-.12.01-.12.07.01.06.06.07.12.07zm-2.33-.05c.07-.07.07-.19 0-.26l-.5-.5a.187.187 0 00-.26 0c-.07.07-.07.19 0 .26l.5.5c.07.07.19.07.26 0zm3.06.89c.07 0 .14-.06.14-.12v-.31c0-.07-.07-.12-.14-.12s-.14.06-.14.12v.31c0 .07.07.12.14.12zM8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-.55.1-1.07.23-1.57h.11v.47c0 .2.18.37.39.37.03 0 .08-.01.11-.02l.78.77c.08.08.2.08.28 0 .08-.08.08-.2 0-.28l-.75-.78c0-.02.04-.04.04-.06v-.12c0-.16.09-.22.25-.36h.46c.09 0 .17-.01.24-.05h.02c.02-.01.03-.02.05-.03.01-.01.01-.01.02-.01l.02-.02 1.59-1.58c.18-.18.18-.46 0-.64s-.47-.15-.65.03l-.3.34h-.57v-.48c0-.01.05.05.05-.09h.64c.12 0 .22-.09.22-.21s-.1-.21-.22-.21H4.1c.18-.15.34-.31.54-.44l.01-.01c.21-.14.45-.25.68-.37.15-.07.29-.15.44-.21.17-.07.35-.11.53-.17.18-.05.35-.12.53-.16a6.05 6.05 0 013.47.35c.05.02.1.05.16.08.25.11.48.24.71.39.25.16.49.34.71.55H10.6s0-.03-.01-.03c-.04 0-.09 0-.13.03l-.51.51a.17.17 0 000 .23c.06.06.17.06.23 0l.42-.44.01-.02h.25c0 .14-.07.09-.07.12v.07c0 .22-.15.37-.36.37h-.38c-.19 0-.38.21-.38.4v.17h-.1c-.12 0-.2.06-.2.18v.25h-.23c-.17 0-.3.11-.3.28 0 .17.13.26.3.26.07 0 .14.03.19-.11l.04.01.49-.46h.17l.39.37c.03.03.08.02.12-.01.03-.03.03-.12 0-.15l-.32-.35h.23l.09.12c.18.18.48.17.66-.01l.09-.1h.4c.02 0 .08.05.08.05v.24l-.05-.01h-.36c-.11 0-.21.1-.21.21 0 .11.09.21.21.21h.41v.15c-.14.21-.24.42-.45.42h-.94v-.01l-.44-.44a.47.47 0 00-.66 0l-.42.43v.01H8.6c-.26 0-.49.21-.49.46v.92c0 .26.23.45.49.45h.9c.34.14.57.35.72.69v1.68c0 .26.17.44.42.44h.72c.26 0 .4-.18.4-.44V9l.89-.86.03-.02.02-.01h.03c.07-.08.15-.19.15-.31v-.91c0-.18-.16-.32-.31-.46H13c.01.28.21.42.46.42h.42c.08.37.12.76.12 1.15 0 3.31-2.69 6-6 6zm4.54-4.27c-.1 0-.21.08-.21.18v.57c0 .1.11.18.21.18.1 0 .21-.08.21-.18v-.57c0-.1-.11-.18-.21-.18zM8.37 3.19c0-.25-.2-.42-.46-.42h-.54c-.25 0-.42.18-.42.43 0 .03-.1.04.05.08v.47c0 .15.06.27.21.27s.21-.12.21-.27v-.14h.5c.24 0 .45-.16.45-.42z'];\nvar svgPaths20 = ['M7.53 4.37c.1-.1.1-.26 0-.35l-.68-.68c-.1-.1-.25-.1-.35 0-.1.1-.1.26 0 .35l.68.68c.1.1.25.1.35 0zm3.17.06h.3c.09 0 .16-.01.16-.1 0-.09-.07-.1-.16-.1h-.3c-.09 0-.16.01-.16.1s.07.1.16.1zm.98 1.15c.09 0 .19-.08.19-.17v-.42c0-.09-.1-.17-.19-.17s-.19.08-.19.17v.42c0 .09.1.17.19.17zm-6.5 4.19c-.35 0-.56.28-.56.63v2.37c0 .35.21.62.56.62h.39v2.4c0 .34.33.61.67.61s.67-.27.67-.61v-1.44h-.02c.35 0 .6-.19.6-.54v-.41h.18c.35 0 .58-.28.58-.62v-.81c0-.01.01-.01 0-.02L6.1 9.77h-.92zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8 0-.74.11-1.46.3-2.14h.03v.65c0 .28.25.5.53.5.05 0 .1-.01.15-.02l1.05 1.05c.1.11.28.11.38 0 .1-.1.11-.27 0-.38L3.42 8.59c0-.03.05-.05.05-.08v-.16c0-.22.12-.3.34-.49h.63c.12 0 .23-.01.32-.07.01-.01.02 0 .03-.01.02-.02.04-.03.06-.04.01-.01.02-.01.03-.02l.02-.02 2.15-2.15c.24-.24.24-.63 0-.86-.23-.24-.62-.19-.86.04l-.41.46H5v-.64c0-.01.07.07.07-.12h.87c.17 0 .3-.12.3-.29 0-.17-.13-.29-.3-.29H4.88C6.27 2.7 8.05 2 10 2s3.73.7 5.12 1.86h-1.58l-.01-.04c-.06 0-.12 0-.17.04l-.71.7c-.09.09-.09.23 0 .31.09.09.23.09.32 0l.56-.6.01-.03h.34c0 .19-.1.13-.1.16v.1c0 .29-.2.5-.49.5h-.51c-.25 0-.52.28-.52.54v.23h-.12c-.16 0-.27.08-.27.24v.33h-.32c-.23 0-.41.15-.41.38 0 .22.18.35.41.35.1 0 .19.04.26-.16l.06.01.66-.59h.23l.53.5c.04.04.11.03.16-.01.04-.04.04-.16 0-.2L13 6.15h.32l.12.16c.25.25.65.23.89-.02l.12-.14H15c.02 0 .11.07.11.07v.33s-.06-.01-.07-.01h-.49c-.16 0-.28.13-.28.29 0 .16.13.29.28.29h.49c.01 0 .07-.01.07-.01v.2c-.19.28-.33.57-.62.57h-1.28s0-.01-.01-.01l-.58-.58a.622.622 0 00-.89 0l-.58.58s0 .01-.01.01h-.34c-.35 0-.67.28-.67.63v1.25c0 .35.32.61.67.61h1.22c.46.19.78.48.97.94v2.28c0 .35.23.6.58.6h.98c.35 0 .54-.25.54-.6v-2.2l1.21-1.17.04-.02.02-.01h.04c.1-.11.2-.26.2-.42V8.49c0-.25-.22-.44-.42-.63h.58c.02.38.29.57.63.57h.43c.13.51.18 1.03.18 1.57 0 4.42-3.58 8-8 8zm6.16-5.65c-.14 0-.29.11-.29.25v.77c0 .14.15.25.29.25.14 0 .29-.11.29-.25v-.77c0-.14-.15-.25-.29-.25zM10.5 3.48c0-.34-.28-.57-.62-.57h-.74c-.34 0-.57.25-.57.59 0 .05-.13.06.06.1v.64c0 .2.09.36.29.36.2 0 .29-.16.29-.36v-.19h.68c.33 0 .61-.23.61-.57z'];\nexport var GlobeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"globe\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm5.17 5h-2.44c-.21-1.11-.51-2.03-.91-2.69 1.43.46 2.61 1.43 3.35 2.69zM10 8c0 .73-.05 1.39-.12 2H6.12C6.05 9.39 6 8.73 6 8s.05-1.39.12-2h3.76c.07.61.12 1.27.12 2zM8 2c.67 0 1.36 1.1 1.73 3H6.27C6.64 3.1 7.33 2 8 2zm-1.82.31c-.4.66-.71 1.58-.91 2.69H2.83a6.025 6.025 0 013.35-2.69zM2 8c0-.7.13-1.37.35-2h2.76C5.04 6.62 5 7.28 5 8s.04 1.38.11 2H2.35C2.13 9.37 2 8.7 2 8zm.83 3h2.44c.21 1.11.51 2.03.91 2.69A6.025 6.025 0 012.83 11zM8 14c-.67 0-1.36-1.1-1.73-3h3.46c-.37 1.9-1.06 3-1.73 3zm1.82-.31c.4-.66.7-1.58.91-2.69h2.44a6.025 6.025 0 01-3.35 2.69zM13.65 10h-2.76c.07-.62.11-1.28.11-2s-.04-1.38-.11-2h2.76c.22.63.35 1.3.35 2s-.13 1.37-.35 2z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm7.39 7h-3.63c-.31-1.99-.92-3.66-1.72-4.73 2.45.65 4.41 2.42 5.35 4.73zM13 10c0 .69-.04 1.36-.11 2H7.11a18.419 18.419 0 010-4h5.77c.08.64.12 1.31.12 2zm-3-8c1.07 0 2.25 2.05 2.75 5h-5.5c.5-2.95 1.68-5 2.75-5zm-2.04.27C7.16 3.34 6.55 5.01 6.24 7H2.61c.94-2.31 2.9-4.08 5.35-4.73zM2 10c0-.69.11-1.36.28-2h3.83a18.419 18.419 0 000 4H2.28c-.17-.64-.28-1.31-.28-2zm.61 3h3.63c.31 1.99.92 3.66 1.72 4.73A7.996 7.996 0 012.61 13zM10 18c-1.07 0-2.25-2.05-2.75-5h5.5c-.5 2.95-1.68 5-2.75 5zm2.04-.27c.79-1.07 1.4-2.74 1.72-4.73h3.63a7.996 7.996 0 01-5.35 4.73zM13.89 12a18.419 18.419 0 000-4h3.83c.17.64.28 1.31.28 2s-.11 1.36-.28 2h-3.83z'];\nexport var GlobeNetworkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"globe-network\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 3c-1.06 0-1.92.83-1.99 1.88l-1.93.97A2.95 2.95 0 008 5c-.56 0-1.08.16-1.52.43L3.97 3.34C3.98 3.23 4 3.12 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.24 0 .47-.05.68-.13l2.51 2.09C5.08 7.29 5 7.63 5 8c0 .96.46 1.81 1.16 2.35l-.56 1.69c-.91.19-1.6.99-1.6 1.96 0 1.1.9 2 2 2s2-.9 2-2c0-.51-.2-.97-.51-1.32l.56-1.69A2.99 2.99 0 0011 8c0-.12-.02-.24-.04-.36l1.94-.97c.32.21.69.33 1.1.33 1.1 0 2-.9 2-2s-.9-2-2-2z'];\nvar svgPaths20 = ['M17.5 4A2.5 2.5 0 0015 6.5c0 .06.01.12.02.18l-1.9.84C12.38 6.6 11.27 6 10 6c-.83 0-1.59.25-2.23.68L4.91 4.14c.05-.21.09-.42.09-.64a2.5 2.5 0 00-5 0A2.5 2.5 0 002.5 6c.42 0 .81-.11 1.16-.3l2.79 2.48C6.17 8.73 6 9.34 6 10c0 1.41.73 2.64 1.83 3.35l-.56 1.67A2.498 2.498 0 005 17.5a2.5 2.5 0 005 0c0-.74-.32-1.39-.83-1.85l.56-1.68c.09.01.18.03.27.03 2.21 0 4-1.79 4-4 0-.22-.03-.44-.07-.65l2.02-.9c.43.34.96.55 1.55.55a2.5 2.5 0 000-5z'];\nexport var GraphIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"graph\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.89 8.11l-.01.01-.38-.38-.38.38-.02-.02c-.54.55-1.27.9-2.1.9-1.66 0-3-1.34-3-3 0-.83.35-1.56.9-2.1l-.02-.02.38-.38-.38-.38.01-.01C7.35 2.57 7 1.83 7 1c0-.34.07-.65.17-.96A8.004 8.004 0 000 8c0 4.42 3.58 8 8 8 4.14 0 7.54-3.14 7.96-7.17-.31.1-.62.17-.96.17-.83 0-1.57-.35-2.11-.89zm1.02-4.61l1.79-1.79c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-1.79 1.8L10.71.3A.965.965 0 0010 0a1.003 1.003 0 00-.71 1.71l1.79 1.79-1.79 1.79a1.003 1.003 0 001.42 1.42l1.79-1.79 1.79 1.79a1.003 1.003 0 001.42-1.42l-1.8-1.79z'];\nvar svgPaths20 = ['M17.41 4l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L16 2.59 13.71.3A.965.965 0 0013 0a1.003 1.003 0 00-.71 1.71L14.59 4 12.3 6.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L16 5.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L17.41 4zM19 10c-.83 0-1.55-.36-2.09-.91l-.03.03-.88-.88-.88.88a2.996 2.996 0 11-4.24-4.24l.88-.88-.88-.88.03-.03C10.36 2.55 10 1.83 10 1c0-.35.07-.68.18-.99-.06 0-.12-.01-.18-.01C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-.06-.01-.12-.01-.18-.31.11-.64.18-.99.18z'];\nexport var GraphRemoveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"graph-remove\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.713 5.958a1 1 0 01.574-1.916l10 3c.95.285.95 1.63 0 1.916l-10 3a1 1 0 01-.574-1.916L9.52 8 2.713 5.958z'];\nvar svgPaths20 = ['M12.838 10l-9.154 3.051a1 1 0 00.632 1.898l12-4c.912-.304.912-1.594 0-1.898l-12-4a1 1 0 00-.632 1.898L12.838 10z'];\nexport var GreaterThanIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"greater-than\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.713 3.958a1 1 0 01.574-1.916l10 3c.95.285.95 1.63 0 1.916l-10 3a1 1 0 01-.574-1.916L9.52 6 2.713 3.958zM3 12h10a1 1 0 010 2H3a1 1 0 010-2z'];\nvar svgPaths20 = ['M3.684 11.051a1 1 0 00.632 1.898l12-4c.912-.304.912-1.594 0-1.898l-12-4a1 1 0 00-.632 1.898L12.838 8l-9.154 3.051zM4 15h12a1 1 0 110 2H4a1 1 0 010-2z'];\nexport var GreaterThanOrEqualToIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"greater-than-or-equal-to\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 9c.55 0 1-.45 1-1s-.45-1-1-1h-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1H9V1c0-.55-.45-1-1-1S7 .45 7 1v1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v3H1c-.55 0-1 .45-1 1s.45 1 1 1h1v3H1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-1h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V9h1zm-8 3H4V9h3v3zm0-5H4V4h3v3zm5 5H9V9h3v3zm0-5H9V4h3v3z'];\nvar svgPaths20 = ['M19 11c.55 0 1-.45 1-1s-.45-1-1-1h-2V5h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-4V1c0-.55-.45-1-1-1S9 .45 9 1v2H5V1c0-.55-.45-1-1-1S3 .45 3 1v2H1c-.55 0-1 .45-1 1s.45 1 1 1h2v4H1c-.55 0-1 .45-1 1s.45 1 1 1h2v4H1c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h4v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2v-4h2zM9 15H5v-4h4v4zm0-6H5V5h4v4zm6 6h-4v-4h4v4zm0-6h-4V5h4v4z'];\nexport var GridIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"grid\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 1v6h7V0H1C.45 0 0 .45 0 1zm0 14c0 .55.45 1 1 1h6V9H0v6zM15 0H9v7h7V1c0-.55-.45-1-1-1zM9 16h6c.55 0 1-.45 1-1V9H9v7z'];\nvar svgPaths20 = ['M0 19c0 .55.45 1 1 1h8v-9H0v8zM0 1v8h9V0H1C.45 0 0 .45 0 1zm19-1h-8v9h9V1c0-.55-.45-1-1-1zm-8 20h8c.55 0 1-.45 1-1v-8h-9v9z'];\nexport var GridViewIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"grid-view\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-3H5C2.24 3 0 5.24 0 8s2.24 5 5 5h6c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 9H5c-2.21 0-4-1.79-4-4s1.79-4 4-4h6c2.21 0 4 1.79 4 4s-1.79 4-4 4zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M6 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm8-3H6c-3.31 0-6 2.69-6 6s2.69 6 6 6h8c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 11H6c-2.76 0-5-2.24-5-5s2.24-5 5-5h8c2.76 0 5 2.24 5 5s-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'];\nexport var GroupObjectsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"group-objects\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 12c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1zm3 0c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1zm2 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-9-1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1zm-3 0c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v9c0 .55.45 1 1 1z'];\nvar svgPaths20 = ['M12 16h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1zm7 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-3-1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1zm-9 0h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1zm-4 0h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1z'];\nexport var GroupedBarChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"grouped-bar-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 5c0-.55-.45-1-1-1-.41 0-.76.24-.91.59v.01s0 .01-.01.01L11.57 8h-.36l.78-4.84C12 3.11 12 3.05 12 3a1 1 0 00-1.99-.16v.01L9.18 8H9V1c0-.55-.45-1-1-1S7 .45 7 1v7h-.09l-.93-5.18A1 1 0 005 2c-.55 0-1 .45-1 1 0 .05 0 .11.01.16L5.26 11h-.04L2.83 7.44C2.65 7.18 2.35 7 2 7c-.55 0-1 .45-1 1 0 .17.04.33.12.47l3 5.69h.01v.01A5.002 5.002 0 0013 11v-.59l1.93-5.05c.05-.11.07-.23.07-.36z'];\nvar svgPaths20 = ['M17 5c-.42 0-.79.27-.93.64L14.38 10h-.77l1.34-6.67c.03-.1.05-.21.05-.33a.998.998 0 00-1.98-.19h-.01L11.57 10H11V1c0-.55-.45-1-1-1S9 .45 9 1v9h-.2L6.97 2.76a.997.997 0 00-1.73-.41l-.03.03c-.01.02-.02.03-.03.04-.01.02-.01.03-.02.04v.01c-.01.01-.02.02-.02.03v.01c-.02.01-.02.02-.03.03 0 0 0 .01-.01.01 0 .01 0 .02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 0 0 .01-.01.01 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03 0 .01 0 .01-.01.02 0 .01-.01.02-.01.03v.02c0 .01 0 .02-.01.03V3c0 .05 0 .09.01.14l1.45 10.25L6 12.7v.01L3.84 9.45h-.01A.98.98 0 003 9c-.55 0-1 .45-1 1 0 .2.06.39.17.55L6 18.44C7.06 19.4 8.46 20 10 20c3.31 0 6-2.69 6-6v-1.84l.01-.03v-.06l1.94-5.75A1.003 1.003 0 0017 5z'];\nexport var HandIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"hand\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.72 7.87c-1.54-.67-2.99-2.68-3.7-3.95C10.11 1.95 9.93 0 6.14 0 4.05 0 2.71.61 1.92 2.12 1.27 3.36 1 5.21 1 7.83v.79c0 .65.6 1.18 1.35 1.18.34 0 .64-.11.88-.29.17.48.68.84 1.29.84.41 0 .78-.16 1.03-.42.23.37.67.63 1.19.63.57 0 1.05-.31 1.25-.74l.01.63v4.05c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5V7.9c.58.41 1.55 1.21 2.47 1.29 1.57.14 1.82-1.07 1.25-1.32z'];\nvar svgPaths20 = ['M17.68 9.84C15.91 9 14.27 6.49 13.45 4.9 12.41 2.43 12.21 0 7.87 0 5.49 0 3.95.76 3.05 2.65 2.31 4.2 2 5.48 2 9.79v.99c0 .82.69 1.48 1.54 1.48.38 0 .73-.14 1-.36.19.6.78 1.05 1.47 1.05.47 0 .89-.2 1.17-.52.26.47.77.79 1.36.79.65 0 1.2-.39 1.43-.93l.03.77v5.44c0 .48.23.91.59 1.18.21.19.5.32.85.32h.06c.83 0 1.5-.67 1.5-1.5v-8.24l.01-.67c.85.98 1.92 1.76 3.24 1.89 1.79.19 2.09-1.33 1.43-1.64z'];\nexport var HandDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"hand-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.08 4.97c-1.26-.71-3.27-2.15-3.95-3.7C7.88.7 6.67.96 6.81 2.52c.09.93.89 1.9 1.3 2.48H1.5C.67 5 0 5.67 0 6.5S.67 8 1.5 8h4.05l.63.01c-.44.2-.75.69-.75 1.25 0 .52.26.96.63 1.19-.26.25-.42.61-.42 1.03 0 .61.35 1.12.84 1.29-.18.24-.29.54-.29.88 0 .75.54 1.35 1.19 1.35h.79c2.62 0 4.47-.28 5.71-.92 1.51-.79 2.12-2.14 2.12-4.22 0-3.79-1.95-3.97-3.92-4.89z'];\nvar svgPaths20 = ['M15.1 6.54c-1.58-.81-4.09-2.46-4.94-4.23-.31-.65-1.82-.35-1.64 1.43.13 1.33.91 2.4 1.89 3.24L9.74 7H1.5C.67 7 0 7.67 0 8.5v.06c0 .36.13.64.32.85.27.36.7.59 1.18.59h5.44l.78.01c-.54.23-.93.78-.93 1.43 0 .59.32 1.1.79 1.36-.32.28-.52.7-.52 1.17 0 .69.44 1.28 1.05 1.47-.22.27-.36.62-.36 1 0 .85.66 1.54 1.48 1.54h.99c4.31 0 5.59-.31 7.14-1.05 1.89-.9 2.65-2.44 2.65-4.82-.01-4.32-2.44-4.52-4.91-5.57z'];\nexport var HandLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"hand-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.5 5H7.89c.41-.58 1.21-1.55 1.3-2.47C9.34.97 8.12.71 7.87 1.28c-.67 1.54-2.68 2.99-3.95 3.7C1.95 5.89 0 6.07 0 9.86c0 2.09.61 3.43 2.12 4.22 1.24.65 3.09.92 5.71.92h.79c.65 0 1.18-.6 1.18-1.35 0-.34-.11-.64-.29-.88.48-.17.84-.68.84-1.29 0-.41-.16-.78-.42-1.03.37-.23.63-.67.63-1.19 0-.57-.31-1.05-.74-1.25l.63-.01h4.05c.83 0 1.5-.67 1.5-1.5S15.33 5 14.5 5z'];\nvar svgPaths20 = ['M20 8.5c0-.83-.67-1.5-1.5-1.5h-8.24l-.67-.01c.98-.85 1.76-1.92 1.89-3.24.18-1.79-1.33-2.08-1.65-1.43-.84 1.76-3.35 3.41-4.93 4.23C2.43 7.59 0 7.79 0 12.13c0 2.38.76 3.92 2.65 4.82C4.2 17.69 5.48 18 9.79 18h.99c.82 0 1.48-.69 1.48-1.54 0-.38-.14-.73-.36-1 .6-.19 1.05-.78 1.05-1.47 0-.47-.2-.89-.52-1.17.47-.26.79-.77.79-1.36 0-.65-.39-1.2-.93-1.43l.77-.03h5.44c.48 0 .91-.23 1.18-.59.19-.21.32-.49.32-.85v-.03-.03z'];\nexport var HandRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"hand-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.65 6.19c-.34 0-.64.11-.88.29-.17-.48-.68-.84-1.29-.84-.41 0-.78.16-1.03.42-.23-.37-.67-.63-1.19-.63-.57 0-1.05.31-1.25.74L8 5.55V1.5C8 .67 7.33 0 6.5 0S5 .67 5 1.5v6.61c-.58-.41-1.55-1.21-2.48-1.3C.96 6.67.7 7.88 1.28 8.13c1.54.67 2.99 2.68 3.7 3.95C5.89 14.05 6.07 16 9.86 16c2.09 0 3.43-.61 4.22-2.12.64-1.24.92-3.09.92-5.71v-.79c0-.65-.6-1.19-1.35-1.19z'];\nvar svgPaths20 = ['M16.46 7.74c-.38 0-.73.14-1 .36-.19-.6-.78-1.05-1.47-1.05-.47 0-.89.2-1.17.52-.26-.47-.77-.79-1.36-.79-.65 0-1.2.39-1.43.93L10 6.94V1.5c0-.48-.23-.91-.59-1.18C9.2.13 8.92 0 8.56 0H8.5C7.67 0 7 .67 7 1.5v8.24l-.01.67c-.84-.98-1.92-1.76-3.24-1.89-1.79-.18-2.08 1.33-1.43 1.65 1.77.84 3.41 3.35 4.23 4.94 1.05 2.47 1.25 4.9 5.58 4.9 2.38 0 3.92-.76 4.82-2.65.74-1.56 1.05-2.84 1.05-7.15v-.99c0-.81-.69-1.48-1.54-1.48z'];\nexport var HandUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"hand-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 1c-.55 0-1 .45-1 1v5H4V2c0-.55-.45-1-1-1s-1 .45-1 1v12c0 .55.45 1 1 1s1-.45 1-1V9h8v5c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M16 1c-.55 0-1 .45-1 1v7H5V2c0-.55-.45-1-1-1s-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1v-7h10v7c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nexport var HeaderIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"header\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.06 8c-.04.23-.12.44-.25.61-.13.17-.29.3-.48.41-.18.11-.39.18-.62.23-.23.04-.46.07-.71.07v1.03h1.74V16H15V8h-.94zM7 0c-.56 0-1 .45-1 1v4H2V1c0-.55-.45-1-1-1-.56 0-1 .45-1 1v10c0 .55.45 1 1 1 .56 0 1-.45 1-1V7h4v4c0 .55.45 1 1 1 .56 0 1-.45 1-1V1c0-.54-.45-1-1-1z'];\nvar svgPaths20 = ['M10 0c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1s-1-.45-1-1V9H2v6c0 .55-.45 1-1 1s-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v6h7V1c0-.55.45-1 1-1zm7.4 10.77c.17-.2.29-.46.34-.77H19v10h-1.5v-7.11H15v-1.24c.32 0 .63-.03.93-.08.31-.06.58-.16.83-.29.26-.12.47-.3.64-.51z'];\nexport var HeaderOneIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"header-one\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.17 13.93c-.17.15-.33.29-.46.44-.13.16-.22.32-.27.49h3.55V16H11c.01-.65.16-1.22.44-1.71s.67-.91 1.17-1.27c.24-.18.49-.36.75-.54.25-.18.49-.36.71-.57.21-.2.39-.42.53-.65.14-.24.21-.51.22-.82 0-.14-.02-.29-.05-.45-.03-.16-.09-.31-.18-.45a1.13 1.13 0 00-.37-.35c-.16-.09-.37-.14-.63-.14-.24 0-.43.05-.59.15-.16.1-.29.24-.38.42-.1.17-.17.38-.21.62-.05.24-.07.5-.08.77h-1.19c0-.43.05-.83.16-1.2s.27-.69.49-.96c.21-.25.48-.46.79-.62.31-.15.67-.23 1.07-.23.45 0 .82.08 1.11.23.3.16.55.36.73.6.19.24.32.5.39.79.08.28.12.54.12.79 0 .31-.04.6-.13.85s-.22.49-.37.7c-.15.21-.32.41-.52.59s-.4.35-.61.51l-.63.45c-.21.14-.39.28-.57.42zM0 1c0-.55.44-1 1-1 .55 0 1 .46 1 1v10c0 .55-.44 1-1 1-.55 0-1-.46-1-1V1zm6 0c0-.55.44-1 1-1 .55 0 1 .46 1 1v10c0 .55-.44 1-1 1-.55 0-1-.46-1-1V1zM2 5h4v2H2V5z'];\nvar svgPaths20 = ['M16.6 17.41c-.22.17-.4.36-.56.55-.16.19-.27.4-.33.61h4.28V20H14c.01-.81.18-1.52.53-2.13.35-.6.81-1.13 1.41-1.58.28-.23.58-.46.89-.68.31-.22.59-.46.85-.71.26-.26.48-.53.63-.83.16-.3.25-.64.26-1.02 0-.18-.02-.37-.06-.57-.04-.2-.11-.39-.22-.56s-.26-.31-.45-.43-.44-.18-.75-.18c-.28 0-.52.06-.71.19s-.34.3-.45.52c-.11.22-.2.48-.25.78-.05.3-.08.62-.09.97h-1.43c0-.54.07-1.04.2-1.5.13-.47.32-.87.58-1.2.26-.34.58-.6.95-.78.37-.19.81-.29 1.3-.29.54 0 .99.09 1.35.29.36.19.65.44.87.74.22.29.38.62.47.97.09.35.14.68.14 1 0 .4-.05.75-.16 1.07-.11.32-.26.61-.44.88-.19.27-.4.52-.63.74-.24.22-.48.43-.73.63s-.5.38-.75.56c-.26.17-.5.35-.71.53zM10 0c.55 0 1 .45 1 1v14c0 .55-.45 1-1 1s-1-.45-1-1V9H2v6c0 .55-.45 1-1 1s-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v6h7V1c0-.55.45-1 1-1z'];\nexport var HeaderTwoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"header-two\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.85 6.34C14.18 2.72 11.37 0 8 0S1.82 2.72 1.15 6.34C.47 6.9 0 8.1 0 9.5 0 11.43.9 13 2 13c0 1.1.9 2 2 2h2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1H4c-.55 0-1-.45-1-1 .55 0 1-.45 1-1V7c0-.45-.3-.81-.71-.94C3.97 3.7 5.81 2 8 2s4.03 1.7 4.71 4.06c-.41.13-.71.49-.71.94v5c0 .55.45 1 1 1h1c1.1 0 2-1.57 2-3.5 0-1.4-.47-2.6-1.15-3.16z'];\nvar svgPaths20 = ['M18.97 9H19A9 9 0 001 9h.03C.41 9.73 0 10.8 0 12c0 1.74.84 3.2 2 3.76V16c0 1.66 1.34 3 3 3h3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H5c-.55 0-1-.45-1-1 .55 0 1-.45 1-1V9c0-.55-.45-1-1-1h-.92C3.57 4.61 6.47 2 10 2s6.43 2.61 6.92 6H16c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1c1.66 0 3-1.79 3-4 0-1.2-.41-2.27-1.03-3z'];\nexport var HeadsetIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"headset\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 5.095c0-2.255-1.88-4.083-4.2-4.083-1.682 0-3.13.964-3.8 2.352a4.206 4.206 0 00-3.8-2.352C1.88 1.012 0 2.84 0 5.095c0 .066.007.13.01.194H.004c.001.047.01.096.014.143l.013.142c.07.8.321 1.663.824 2.573C2.073 10.354 4.232 12.018 8 15c3.767-2.982 5.926-4.647 7.144-6.854.501-.905.752-1.766.823-2.562.007-.055.012-.11.016-.164.003-.043.012-.088.013-.13h-.006c.003-.066.01-.13.01-.195z'];\nvar svgPaths20 = ['M20 6.25C20 3.35 17.65 1 14.75 1c-1.02 0-1.95.31-2.75.82v-.04c-.09.06-.17.12-.26.19-.04.03-.09.06-.14.1-.68.51-1.24 1.18-1.6 1.96-.4-.86-1.04-1.57-1.8-2.1-.04-.02-.07-.05-.1-.08a7 7 0 00-.6-.33c-.13-.04-.23-.1-.35-.15-.05-.02-.1-.05-.15-.07v.02C6.45 1.13 5.87 1 5.25 1A5.25 5.25 0 000 6.25c0 .09.01.17.01.25H0c0 .06.01.12.02.18s.01.12.02.18C.13 7.89.44 9 1.07 10.17 2.23 12.33 4.1 14.11 7 16.53v.01c.9.75 1.89 1.55 3 2.46.71-.58 1.38-1.12 2-1.63 3.48-2.86 5.64-4.78 6.93-7.18.63-1.17.94-2.27 1.03-3.3.01-.07.01-.14.02-.21 0-.06.01-.11.02-.17h-.01c0-.09.01-.17.01-.26z'];\nexport var HeartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"heart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.71 8.87L6.17 6.55l.02-.01A.906.906 0 016 6c0-.07.03-.13.04-.19h-.02l.78-3.92C6.09 1.34 5.19 1 4.2 1 1.88 1 0 2.83 0 5.09c0 .07.01.13.01.19H0c0 .05.01.1.01.14 0 .05.01.1.01.14.07.8.32 1.66.82 2.57 1.07 1.94 2.88 3.47 5.86 5.84l-.68-2.74h.02C6.03 11.16 6 11.08 6 11c0-.28.11-.53.29-.71l1.42-1.42zM16 5.09C16 2.83 14.12 1 11.8 1c-1.2 0-2.27.5-3.04 1.28l-.7 3.51 1.77 2.66-.01.01c.1.15.18.33.18.54 0 .28-.11.53-.29.71l-1.6 1.6.75 3.01c3.23-2.56 5.16-4.15 6.28-6.18.5-.91.75-1.77.82-2.56.01-.05.01-.11.02-.16 0-.04.01-.09.01-.13h-.01c.01-.07.02-.14.02-.2z'];\nvar svgPaths20 = ['M8.11 7.45C8.05 7.31 8 7.16 8 7c0-.07.03-.13.04-.19h-.02l.86-4.32A5.159 5.159 0 005.25 1 5.25 5.25 0 000 6.25c0 .09.01.17.01.25H0c0 .06.01.12.02.18s.01.12.02.18C.13 7.89.44 9 1.07 10.17c1.38 2.58 3.76 4.6 7.71 7.83l-.76-3.8h.02c-.01-.07-.04-.13-.04-.2 0-.21.08-.39.18-.54l-.02-.01 1.68-2.52-1.73-3.48zM20 6.25C20 3.35 17.65 1 14.75 1c-1.54 0-2.92.67-3.88 1.73l-.83 4.13 1.85 3.69h-.01c.07.14.12.29.12.45 0 .21-.08.39-.18.54l.02.01-1.77 2.66.81 4.07c4.16-3.39 6.63-5.45 8.05-8.1.63-1.17.94-2.27 1.03-3.3.01-.07.01-.14.02-.21 0-.06.01-.11.02-.17h-.01c0-.08.01-.16.01-.25z'];\nexport var HeartBrokenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"heart-broken\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 10h5V7H0v3zm1-2h3v1H1V8zm14-5h-4v3h5V4c0-.55-.45-1-1-1zm0 2h-3V4h3v1zM0 4v2h5V3H1c-.55 0-1 .45-1 1zm0 9c0 .55.45 1 1 1h4v-3H0v2zm6-7h4V3H6v3zm0 8h4v-3H6v3zm1-2h2v1H7v-1zm4 2h4c.55 0 1-.45 1-1v-2h-5v3zm0-4h5V7h-5v3zm-5 0h4V7H6v3z'];\nvar svgPaths20 = ['M14 12h6V8h-6v4zM0 12h6V8H0v4zm1-3h4v2H1V9zm-1 7c0 .55.45 1 1 1h5v-4H0v3zM19 3h-5v4h6V4c0-.55-.45-1-1-1zm0 3h-4V4h4v2zM0 4v3h6V3H1c-.55 0-1 .45-1 1zm7 3h6V3H7v4zm7 10h5c.55 0 1-.45 1-1v-3h-6v4zm-7 0h6v-4H7v4zm1-3h4v2H8v-2zm-1-2h6V8H7v4z'];\nexport var HeatGridIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"heat-grid\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm11-7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm3 4.5A2.5 2.5 0 0013.5 6c-.98 0-1.82.57-2.23 1.39-.6-.78-1.51-1.3-2.56-1.36.18-.49.29-.99.29-1.53C9 2.01 6.99 0 4.5 0S0 2.01 0 4.5 2.01 9 4.5 9c.19 0 .37-.03.56-.06-.03.19-.06.37-.06.56C5 11.43 6.57 13 8.5 13c1.63 0 2.98-1.11 3.37-2.62.44.38 1 .62 1.63.62A2.5 2.5 0 0016 8.5zM14.5 13c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z'];\nvar svgPaths20 = ['M6 0a6 6 0 100 12A6 6 0 106 0z', 'M10.5 8a4.5 4.5 0 100 9 4.5 4.5 0 100-9z', 'M16.5 7a3.5 3.5 0 100 7 3.5 3.5 0 100-7zM18 16a2 2 0 100 4 2 2 0 100-4zM2.5 14a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM16.5 0a2.5 2.5 0 100 5 2.5 2.5 0 100-5z'];\nexport var HeatmapIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"heatmap\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm1 13H7v-2h2v2zm1.93-6.52c-.14.32-.35.64-.62.97L9.25 8.83c-.12.15-.24.29-.28.42-.04.13-.09.3-.09.52V10H7.12V8.88s.05-.51.21-.71L8.4 6.73c.22-.26.35-.49.44-.68.09-.19.12-.38.12-.58 0-.3-.1-.55-.28-.75-.18-.19-.44-.28-.76-.28-.33 0-.59.1-.78.29-.19.19-.33.46-.4.81-.03.11-.1.15-.2.14l-1.7-.25c-.12-.01-.16-.08-.14-.19.12-.82.46-1.47 1.03-1.94.57-.48 1.32-.72 2.25-.72.47 0 .9.07 1.29.22s.72.34 1 .59c.28.25.49.55.65.89.15.35.22.72.22 1.12s-.07.75-.21 1.08z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM7.41 4.62c.65-.54 1.51-.82 2.56-.82.54 0 1.03.08 1.48.25.44.17.83.39 1.14.68.32.29.56.63.74 1.02.17.39.26.82.26 1.27s-.08.87-.24 1.23c-.16.37-.4.73-.71 1.11l-1.21 1.58c-.14.17-.28.33-.32.48-.05.15-.11.35-.11.6v.97H9v-2s.06-.58.24-.81l1.21-1.64c.25-.3.41-.56.51-.77s.14-.44.14-.67c0-.35-.11-.63-.32-.85s-.5-.33-.88-.33c-.37 0-.67.11-.89.33-.22.23-.37.54-.46.94-.03.12-.11.17-.23.16l-1.95-.29c-.12-.01-.16-.08-.14-.22.13-.93.52-1.67 1.18-2.22zM9 14h2.02L11 16H9v-2z'];\nexport var HelpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"help\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 5h-2v2h2V5zm0 6h-2v2h2v-2zm0-3h-2v2h2V8zm2-8H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 14H2V2h12v12zm-7-3H5v2h2v-2zm3 0H8v2h2v-2z'];\nvar svgPaths20 = ['M17 10h-3v3h3v-3zm0 4h-3v3h3v-3zm0-8h-3v3h3V6zm2-6H1C.4 0 0 .4 0 1v18c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V1c0-.6-.5-1-1-1zm-1 18H2V2h16v16zm-9-4H6v3h3v-3zm4 0h-3v3h3v-3z'];\nexport var HelperManagementIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"helper-management\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.12 11.07l2-2.02.71.71 4-4.04L10.17 0l-4 4.04.71.71-2 2.02 4.24 4.3zM2 12.97h4c.28 0 .53-.11.71-.3l1-1.01-3.42-3.45-3 3.03c-.18.18-.29.44-.29.72 0 .55.45 1.01 1 1.01zm13 1.01H1c-.55 0-1 .45-1 1.01S.45 16 1 16h14c.55 0 1-.45 1-1.01s-.45-1.01-1-1.01z'];\nvar svgPaths20 = ['M11.22 14.09l3.03-3.03.71.71L20 6.73l-5.71-5.71-5.04 5.04.71.71-3.02 3.04 4.28 4.28zm6.8 3.91h-16c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zm-15-1h4.04c.28 0 .53-.11.71-.3l2.02-2.02-3.44-3.45-4.04 4.04c-.18.18-.3.44-.3.71.01.57.46 1.02 1.01 1.02z'];\nexport var HighlightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"highlight\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 3c-.55 0-1 .45-1 1v4c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L9 7.59V4c0-.55-.45-1-1-1zm0-3a7.95 7.95 0 00-6 2.74V1c0-.55-.45-1-1-1S0 .45 0 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.54C4.64 2.78 6.23 2 8 2c3.31 0 6 2.69 6 6 0 2.61-1.67 4.81-4 5.63v-.01c-.63.23-1.29.38-2 .38-3.31 0-6-2.69-6-6 0-.55-.45-1-1-1s-1 .45-1 1c0 4.42 3.58 8 8 8 .34 0 .67-.03 1-.07.02 0 .04-.01.06-.01C12.98 15.4 16 12.06 16 8c0-4.42-3.58-8-8-8z'];\nvar svgPaths20 = ['M10 0C6.71 0 3.82 1.6 2 4.05V2c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.76C5.23 3.17 7.47 2 10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8c0-.55-.45-1-1-1s-1 .45-1 1c0 5.52 4.48 10 10 10s10-4.48 10-10S15.52 0 10 0zm0 3c-.55 0-1 .45-1 1v6c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L11 9.59V4c0-.55-.45-1-1-1z'];\nexport var HistoryIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"history\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 10v5c0 .55.45 1 1 1h3v-5h4v5h3c.55 0 1-.45 1-1v-5L8 4l-6 6zm13.71-2.71L14 5.59V2c0-.55-.45-1-1-1s-1 .45-1 1v1.59L8.71.29C8.53.11 8.28 0 8 0s-.53.11-.71.29l-7 7a1.003 1.003 0 001.42 1.42L8 2.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nvar svgPaths20 = ['M2 12v7c0 .55.45 1 1 1h5v-7h4v7h5c.55 0 1-.45 1-1v-7l-8-8-8 8zm17.71-2.71L17 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v1.59L10.71.3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-9 9a1.003 1.003 0 001.42 1.42L10 2.41l8.29 8.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nexport var HomeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"home\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 5h7c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zM1 1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm14 6H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-6 5H4c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M1 1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1zm3 5h11c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm8 8H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1zm7-6H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h15c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1z'];\nexport var HorizontalBarChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"horizontal-bar-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 3h5c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 4h7c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 6H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM1 11h10c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M1 9h11c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0-5h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm18 12H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM1 14h14c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1z'];\nexport var HorizontalBarChartAscIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"horizontal-bar-chart-asc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM8 9H1c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm-2 4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm5-8H1c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M10 16H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm2-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h11c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm3-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm4-5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z'];\nexport var HorizontalBarChartDescIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"horizontal-bar-chart-desc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm13 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-5 2H7c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M12 2H8c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM1 0C.45 0 0 .45 0 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm18 0c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var HorizontalDistributionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"horizontal-distribution\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 5v7h12V5H2zm0-2h12c1.1 0 2 .9 2 2v7c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2z', 'M7.9 10.48c-.14-.33-.84-.55-1.3-.75-.46-.2-.4-.33-.42-.5v-.07c.16-.14.29-.33.37-.56 0 0 0-.01.01-.02.02-.05.03-.1.05-.15.1-.01.16-.13.19-.23.03-.04.07-.15.06-.27-.02-.16-.08-.24-.15-.26v-.03c0-.2-.02-.48-.05-.67-.01-.05-.02-.1-.03-.16-.07-.23-.21-.44-.4-.58-.2-.15-.48-.23-.73-.23s-.53.08-.72.23c-.19.14-.33.35-.4.58-.02.05-.03.1-.03.16-.05.18-.06.47-.06.67v.03c-.07.03-.14.1-.15.26-.02.12.03.22.06.27.02.1.09.22.2.24.01.05.03.1.05.15v.01c.08.23.22.42.38.56v.07c-.02.17.03.29-.43.5-.46.2-1.16.42-1.3.75s-.09.52-.09.52H8c-.01 0 .05-.19-.1-.52zM10 6h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1zM10 9h2c.55 0 1 .45 1 1s-.45 1-1 1h-2c-.55 0-1-.45-1-1s.45-1 1-1z'];\nvar svgPaths20 = ['M2 5v10h16V5H2zm0-2h16c1.1 0 2 .9 2 2v10c0 1.1-.9 2-2 2H2c-1.1 0-2-.9-2-2V5c0-1.1.9-2 2-2z', 'M8.88 12.38c-.17-.39-1.01-.66-1.56-.9-.56-.24-.48-.39-.5-.6v-.09c.19-.17.35-.4.45-.67 0 0 0-.02.01-.02l.06-.18c.13-.03.2-.17.23-.29.03-.05.09-.18.08-.33-.04-.18-.11-.27-.2-.3v-.03c0-.24-.02-.58-.06-.81-.01-.06-.02-.12-.04-.19-.08-.27-.25-.52-.48-.7C6.63 7.09 6.3 7 6 7s-.63.09-.87.27c-.23.17-.4.42-.48.7-.02.06-.03.13-.04.19-.04.22-.06.57-.06.81V9c-.09.03-.17.12-.19.31-.01.14.05.27.08.32.03.14.1.27.23.3.02.06.03.12.06.18v.01c.11.27.27.51.47.68v.08c-.02.2.04.35-.51.6-.56.24-1.39.51-1.56.9-.19.39-.12.62-.12.62h5.98c-.01 0 .06-.23-.11-.62zM12 7h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1zM12 11h4c.55 0 1 .45 1 1s-.45 1-1 1h-4c-.55 0-1-.45-1-1s.45-1 1-1z'];\nexport var IdNumberIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"id-number\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 2h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C8.11 2.47 8 2.72 8 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H13c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3zm-5.5 9c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 6.33L7 12l-1 1-2-3-2 2.67V9h7v4.33z'];\nvar svgPaths20 = ['M10.5 13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM14 7H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 10l-5-3-1 2-2-4-3 4.5V9h11v8zm3-15h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H16c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4z'];\nexport var ImageRotateLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"image-rotate-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.71 5.71l2-2C7.89 3.53 8 3.28 8 3c0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H3C1.34 2 0 3.34 0 5v3c0 .55.45 1 1 1s1-.45 1-1V5c0-.55.45-1 1-1h1.59l-.3.29a1.003 1.003 0 001.42 1.42zM12.5 11c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM15 7H6c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 6.33L12 12l-1 1-2-3-2 2.67V9h7v4.33z'];\nvar svgPaths20 = ['M5.29 4.29a1.003 1.003 0 001.42 1.42l2-2C8.89 3.53 9 3.28 9 3c0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H4C1.79 2 0 3.79 0 6v3c0 .55.45 1 1 1s1-.45 1-1V6c0-1.1.9-2 2-2h1.59l-.3.29zM15.5 13c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM19 7H6c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 10l-5-3-1 2-2-4-3 4.5V9h11v8z'];\nexport var ImageRotateRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"image-rotate-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.29 11.71c.18.18.43.29.71.29s.53-.11.71-.29l4-4a1.003 1.003 0 00-1.42-1.42L9 8.59V1c0-.55-.45-1-1-1S7 .45 7 1v7.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l4 4zM15 11c-.55 0-1 .45-1 1v2H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M9.29 15.71c.18.18.43.29.71.29s.53-.11.71-.29l5-5a1.003 1.003 0 00-1.42-1.42L11 12.59V1c0-.55-.45-1-1-1S9 .45 9 1v11.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l5 5zM19 14c-.55 0-1 .45-1 1v3H2v-3c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z'];\nexport var ImportIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"import\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.91 2.6c-.16-.36-.51-.61-.92-.61h-10c-.41 0-.77.25-.92.61L-.01 7.45v5.54c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7.45L13.91 2.6zm-1.92 5.39c-.55 0-1 .45-1 1v1h-6v-1c0-.55-.45-1-1-1H1.94l1.71-4h8.68l1.71 4h-2.05z'];\nvar svgPaths20 = ['M16.92 3.56l-.01-.02c-.16-.35-.5-.6-.91-.6H4c-.41 0-.76.25-.91.6l-.01.02L0 10.49v6.46c0 .55.45 1 1 1h18c.55 0 1-.45 1-1v-6.46l-3.08-6.93zM15 10.95c-.55 0-1 .45-1 1v1H6v-1c0-.55-.45-1-1-1H1.98l2.67-6h10.7l2.67 6H15z'];\nexport var InboxIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inbox\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.432 2c.094.14.202.273.324.394L8.42 4H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6.557c.693 0 1.363-.262 1.837-.736l.103-.102.85-1.14a2.564 2.564 0 00.623-1.682V5.058L16 7.46V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h3.432zm9.048-2c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V3.71L8.17.98A.566.566 0 018 .57c0-.31.26-.57.57-.57h6.91z'];\nvar svgPaths20 = ['M10.262 3l1.958 1.958v.05H4.65l-2.67 5.997H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h3.02l-.635-1.426.625-.63c.354-.353.598-.8.707-1.289L20 10.545v6.456c0 .55-.45.999-1 .999H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h6.262zm9.088-3a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V4.13L11.19 1.1a.642.642 0 01.45-1.1h7.71z'];\nexport var InboxFilteredIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inbox-filtered\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.341 2A5.99 5.99 0 006 4H3.66L1.95 8H4c.55 0 1 .45 1 1v1h7a5.978 5.978 0 004-1.528V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h3.341zm3.679 2.145c0-.125.075-.23.205-.225h.345l.79.8c.005 0 0 .005 0 .005v.295c0 .13-.085.23-.215.23h-.07v.15c0 .13-.09.2-.215.2v.535c0 .125-.12.225-.245.225s-.245-.1-.245-.225V5.25h-.145c-.125 0-.205-.1-.205-.23v-.875zm2.235-2.195c-.03 0-.055-.005-.06-.035 0-.03.03-.035.06-.035h.11c.035 0 .06.005.06.035 0 .03-.03.035-.06.035h-.11zm-1.165-.025a.094.094 0 01-.13 0l-.25-.25a.094.094 0 010-.13.094.094 0 01.13 0l.25.25a.094.094 0 010 .13zm1.53.445c-.035 0-.07-.025-.07-.06v-.155c0-.03.035-.06.07-.06s.07.025.07.06v.155c0 .03-.035.06-.07.06zM12 0c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm0 7c1.655 0 3-1.345 3-3 0-.195-.02-.39-.06-.575h-.21c-.125 0-.225-.07-.23-.21h-.215c.075.07.155.14.155.23V3.9c0 .06-.04.115-.075.155h-.015l-.01.005-.015.01-.445.43v.815c0 .13-.07.22-.2.22h-.36c-.125 0-.21-.09-.21-.22v-.84a.627.627 0 00-.36-.345h-.45c-.13 0-.245-.095-.245-.225v-.46c0-.125.115-.23.245-.23l.13-.005.21-.215c.09-.09.24-.09.33 0l.22.225h.47c.105 0 .155-.105.225-.21v-.075h-.205a.106.106 0 01-.105-.105.11.11 0 01.105-.105h.18l.025.005v-.12s-.03-.025-.04-.025h-.2l-.045.05a.235.235 0 01-.33.005l-.045-.06h-.115l.16.175c.015.015.015.06 0 .075-.02.015-.045.02-.06.005l-.195-.185h-.085l-.245.23-.02-.005c-.025.07-.06.055-.095.055-.085 0-.15-.045-.15-.13s.065-.14.15-.14h.115v-.125c0-.06.04-.09.1-.09h.05V2.36c0-.095.095-.2.19-.2h.19c.105 0 .18-.075.18-.185V1.94c0-.015.035.01.035-.06h-.125l-.005.01-.21.22a.085.085 0 01-.115 0 .085.085 0 010-.115l.255-.255c.02-.015.045-.015.065-.015.005 0 .005.015.005.015h.64a2.327 2.327 0 00-.355-.275 2.452 2.452 0 00-.355-.195c-.03-.015-.055-.03-.08-.04a3.025 3.025 0 00-1.735-.175c-.09.02-.175.055-.265.08-.09.03-.18.05-.265.085-.075.03-.145.07-.22.105-.115.06-.235.115-.34.185l-.005.005c-.1.065-.18.145-.27.22h.455c.06 0 .11.045.11.105s-.05.105-.11.105h-.32c0 .07-.025.04-.025.045v.24h.285l.15-.17c.09-.09.235-.105.325-.015.09.09.09.23 0 .32l-.795.79-.01.01c-.005 0-.005 0-.01.005l-.025.015h-.01a.235.235 0 01-.12.025h-.23c-.08.07-.125.1-.125.18v.06c0 .01-.02.02-.02.03l.375.39c.04.04.04.1 0 .14-.04.04-.1.04-.14 0l-.39-.385a.213.213 0 01-.055.01c-.105 0-.195-.085-.195-.185v-.235h-.055A3.1 3.1 0 009 4c0 1.655 1.345 3 3 3zm2.27-2.135c.05 0 .105.04.105.09v.285c0 .05-.055.09-.105.09-.05 0-.105-.04-.105-.09v-.285c0-.05.055-.09.105-.09zm-2.085-3.27c0 .13-.105.21-.225.21h-.25v.07c0 .075-.03.135-.105.135s-.105-.06-.105-.135V1.64c-.075-.02-.025-.025-.025-.04 0-.125.085-.215.21-.215h.27c.13 0 .23.085.23.21z'];\nvar svgPaths20 = ['M7.427 3a7.467 7.467 0 00-.411 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8V13c.165.01.332 0 .5 0a7.48 7.48 0 005.5-2.4V17c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h3.427zm5.715-.596a.133.133 0 01-.193 0l-.374-.374a.133.133 0 010-.193.133.133 0 01.193 0l.373.374a.133.133 0 010 .193zm1.743.033c-.05 0-.088-.006-.088-.055 0-.05.038-.056.088-.056h.165c.05 0 .088.006.088.055 0 .05-.038.056-.088.056h-.165zm.539.632c-.05 0-.104-.044-.104-.094v-.23c0-.05.054-.094.104-.094.05 0 .104.044.104.094v.23c0 .05-.055.094-.104.094zm-3.575 2.304h.506l1.182 1.2c.006.005 0 .005 0 .01v.446c0 .187-.126.341-.319.341h-.098v.226c0 .192-.138.296-.33.296h.01v.792c0 .188-.181.336-.368.336s-.369-.149-.369-.335v-1.32h-.214c-.193 0-.308-.149-.308-.341V5.72c0-.192.115-.346.308-.346zM14.5 0C17.536 0 20 2.464 20 5.5S17.536 11 14.5 11A5.502 5.502 0 019 5.5C9 2.464 11.464 0 14.5 0zm0 9.9c2.431 0 4.4-1.969 4.4-4.4 0-.297-.027-.583-.099-.864h-.236c-.188 0-.336-.104-.347-.313h-.319c.11.104.231.209.231.346v.705c0 .088-.055.17-.11.23h-.022l-.011.006-.022.011-.666.643v1.21c0 .193-.104.33-.296.33h-.54c-.192 0-.319-.137-.319-.33V6.221a.915.915 0 00-.533-.518h-.671c-.192 0-.368-.143-.368-.335V4.68c0-.192.176-.346.368-.346l.193-.005.319-.32a.342.342 0 01.489 0l.319.32c.005 0 .005.005.005.005h.704c.16 0 .237-.16.341-.313v-.11l-.038.005h-.27a.159.159 0 01-.153-.16c0-.087.066-.159.154-.159h.269l.039.006V3.42s-.05-.038-.061-.038h-.302l-.067.076a.342.342 0 01-.489.011l-.066-.088h-.176l.248.259c.021.022.021.088 0 .11-.028.022-.067.028-.088.006l-.292-.276h-.127l-.363.325-.033-.006c-.038.11-.087.089-.143.089-.126 0-.225-.072-.225-.193 0-.127.099-.209.225-.209h.176v-.182c0-.088.061-.131.149-.131h.066v-.127c0-.143.149-.297.286-.297h.28c.16 0 .27-.115.27-.275V2.42c0-.016.055.017.055-.088h-.187l-.005.017-.308.33a.123.123 0 01-.177 0c-.049-.044-.049-.121 0-.171l.391-.385c.027-.022.06-.022.094-.022l.005.022h.869A4.376 4.376 0 0014.5 1.1a4.402 4.402 0 00-2.816 1.018h.583c.094 0 .165.066.165.159s-.072.16-.165.16h-.478c0 .104-.039.06-.039.066v.351h.429l.226-.252c.132-.127.346-.155.473-.022a.332.332 0 010 .473l-1.183 1.182-.011.011c-.005.005-.011.005-.016.011a.115.115 0 00-.034.022c-.005.006-.01 0-.016.006a.309.309 0 01-.176.038h-.347c-.12.104-.187.148-.187.27v.088c0 .016-.027.027-.027.043l.561.589c.06.06.055.154 0 .209a.143.143 0 01-.209 0l-.578-.578a.425.425 0 01-.082.011c-.154 0-.292-.12-.292-.274v-.358h-.016c-.104.374-.165.77-.165 1.177 0 2.431 1.969 4.4 4.4 4.4zm3.388-3.107c.077 0 .16.06.16.137v.424c0 .077-.083.137-.16.137s-.16-.06-.16-.137V6.93c0-.077.083-.137.16-.137zm-3.113-4.879c0 .187-.154.314-.335.314h-.374v.104c0 .11-.05.198-.16.198s-.16-.088-.16-.198V1.98c-.104-.022-.033-.028-.033-.055 0-.187.127-.325.314-.325h.407c.187 0 .341.127.341.314z'];\nexport var InboxGeoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inbox-geo\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.639 2a5.391 5.391 0 00-.144 2H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6V9c0-.088.012-.174.033-.255.12-.007.238-.019.39-.038.154-.008.252-.03.442-.077a5.34 5.34 0 00.24-.05h.05l.122-.04 1.266 1.271c.425.47 1.116.769 1.847.769.21 0 .414-.025.61-.071V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h2.639zM15.82 7.53c.1.12.17.27.18.44 0 .34-.27.61-.61.61a.57.57 0 01-.43-.18l-2.24-2.25c-.13.08-.26.16-.4.23-.02.01-.05.02-.07.03-.14.06-.27.12-.42.17h-.01c-.14.05-.29.08-.44.11-.04.01-.08.02-.11.02-.15.02-.3.04-.46.04-1.85 0-3.35-1.51-3.35-3.37S8.96.01 10.81 0c1.85 0 3.35 1.51 3.35 3.37 0 .16-.02.31-.04.47-.01.04-.01.07-.02.11-.02.15-.05.29-.1.44v.01c-.05.15-.11.28-.17.42-.01.02-.02.05-.03.07-.07.14-.14.27-.23.4l2.25 2.24zm-5.01-1.94c1.22 0 2.21-.99 2.21-2.22 0-1.23-.99-2.22-2.21-2.22S8.6 2.14 8.6 3.37c0 1.22.99 2.22 2.21 2.22z'];\nvar svgPaths20 = ['M7.136 3a6.327 6.327 0 00-.098 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h1.076l1.14 1.14a2.767 2.767 0 001.974.806c.282 0 .554-.042.81-.12V17c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h3.136zm3.244 1.33c0 1.62 1.31 2.93 2.93 2.93s2.93-1.31 2.93-2.93-1.31-2.93-2.93-2.93-2.93 1.31-2.93 2.93zm6.47 2.43l2.89 2.85c.13.15.22.35.23.56 0 .43-.35.78-.78.78-.23 0-.42-.08-.56-.22l-2.87-2.87c-.17.1-.33.2-.51.29-.03.01-.06.03-.09.04-.18.07-.35.15-.55.21-.19.06-.37.11-.57.14-.05.01-.1.02-.14.02-.2.03-.39.05-.6.05A4.3 4.3 0 019 4.31C9 1.93 10.93.01 13.3 0c2.37 0 4.3 1.93 4.3 4.3 0 .21-.02.4-.05.6-.01.05-.01.09-.02.14-.04.2-.08.38-.14.58-.05.19-.13.36-.21.54-.01.03-.03.06-.04.09-.08.18-.18.34-.29.51z'];\nexport var InboxSearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inbox-search\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.1 2a5.023 5.023 0 000 2H3.66L1.95 8H4c.55 0 1 .45 1 1v1h6V9c0-.55.45-1 1-1h2.05c.708 0 1.352-.241 1.905-.645L16 7.46V13c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V7.46l2.08-4.85C2.23 2.25 2.59 2 3 2h5.1zM13 6a3 3 0 110-6 3 3 0 010 6z'];\nvar svgPaths20 = ['M10.083 3a6.04 6.04 0 00.001 2.009H4.65l-2.67 5.996H5c.55 0 1 .45 1 .999v1h8v-1c0-.55.45-1 1-1h3.02l-.53-1.19a5.97 5.97 0 001.824-.811L20 10.545v6.456c0 .55-.45.999-1 .999H1c-.55 0-1-.45-1-1v-6.455L3.08 3.62l.01-.02c.15-.35.5-.6.91-.6h6.083zM16 8a4 4 0 110-8 4 4 0 010 8z'];\nexport var InboxUpdateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inbox-update\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM7 3h2v2H7V3zm3 10H6v-1h1V7H6V6h3v6h1v1z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM9 4h2v2H9V4zm4 12H7v-1h2V8H8V7h3v8h2v1z'];\nexport var InfoSignIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"info-sign\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 8c0 1.66 1.34 3 3 3h4.59L11.3 9.71A.965.965 0 0111 9a1.003 1.003 0 011.71-.71l3 3c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-3 3a1.003 1.003 0 01-1.42-1.42l1.3-1.29H8c-2.76 0-5-2.24-5-5H1a1 1 0 01-1-1V1a1 1 0 011-1h6a1 1 0 011 1v6a1 1 0 01-1 1H5zM2 2v4h4V2H2z'];\nvar svgPaths20 = ['M6 10c0 2.21 1.79 4 4 4h6.59l-2.29-2.29A.965.965 0 0114 11a1.003 1.003 0 011.71-.71l4 4c.18.18.29.43.29.71 0 .28-.11.53-.29.71l-4 4a1.003 1.003 0 01-1.42-1.42l2.3-2.29H10c-3.31 0-6-2.69-6-6H1a1 1 0 01-1-1V1a1 1 0 011-1h8a1 1 0 011 1v8a1 1 0 01-1 1H6zM2 2v6h6V2H2z'];\nexport var InheritanceIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inheritance\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.6 3.3C5.3 4.4 4.5 6.1 4.5 8s.8 3.6 2.1 4.7c-.5.2-1 .3-1.6.3-2.8 0-5-2.2-5-5s2.2-5 5-5c.6 0 1.1.1 1.6.3zm-1.96 8.68C3.92 10.83 3.5 9.46 3.5 8s.42-2.83 1.14-3.98C2.6 4.2 1 5.91 1 8s1.6 3.8 3.64 3.98zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3zm.35 1.02c.73 1.15 1.14 2.52 1.14 3.98s-.42 2.83-1.14 3.98c2.04-.18 3.64-1.9 3.64-3.98s-1.6-3.8-3.64-3.98z'];\nvar svgPaths20 = ['M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zm-3.34 9.25c-.55-1.2-.86-2.54-.86-3.95s.31-2.75.86-3.95a4.001 4.001 0 000 7.9zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm.6 2.05c.55 1.2.86 2.54.86 3.95s-.31 2.75-.86 3.95c1.9-.31 3.36-1.96 3.36-3.95S16.5 6.36 14.6 6.05zM10 5.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z'];\nexport var InnerJoinIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"inner-join\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 9h2v2c0 .6.4 1 1 1s1-.4 1-1V9h2c.6 0 1-.4 1-1s-.4-1-1-1H9V5c0-.6-.4-1-1-1s-1 .4-1 1v2H5c-.6 0-1 .4-1 1s.4 1 1 1zm10-9H1C.4 0 0 .4 0 1v14c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V1c0-.6-.4-1-1-1zm-1 14H2V2h12v12z'];\nvar svgPaths20 = ['M19 0H1C.4 0 0 .4 0 1v18c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V1c0-.6-.5-1-1-1zm-1 18H2V2h16v16zM5 11h4v4c0 .6.4 1 1 1s1-.4 1-1v-4h4c.6 0 1-.4 1-1s-.4-1-1-1h-4V5c0-.6-.4-1-1-1s-1 .4-1 1v4H5c-.6 0-1 .4-1 1s.4 1 1 1z'];\nexport var InsertIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"insert\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 3c-.92 0-1.76.26-2.5.69C6.76 3.26 5.92 3 5 3 2.24 3 0 5.24 0 8s2.24 5 5 5c.92 0 1.76-.26 2.5-.69.74.43 1.58.69 2.5.69 2.76 0 5-2.24 5-5s-2.24-5-5-5zm-4.1 7.85c-.29.09-.59.15-.9.15-1.66 0-3-1.34-3-3s1.34-3 3-3c.31 0 .61.06.9.15C5.33 5.96 5 6.94 5 8s.33 2.04.9 2.85zM10 11c-.31 0-.61-.06-.9-.15.57-.81.9-1.79.9-2.85s-.33-2.04-.9-2.85c.29-.09.59-.15.9-.15 1.66 0 3 1.34 3 3s-1.34 3-3 3z'];\nvar svgPaths20 = ['M13 4c-1.31 0-2.51.43-3.5 1.14A5.977 5.977 0 006 4c-3.31 0-6 2.69-6 6s2.69 6 6 6c1.31 0 2.51-.43 3.5-1.14.99.71 2.19 1.14 3.5 1.14 3.31 0 6-2.69 6-6s-2.69-6-6-6zm-4.93 9.41c-.61.37-1.31.59-2.07.59-2.21 0-4-1.79-4-4s1.79-4 4-4c.76 0 1.46.22 2.07.59C7.4 7.56 7 8.73 7 10s.4 2.44 1.07 3.41zM13 14c-.76 0-1.46-.22-2.07-.59C11.6 12.44 12 11.27 12 10s-.4-2.44-1.07-3.41C11.54 6.22 12.24 6 13 6c2.21 0 4 1.79 4 4s-1.79 4-4 4z'];\nexport var IntersectionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"intersection\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 2.66C5 4.14 8 8 8 8s3-3.86 3-5.34C10.99 1.2 9.66 0 8 0S5 1.2 5 2.66zM7 3c0-.55.45-1 1-1s1 .45 1 1-.45 1-1 1-1-.45-1-1zM10.5 10H8v5h1v-4h1v1H9v1h2v-3h-.5zM2 9h12c.55 0 1 .45 1 1v5c0 .55-.45 1-1 1H2c-.55 0-1-.45-1-1v-5c0-.55.45-1 1-1zm4 1v5h1v-5H6z'];\nvar svgPaths20 = ['M6 3.66C6 5.69 10 11 10 11s4-5.31 4-7.34C13.99 1.64 12.21 0 10 0S6 1.64 6 3.66zM8 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM14 13.5V13h-4v1h3v2h-2v1h3v-3.5zM3 12h14c.55 0 1 .45 1 1v6c0 .55-.45 1-1 1H3c-.55 0-1-.45-1-1v-6c0-.55.45-1 1-1zm4 1v6h1v-6H7zm3 1v5h1v-5h-1z'];\nexport var IpAddressIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"ip-address\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 16A8 8 0 118 0a8 8 0 010 16zm0-2A6 6 0 108 2a6 6 0 000 12zm1-2H7v-2h2v2zm0-3H7V4h2v5z'];\nvar svgPaths20 = ['M10 20C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10zm0-2a8 8 0 100-16 8 8 0 000 16zm1-2H9v-2h2v2zm0-3H9V4h2v9z'];\nexport var IssueIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"issue\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.296.104a2.99 2.99 0 00-1.003.664 2.987 2.987 0 00-.75 1.25 6 6 0 106.28 4.527c.043-.039.085-.079.127-.12l1.456-1.456A8 8 0 119.296.105zm2.532 5.2a.997.997 0 01-.707-.294L9.707 3.596a1 1 0 011.414-1.414l.707.707 1.768-1.768a1 1 0 111.414 1.415L12.536 5.01a.997.997 0 01-.708.293zM9 12H7v-2h2v2zm0-3H7V4h2v5z'];\nvar svgPaths20 = ['M15.364 5.9a.997.997 0 01-.707-.293l-2.121-2.122a1 1 0 111.414-1.414l1.414 1.414L18.192.657a1 1 0 011.414 1.414l-3.535 3.536a.997.997 0 01-.707.292zM11.78.157a3.002 3.002 0 00-1.437 1.85 8 8 0 107.1 5.055l.042-.042 1.472-1.472A9.959 9.959 0 0120 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0c.608 0 1.202.054 1.78.158zM11 16H9v-2h2v2zm0-3H9V4h2v9z'];\nexport var IssueClosedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"issue-closed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.568.421c-.01.04-.018.08-.026.121-.837.156-1.53.73-1.85 1.497a6 6 0 105.27 5.273 2.51 2.51 0 001.496-1.854c.04-.008.081-.016.121-.026A8 8 0 1110.568.421zM9 12H7v-2h2v2zm0-3H7V4h2v5zm1-6c0-.55.45-1 1-1h1V1c0-.55.45-1 1-1s1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v1.005c0 .55-.45 1-1 1s-1-.45-1-1V4h-1c-.55 0-1-.45-1-1z'];\nvar svgPaths20 = ['M13.167.512a2.98 2.98 0 00-.131.524c-.74.115-1.39.5-1.848 1.052a8 8 0 106.724 6.724 2.997 2.997 0 001.052-1.848 2.98 2.98 0 00.524-.13A9.99 9.99 0 0120 10c0 5.523-4.477 10-10 10S0 15.523 0 10 4.477 0 10 0a9.99 9.99 0 013.167.512zM11 16H9v-2h2v2zm0-3H9V4h2v9zm6-10h1.5a1 1 0 010 2H17v1.5a1 1 0 01-2 0V5h-1.5a1 1 0 010-2H15V1.5a1 1 0 012 0V3z'];\nexport var IssueNewIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"issue-new\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.8 4H11c.5 0 1-.4 1-1s-.4-1-1-1H7c-.5 0-1 .4-1 1s.4 1 1 1h.8l-1.6 8H5c-.5 0-1 .4-1 1s.4 1 1 1h4c.5 0 1-.4 1-1s-.4-1-1-1h-.8l1.6-8z'];\nvar svgPaths20 = ['M11.7 4H14c.6 0 1-.4 1-1s-.4-1-1-1H7c-.6 0-1 .4-1 1s.4 1 1 1h2.2L7.3 15H5c-.6 0-1 .4-1 1s.4 1 1 1h7c.6 0 1-.4 1-1s-.4-1-1-1H9.8l1.9-11z'];\nexport var ItalicIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"italic\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 5h-3V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-5-1v2H6V4h4zm0 6H6V7h4v3zM2 4h3v2H2V4zm0 5V7h3v2H2zm4 4v-2h4v2H6zm8 0h-3v-2h3v2zm0-3h-3V8h3v2z'];\nvar svgPaths20 = ['M19 6h-4V2c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h4v4c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM6 12H2V9h4v3zm0-4H2V5h4v3zm7 9H7v-3h6v3zm0-4H7V9h6v4zm0-5H7V5h6v3zm5 9h-4v-3h4v3zm0-4h-4v-3h4v3z'];\nexport var JoinTableIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"join-table\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 0C8.24 0 6 2.24 6 5c0 1.02.31 1.96.83 2.75L.29 14.29a1.003 1.003 0 001.42 1.42L3 14.41l1.29 1.29c.18.19.43.3.71.3s.53-.11.71-.29l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71L6.41 11l1.83-1.83c.8.52 1.74.83 2.76.83 2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-.23 0-.45-.03-.66-.08-.01 0-.02-.01-.03-.01-.21-.05-.41-.12-.6-.21a3.014 3.014 0 01-1.62-2c0-.01-.01-.02-.01-.03C8.03 5.45 8 5.23 8 5c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3z'];\nvar svgPaths20 = ['M14 0c-3.31 0-6 2.69-6 6 0 1.11.32 2.14.85 3.03L.44 17.44a1.498 1.498 0 102.12 2.12l.79-.79.94.94c.18.18.43.29.71.29s.53-.11.71-.29l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-.94-.94 3.2-3.2A5.9 5.9 0 0014 12c3.31 0 6-2.69 6-6s-2.69-6-6-6zm0 9c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'];\nexport var KeyIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 2H6c-.28 0-.53.11-.71.29l-5 5C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l5 5c.18.18.43.29.71.29h9c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-2.29 7.29a1.003 1.003 0 01-1.42 1.42L10 9.41 8.71 10.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L8.59 8l-1.3-1.29a1.003 1.003 0 011.42-1.42L10 6.59l1.29-1.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L11.41 8l1.3 1.29z'];\nvar svgPaths20 = ['M19 3H7c-.28 0-.53.11-.71.29l-6 6C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l6 6c.18.18.43.29.71.29h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-2.29 9.29a1.003 1.003 0 01-1.42 1.42L13 11.41l-2.29 2.29c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71l2.3-2.29-2.3-2.29a1.003 1.003 0 011.42-1.42L13 8.59l2.29-2.29c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L14.41 10l2.3 2.29z'];\nexport var KeyBackspaceIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-backspace\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 9h-1V7h1c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3v1H7V4c0-1.66-1.34-3-3-3S1 2.34 1 4s1.34 3 3 3h1v2H4c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3v-1h2v1c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3zm0-6c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm5 4H7V7h2v2zm3 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M15.5 12H14V8h1.5C17.43 8 19 6.43 19 4.5S17.43 1 15.5 1 12 2.57 12 4.5V6H8V4.5C8 2.57 6.43 1 4.5 1S1 2.57 1 4.5 2.57 8 4.5 8H6v4H4.5C2.57 12 1 13.57 1 15.5S2.57 19 4.5 19 8 17.43 8 15.5V14h4v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0-9c.83 0 1.5.67 1.5 1.5S16.33 6 15.5 6 14 5.33 14 4.5 14.67 3 15.5 3zm-11 14c-.83 0-1.5-.67-1.5-1.5S3.67 14 4.5 14s1.5.67 1.5 1.5S5.33 17 4.5 17zm0-11C3.67 6 3 5.33 3 4.5S3.67 3 4.5 3 6 3.67 6 4.5 5.33 6 4.5 6zm7.5 6H8V8h4v4zm3.5 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'];\nexport var KeyCommandIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-command\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.71 5.29l-4-4C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L8 3.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nvar svgPaths20 = ['M16.71 7.29l-6-6C10.53 1.11 10.28 1 10 1s-.53.11-.71.29l-6 6a1.003 1.003 0 001.42 1.42L10 3.41l5.29 5.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71z'];\nexport var KeyControlIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-control\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.71 7.29l-5-5A.997.997 0 0010 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h9c.28 0 .53-.11.71-.29l5-5c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zm-7 2a1.003 1.003 0 01-1.42 1.42L6 9.41 4.71 10.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L4.59 8l-1.3-1.29a1.003 1.003 0 011.42-1.42L6 6.59 7.29 5.3c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L7.41 8l1.3 1.29z'];\nvar svgPaths20 = ['M19.71 9.29l-6-6A.997.997 0 0013 3H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.28 0 .53-.11.71-.29l6-6c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zm-9 3a1.003 1.003 0 01-1.42 1.42L7 11.41 4.71 13.7c-.18.19-.43.3-.71.3a1.003 1.003 0 01-.71-1.71L5.59 10l-2.3-2.29a1.003 1.003 0 011.42-1.42L7 8.59 9.29 6.3c.18-.19.43-.3.71-.3a1.003 1.003 0 01.71 1.71L8.41 10l2.3 2.29z'];\nexport var KeyDeleteIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-delete\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 2c-.55 0-1 .45-1 1v3c0 1.66-1.34 3-3 3H4.41L5.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L4.41 11H10c2.76 0 5-2.24 5-5V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M18 2c-.55 0-1 .45-1 1v5c0 2.21-1.79 4-4 4H4.41L6.7 9.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.41 14H13c3.31 0 6-2.69 6-6V3c0-.55-.45-1-1-1z'];\nexport var KeyEnterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-enter\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 7c.55 0 1-.45 1-1V4.41L7.29 8.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 3H6c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm7-5.9v2A5 5 0 113.1 9h-2c.49 3.39 3.38 6 6.9 6 3.87 0 7-3.13 7-7 0-3.52-2.61-6.41-6-6.9z'];\nvar svgPaths20 = ['M2 8c.55 0 1-.45 1-1V4.41l6.29 6.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 3H7c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1zm9-6.94V3.1c3.39.49 6 3.38 6 6.9 0 3.87-3.13 7-7 7-3.52 0-6.41-2.61-6.9-6H1.06c.5 4.5 4.31 8 8.94 8a9 9 0 009-9c0-4.63-3.5-8.44-8-8.94z'];\nexport var KeyEscapeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-escape\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 4h4c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1s.45 1 1 1zm4 8h-3.43L5.86 2.49h-.02A.975.975 0 005 2H1c-.55 0-1 .45-1 1s.45 1 1 1h3.43l5.71 9.51.01-.01c.18.3.49.5.85.5h4c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M13 4h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1zm6 12h-4.42L6.87 2.5l-.02.01A.977.977 0 006 2H1c-.55 0-1 .45-1 1s.45 1 1 1h4.42l7.71 13.5.01-.01c.18.3.49.51.86.51h5c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var KeyOptionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-option\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.71 7.29l-5-5C8.53 2.11 8.28 2 8 2s-.53.11-.71.29l-5 5A1.003 1.003 0 003 9h2v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V9h2a1.003 1.003 0 00.71-1.71z'];\nvar svgPaths20 = ['M17.74 10.35l-6.99-8.01-.01.01C10.56 2.14 10.3 2 10 2s-.56.14-.74.35l-.01-.01-7 8 .01.01A.95.95 0 002 11c0 .55.45 1 1 1h3v5c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-5h3c.55 0 1-.45 1-1 0-.25-.1-.48-.26-.65z'];\nexport var KeyShiftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-shift\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 10H4.41L5.7 8.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L2 9.59V8c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .55.45 1 1 1s1-.45 1-1v-1.59l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 12H15c.55 0 1-.45 1-1s-.45-1-1-1zm0-9c-.55 0-1 .45-1 1v1.59L11.71 1.3A.965.965 0 0011 1a1.003 1.003 0 00-.71 1.71L11.59 4H1c-.55 0-1 .45-1 1s.45 1 1 1h10.59L10.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L14 6.41V8c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 13H4.41l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L2 12.59V10c0-.55-.45-1-1-1s-1 .45-1 1v8c0 .55.45 1 1 1s1-.45 1-1v-2.59l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L4.41 15H19c.55 0 1-.45 1-1s-.45-1-1-1zm0-12c-.55 0-1 .45-1 1v2.59L14.71 1.3A.965.965 0 0014 1a1.003 1.003 0 00-.71 1.71L15.59 5H1c-.55 0-1 .45-1 1s.45 1 1 1h14.59L13.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 7.41V10c0 .55.45 1 1 1s1-.45 1-1V2c0-.55-.45-1-1-1z'];\nexport var KeyTabIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"key-tab\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 3a.997.997 0 00-.707.293L12 5.586l-1.293-1.293a1 1 0 10-1.414 1.414l2 2a.997.997 0 001.414 0l3-3A1 1 0 0015 3zm-.879 6.121l-.007-.007c-.313.309-.69.552-1.114.702V10h-.998H12h-1v-.184c-.424-.15-.8-.395-1.112-.704l-.01.01-2-2 .012-.012A2.978 2.978 0 017.184 6H3c-.176 0-.06-.824 0-1l.73-1.63C3.79 3.192 3.823 3 4 3H7.78C8.328 2.39 9.115 2 10 2c.768 0 1.461.293 1.987.77l.844-.844c-.238-.244-.524-.442-.794-.524C12.037 1.402 10.72 1 8 1c-2.72 0-4.037.402-4.037.402-.508.155-1.078.711-1.268 1.237l-.763 2.117H.88c-.484 0-.88.423-.88.939s.396.939.88.939h.375L1 7c-.034.685 0 1.436 0 2v5c0 .657.384 1 1 1s1-.343 1-1v-1h10v1c0 .657.384 1 1 1s1-.343 1-1V9l-.003-.754-.876.875zM5.001 10H3V8h2v2z'];\nvar svgPaths20 = ['M19 4a.997.997 0 00-.707.293L14 8.586l-2.293-2.293a1 1 0 00-1.414 1.414l3 3a.997.997 0 001.414 0l5-5A1 1 0 0019 4zm-2.048 7.291c.011.072.048.134.048.209a1.5 1.5 0 01-1.5 1.5c-.225 0-.433-.057-.624-.145-.279.085-.57.145-.876.145a2.99 2.99 0 01-2.121-.879l-3-3 .007-.007A3.027 3.027 0 018.184 8H4V7l1-3h10l.19.568 1.307-1.308c-.336-.356-.758-.658-1.165-.772 0 0-1.74-.488-5.332-.488s-5.332.488-5.332.488c-.67.188-1.424.864-1.674 1.502L2.99 4H3L2 7H1a1 1 0 000 2h.333l-.28.84L1 10v7.5a1.5 1.5 0 103 0V17h12v.5a1.5 1.5 0 003 0V10l-.19-.568-1.858 1.86zM4.5 13a1.5 1.5 0 110-3 1.5 1.5 0 010 3z'];\nexport var KnownVehicleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"known-vehicle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V7l-5-5zm3 10H2V4h8v2H3v1h7v1h4v4zm-3-5V4l3 3h-3zm-8 3h10V9H3v1z'];\nvar svgPaths20 = ['M3 12h14v-1H3v1zm11-9H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V9l-6-6zm4 12H2V5h11v3H3v1h10v1h5v5zm-4-6V5l4 4h-4z'];\nexport var LabelIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"label\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 8c0-.37-.21-.68-.51-.85l.01-.01-7-4-.01.01C8.34 3.06 8.18 3 8 3s-.34.06-.49.15l-.01-.02-7 4 .01.01C.21 7.32 0 7.63 0 8s.21.68.51.85l-.01.01 7 4 .01-.01c.15.09.31.15.49.15s.34-.06.49-.15l.01.01 7-4-.01-.01c.3-.17.51-.48.51-.85z'];\nvar svgPaths20 = ['M19.5 9.1l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9z'];\nexport var LayerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layer\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M.55 4.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5a.998.998 0 00-.06-1.81L8.4.08a1.006 1.006 0 00-.79 0l-6.99 3a.992.992 0 00-.07 1.81zM15 10c-.16 0-.31.04-.45.11L8 13.38 1.45 10.1c-.14-.06-.29-.1-.45-.1-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1zm0-3.5c-.16 0-.31.04-.45.11L8 9.88 1.45 6.61A.997.997 0 001 6.5c-.55 0-1 .45-1 1 0 .39.23.73.55.89l7 3.5c.14.07.29.11.45.11s.31-.04.45-.11l7-3.5c.32-.16.55-.5.55-.89 0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M.5 6.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9s-.2-.7-.5-.9l-9-5c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1l-9 5c-.3.2-.5.5-.5.9s.2.7.5.9z', 'M19 9c-.2 0-.3 0-.5.1L10 13.9 1.5 9.1C1.3 9 1.2 9 1 9c-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z', 'M19 13c-.2 0-.3 0-.5.1L10 17.9l-8.5-4.7c-.2-.2-.3-.2-.5-.2-.6 0-1 .4-1 1 0 .4.2.7.5.9l9 5c.2.1.3.1.5.1s.3 0 .5-.1l9-5c.3-.2.5-.5.5-.9 0-.6-.4-1-1-1z'];\nexport var LayersIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layers\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 4c-1.1 0-2 .9-2 2 0 .47.17.9.44 1.24l-.68.91A1.996 1.996 0 009.07 9.5H7.93C7.71 8.64 6.93 8 6 8c-.47 0-.9.17-1.24.44l-.91-.68c.1-.23.15-.49.15-.76 0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .37.11.71.28 1.01L3.01 5.28C2.71 5.11 2.37 5 2 5 .9 5 0 5.9 0 7s.9 2 2 2c.47 0 .9-.17 1.24-.44l.91.68c-.1.23-.15.49-.15.76 0 .37.11.71.28 1.01l-1.27 1.27C2.71 12.11 2.37 12 2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.37-.11-.71-.28-1.01l1.27-1.27c.3.17.64.28 1.01.28.93 0 1.71-.64 1.93-1.5h1.14c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2 0-.47-.17-.9-.44-1.24l.68-.91c.23.1.49.15.76.15 1.1 0 2-.9 2-2s-.9-2-2-2z'];\nvar svgPaths20 = ['M18 6c-1.1 0-2 .9-2 2 0 .37.11.71.28 1.01l-2.27 2.27c-.3-.17-.64-.28-1.01-.28-.93 0-1.71.64-1.93 1.5H8.93c-.22-.86-1-1.5-1.93-1.5-.37 0-.71.11-1.01.28L3.72 9.01C3.89 8.71 4 8.37 4 8c0-.34-.09-.66-.24-.94l3.66-3.38c.31.2.68.32 1.08.32 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .34.09.66.24.94L3.08 6.32C2.77 6.12 2.4 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.37 0 .71-.11 1.01-.28l2.27 2.27c-.17.3-.28.64-.28 1.01s.11.71.28 1.01l-2.27 2.27C2.71 16.11 2.37 16 2 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28.93 0 1.71-.64 1.93-1.5h2.14c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2 0-.37-.11-.71-.28-1.01l2.27-2.27c.3.17.64.28 1.01.28 1.1 0 2-.9 2-2s-.9-2-2-2z'];\nexport var LayoutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 9.5c-.56 0-1.06.23-1.42.59L8.99 8l3.59-2.09A2.002 2.002 0 0016 4.5c0-1.1-.9-2-2-2s-2 .9-2 2c0 .19.03.37.08.54L8.5 7.13v-3.2c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v3.2L3.92 5.04c.05-.17.08-.35.08-.54 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.56 0 1.06-.23 1.42-.59L7.01 8l-3.59 2.09A2.002 2.002 0 000 11.5c0 1.1.9 2 2 2s2-.9 2-2c0-.19-.03-.37-.08-.54L7.5 8.87v3.2c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-3.2l3.58 2.09c-.05.17-.08.35-.08.54 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M18 13c-.53 0-1.01.21-1.37.55L11.9 10.6c.06-.19.1-.39.1-.6s-.04-.41-.1-.6l4.72-2.95c.37.34.85.55 1.38.55 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .21.04.41.1.6l-4.73 2.96c-.24-.23-.54-.4-.87-.48V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.33.09-.63.26-.87.48L3.9 5.6c.06-.19.1-.39.1-.6 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.53 0 1.01-.21 1.37-.55L8.1 9.4c-.06.19-.1.39-.1.6s.04.41.1.6l-4.72 2.95C3.01 13.21 2.53 13 2 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.21-.04-.41-.1-.6l4.73-2.96c.24.23.54.4.87.48v4.14C8.64 16.29 8 17.07 8 18c0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.33-.09.63-.26.87-.48l4.73 2.96c-.06.18-.1.38-.1.59 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z'];\nexport var LayoutAutoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-auto\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 11c-.2 0-.38.04-.56.09L12.42 9.4c.36-.36.58-.85.58-1.4 0-.55-.22-1.04-.58-1.4l1.01-1.69c.19.05.37.09.57.09 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .55.22 1.04.58 1.4l-1.01 1.69C11.38 6.04 11.2 6 11 6c-.93 0-1.71.64-1.93 1.5H6.93C6.71 6.64 5.93 6 5 6c-.2 0-.38.04-.56.09L3.42 4.4C3.78 4.04 4 3.55 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.2 0 .38-.04.56-.09L3.58 6.6C3.22 6.96 3 7.45 3 8c0 .55.22 1.04.58 1.4l-1.01 1.69C2.38 11.04 2.2 11 2 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.55-.22-1.04-.58-1.4l1.01-1.69c.19.05.37.09.57.09.93 0 1.71-.64 1.93-1.5h2.14c.22.86 1 1.5 1.93 1.5.2 0 .38-.04.56-.09l1.01 1.69c-.35.36-.57.85-.57 1.4 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M18 16c-.14 0-.28.02-.42.05l-1.73-3.45c.69-.45 1.14-1.22 1.14-2.1s-.46-1.65-1.14-2.1l1.73-3.45c.14.03.28.05.42.05 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .6.27 1.13.69 1.5l-1.77 3.54c-.14-.02-.28-.04-.42-.04a2.5 2.5 0 00-2.45 2h-4.1A2.5 2.5 0 005.5 8c-.14 0-.28.02-.42.04L3.31 4.5C3.73 4.13 4 3.6 4 3c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.14 0 .28-.02.42-.05L4.14 8.4C3.46 8.85 3 9.62 3 10.5s.46 1.65 1.14 2.1l-1.73 3.45A1.84 1.84 0 002 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2c0-.6-.27-1.13-.69-1.5l1.77-3.54c.14.02.28.04.42.04a2.5 2.5 0 002.45-2h4.1a2.5 2.5 0 002.45 2c.14 0 .28-.02.42-.04l1.77 3.54c-.42.37-.69.9-.69 1.5 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z'];\nexport var LayoutBalloonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-balloon\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.16 6.02c-.12-.36-.26-.7-.43-1.03.17-.29.27-.63.27-.99 0-1.1-.9-2-2-2-.36 0-.7.1-.99.27-.33-.17-.67-.31-1.03-.43A1.987 1.987 0 008 0C6.95 0 6.1.81 6.02 1.84c-.36.12-.7.26-1.03.43C4.7 2.1 4.36 2 4 2c-1.1 0-2 .9-2 2 0 .36.1.7.27.99-.17.33-.31.67-.43 1.03C.81 6.1 0 6.95 0 8c0 1.05.81 1.9 1.84 1.98.12.36.26.7.43 1.03-.17.29-.27.63-.27.99 0 1.1.9 2 2 2 .36 0 .7-.1.99-.27.33.17.67.32 1.03.43C6.1 15.19 6.95 16 8 16c1.05 0 1.9-.81 1.98-1.84.36-.12.7-.26 1.03-.43.29.17.63.27.99.27 1.1 0 2-.9 2-2 0-.36-.1-.7-.27-.99.17-.33.31-.67.43-1.03C15.19 9.9 16 9.05 16 8c0-1.05-.81-1.9-1.84-1.98zm-.99 3.79c-.05.16-.11.31-.17.46-.3-.17-.64-.27-1-.27-1.1 0-2 .9-2 2 0 .36.1.7.27 1-.15.07-.3.12-.46.17C9.5 12.48 8.81 12 8 12s-1.5.48-1.81 1.17c-.16-.06-.32-.11-.46-.17.17-.3.27-.64.27-1 0-1.1-.9-2-2-2-.36 0-.7.1-1 .27-.07-.15-.12-.3-.17-.46C3.52 9.5 4 8.81 4 8s-.48-1.5-1.17-1.81c.06-.16.11-.32.17-.46.3.17.64.27 1 .27 1.1 0 2-.9 2-2 0-.36-.1-.7-.27-1 .15-.07.3-.12.46-.17C6.5 3.52 7.19 4 8 4s1.5-.48 1.81-1.17c.16.06.32.11.46.17-.17.3-.27.64-.27 1 0 1.1.9 2 2 2 .36 0 .7-.1 1-.27.07.15.12.3.17.46C12.48 6.5 12 7.19 12 8s.48 1.5 1.17 1.81z'];\nvar svgPaths20 = ['M18.3 8c-.2-.9-.6-1.7-1.1-2.5.2-.3.3-.7.3-1 0-1.1-.9-2-2-2-.4 0-.7.1-1 .3-.8-.5-1.6-.8-2.5-1.1-.1-1-1-1.7-2-1.7S8.2.8 8 1.7c-.9.3-1.7.6-2.5 1.1-.3-.2-.7-.3-1-.3-1.1 0-2 .9-2 2 0 .4.1.7.3 1-.5.8-.8 1.6-1.1 2.5C.8 8.2 0 9 0 10s.8 1.8 1.7 2c.2.9.6 1.7 1.1 2.5-.2.3-.3.7-.3 1 0 1.1.9 2 2 2 .4 0 .7-.1 1-.3.8.5 1.6.8 2.5 1.1.1 1 1 1.7 2 1.7s1.8-.8 2-1.7c.9-.2 1.7-.6 2.5-1.1.3.2.7.3 1 .3 1.1 0 2-.9 2-2 0-.4-.1-.7-.3-1 .5-.8.8-1.6 1.1-2.5 1-.1 1.7-1 1.7-2s-.8-1.8-1.7-2zm-1.8 5.8c-.3-.2-.6-.3-1-.3-1.1 0-2 .9-2 2 0 .4.1.7.3 1-.6.3-1.2.6-1.9.8-.3-.7-1-1.3-1.9-1.3-.8 0-1.6.5-1.9 1.3-.7-.2-1.3-.4-1.9-.8.2-.3.3-.6.3-1 0-1.1-.9-2-2-2-.4 0-.7.1-1 .3-.3-.6-.6-1.2-.8-1.9.8-.3 1.3-1.1 1.3-1.9s-.5-1.6-1.2-1.8c.2-.7.4-1.3.8-1.9.3.2.6.3 1 .3 1.1 0 2-.9 2-2 0-.4-.1-.7-.3-1 .6-.3 1.2-.6 1.9-.8.2.7 1 1.2 1.8 1.2s1.6-.5 1.9-1.3c.7.2 1.3.4 1.9.8-.2.3-.3.6-.3 1 0 1.1.9 2 2 2 .4 0 .7-.1 1-.3.3.6.6 1.2.8 1.9-.8.3-1.3 1.1-1.3 1.9s.5 1.6 1.2 1.8c-.1.7-.4 1.4-.7 2z'];\nexport var LayoutCircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 0C6.9 0 6 .9 6 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M2 0a2 2 0 100 4 2 2 0 100-4zM10 0a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM10 16a2 2 0 100 4 2 2 0 100-4zM2 16a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM10 8a2 2 0 100 4 2 2 0 100-4z'];\nexport var LayoutGridIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-grid\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M2 2a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM2 14a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM13 12a2 2 0 100 4 2 2 0 100-4zM13 4a2 2 0 100 4 2 2 0 100-4z'];\nexport var LayoutGroupByIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-group-by\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.5 12.07V9.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2-.93 0-1.71.64-1.93 1.5H9.93c-.18-.7-.73-1.25-1.43-1.43V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v2.14c-.7.18-1.25.73-1.43 1.43H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8c0 .93.64 1.71 1.5 1.93v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93V9.93c.7-.18 1.25-.73 1.43-1.43h2.14c.18.7.73 1.25 1.43 1.43v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93V9.93c.7-.18 1.25-.73 1.43-1.43h2.14c.18.7.73 1.25 1.43 1.43v2.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93z'];\nvar svgPaths20 = ['M18.5 16.07v-4.14c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2-.93 0-1.71.64-1.93 1.5h-4.14c-.18-.7-.73-1.25-1.43-1.43V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.7.18-1.25.73-1.43 1.43H3.93C3.71 8.64 2.93 8 2 8c-1.1 0-2 .9-2 2 0 .93.64 1.71 1.5 1.93v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.7-.18 1.25-.73 1.43-1.43h4.14c.18.7.73 1.25 1.43 1.43v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93v-4.14c.7-.18 1.25-.73 1.43-1.43h4.14c.18.7.73 1.25 1.43 1.43v4.14c-.86.22-1.5 1-1.5 1.93 0 1.1.9 2 2 2s2-.9 2-2c0-.93-.64-1.71-1.5-1.93z'];\nexport var LayoutHierarchyIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-hierarchy\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 6c-.93 0-1.71.64-1.93 1.5H9.93C9.71 6.64 8.93 6 8 6s-1.71.64-1.93 1.5H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.93 0 1.71-.64 1.93-1.5h2.13C6.29 9.36 7.07 10 8 10s1.71-.64 1.93-1.5h2.13c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2C16 6.9 15.1 6 14 6z'];\nvar svgPaths20 = ['M16.5 7a2.5 2.5 0 00-2.45 2h-2.1a2.5 2.5 0 00-4.9 0h-2.1a2.5 2.5 0 100 1h2.1a2.5 2.5 0 004.9 0h2.1a2.5 2.5 0 102.45-3z'];\nexport var LayoutLinearIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-linear\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-2c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6-3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M2 0a2 2 0 100 4 2 2 0 100-4zM18 0a2 2 0 100 4 2 2 0 100-4zM18 8a2 2 0 100 4 2 2 0 100-4zM18 16a2 2 0 100 4 2 2 0 100-4zM2 16a2 2 0 100 4 2 2 0 100-4zM2 8a2 2 0 100 4 2 2 0 100-4zM10 12a2 2 0 100 4 2 2 0 100-4zM10 4a2 2 0 100 4 2 2 0 100-4z'];\nexport var LayoutSkewGridIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-skew-grid\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM8 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M2 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm16 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-8 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nexport var LayoutSortedClustersIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"layout-sorted-clusters\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.441 1.104a.985.985 0 00-.882 0L.365 5c-.487.253-.487.747 0 1L7.56 9.896a.985.985 0 00.882 0L15.635 6c.487-.253.487-.747 0-1L8.44 1.104z', 'M14 5.5l.016 4.514c.002.548.447.99.994.99a.99.99 0 00.99-.99V5.5h-2zM3.371 9.047l4.387 2.432a.5.5 0 00.485 0l4.39-2.432a.25.25 0 01.371.218v2.955a.25.25 0 01-.134.222l-4.635 2.436a.5.5 0 01-.466 0l-4.635-2.436A.25.25 0 013 12.22V9.265a.25.25 0 01.371-.218z'];\nvar svgPaths20 = ['M10.551 1.127a1.256 1.256 0 00-1.102 0L.456 5.89c-.608.309-.608.913 0 1.222l8.993 4.762c.334.17.767.17 1.102 0l8.992-4.762c.61-.309.61-.913 0-1.222l-8.992-4.762z', 'M18 6.5l.016 4.514c.002.548.447.99.994.99a.99.99 0 00.99-.99V6.5h-2zM3.366 10.033l6.401 3.358a.5.5 0 00.465 0l6.406-3.358a.25.25 0 01.366.221v5.109a.25.25 0 01-.139.224l-6.64 3.302a.5.5 0 01-.446 0l-6.64-3.302A.25.25 0 013 15.363v-5.108a.25.25 0 01.366-.222z'];\nexport var LearningIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"learning\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.6 3.3C6.1 3.1 5.6 3 5 3 2.2 3 0 5.2 0 8s2.2 5 5 5c.6 0 1.1-.1 1.6-.3C5.3 11.6 4.5 9.9 4.5 8s.8-3.6 2.1-4.7zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3zm.35 1.02c.73 1.15 1.14 2.52 1.14 3.98s-.42 2.83-1.14 3.98c2.04-.18 3.64-1.9 3.64-3.98s-1.6-3.8-3.64-3.98z'];\nvar svgPaths20 = ['M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm.6 2.05c.55 1.2.86 2.54.86 3.95s-.31 2.75-.86 3.95c1.9-.31 3.36-1.96 3.36-3.95S16.5 6.36 14.6 6.05zM10 5.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z'];\nexport var LeftJoinIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"left-join\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.287 5.958a1 1 0 00-.574-1.916l-10 3c-.95.285-.95 1.631 0 1.916l10 3a1 1 0 00.574-1.916L6.48 8l6.807-2.042z'];\nvar svgPaths20 = ['M7.162 10l9.154 3.052a1 1 0 01-.632 1.897l-12-4c-.912-.304-.912-1.594 0-1.897l12-4a1 1 0 01.632 1.897L7.162 10z'];\nexport var LessThanIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"less-than\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.287 3.958a1 1 0 00-.575-1.916l-10 3c-.95.285-.95 1.63 0 1.916l10 3a1 1 0 00.575-1.916L6.48 6l6.807-2.042zM13 12H3a1 1 0 000 2h10a1 1 0 000-2z'];\nvar svgPaths20 = ['M16.316 11.051L7.162 8l9.154-3.051a1 1 0 10-.632-1.898l-12 4c-.912.304-.912 1.594 0 1.898l12 4a1 1 0 10.632-1.898zM16 15H4a1 1 0 100 2h12a1 1 0 100-2z'];\nexport var LessThanOrEqualToIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"less-than-or-equal-to\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.405 11.746C8.968 11.91 8.495 12 8 12c-.494 0-.968-.09-1.405-.254l-.702 1.873C6.548 13.865 7.258 14 8 14c.742 0 1.452-.135 2.107-.38l-.702-1.874zm2.341-2.341l1.873.702C13.865 9.452 14 8.742 14 8c0-.742-.135-1.452-.38-2.107l-1.874.702c.164.437.254.91.254 1.405 0 .494-.09.968-.254 1.405zM9.405 4.254l.702-1.873A5.987 5.987 0 008 2c-.742 0-1.452.135-2.107.38l.702 1.874C7.032 4.09 7.505 4 8 4c.494 0 .968.09 1.405.254zM4.254 6.595L2.38 5.893A5.987 5.987 0 002 8c0 .742.135 1.452.38 2.107l1.874-.702A3.991 3.991 0 014 8c0-.494.09-.968.254-1.405zM8 16A8 8 0 118 0a8 8 0 010 16zm0-6a2 2 0 100-4 2 2 0 000 4z'];\nvar svgPaths20 = ['M8.143 14.644L7.028 17.43c.919.368 1.922.57 2.972.57s2.053-.202 2.972-.57l-1.115-2.786A4.986 4.986 0 0110 15a4.986 4.986 0 01-1.857-.356zm-2.787-2.787A4.986 4.986 0 015 10c0-.656.126-1.283.356-1.857L2.57 7.028A7.978 7.978 0 002 10c0 1.05.202 2.053.57 2.972l2.786-1.115zm2.787-6.5A4.986 4.986 0 0110 5c.656 0 1.283.126 1.857.356l1.115-2.786A7.978 7.978 0 0010 2c-1.05 0-2.053.202-2.972.57l1.115 2.786zm6.5 2.786c.23.574.357 1.2.357 1.857 0 .656-.126 1.283-.356 1.857l2.786 1.115c.368-.919.57-1.922.57-2.972s-.202-2.053-.57-2.972l-2.786 1.115zM10 13a3 3 0 100-6 3 3 0 000 6zm0 7C4.477 20 0 15.523 0 10S4.477 0 10 0s10 4.477 10 10-4.477 10-10 10z'];\nexport var LifesaverIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"lifesaver\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.01 14h-2c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1s-.44-1-1-1zm1-3h-4c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.44-1-1-1zm-2-11C5.26 0 3.03 1.95 3.03 4.35c0 2.37 1.63 2.64 1.94 5.22 0 .24.22.44.5.44h5.09c.28 0 .5-.19.5-.44C11.37 6.99 13 6.72 13 4.35 13 1.95 10.77 0 8.01 0z'];\nvar svgPaths20 = ['M6.33 13.39c0 .34.27.61.6.61h6.13c.33 0 .6-.27.6-.61C14.03 9.78 16 9.4 16 6.09 16 2.72 13.31 0 10 0S4 2.72 4 6.09c0 3.31 1.97 3.69 2.33 7.3zM13 15H7c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-1 3H8c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var LightbulbIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"lightbulb\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4.99 11.99c.28 0 .53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42l-6 6a1.003 1.003 0 00.71 1.71zm3.85-2.02L6.4 12.41l-1 1-.01-.01c-.36.36-.85.6-1.4.6-1.1 0-2-.9-2-2 0-.55.24-1.04.6-1.4l-.01-.01 1-1 2.44-2.44c-.33-.1-.67-.16-1.03-.16-1.1 0-2.09.46-2.81 1.19l-.02-.02-1 1 .02.02c-.73.72-1.19 1.71-1.19 2.81 0 2.21 1.79 4 4 4 1.1 0 2.09-.46 2.81-1.19l.02.02 1-1-.02-.02c.73-.72 1.19-1.71 1.19-2.81 0-.35-.06-.69-.15-1.02zm7.15-5.98c0-2.21-1.79-4-4-4-1.1 0-2.09.46-2.81 1.19l-.02-.02-1 1 .02.02c-.72.72-1.19 1.71-1.19 2.81 0 .36.06.69.15 1.02l2.44-2.44 1-1 .01.01c.36-.36.85-.6 1.4-.6 1.1 0 2 .9 2 2 0 .55-.24 1.04-.6 1.4l.01.01-1 1-2.43 2.45c.33.09.67.15 1.02.15 1.1 0 2.09-.46 2.81-1.19l.02.02 1-1-.02-.02a3.92 3.92 0 001.19-2.81z'];\nvar svgPaths20 = ['M10.85 11.98l-4.44 4.44-1 1c-.36.36-.86.58-1.41.58-1.1 0-2-.9-2-2 0-.55.22-1.05.59-1.41l5.44-5.44C7.69 9.06 7.36 9 7 9c-1.11 0-2.09.46-2.82 1.18l-.01-.01-3 3 .01.01C.46 13.91 0 14.89 0 16c0 2.21 1.79 4 4 4 1.11 0 2.09-.46 2.82-1.18l.01.01 3-3-.01-.01C10.54 15.09 11 14.11 11 13c0-.36-.06-.69-.15-1.02zM20 4c0-2.21-1.79-4-4-4-1.11 0-2.09.46-2.82 1.18l-.01-.01-3 3 .01.01C9.46 4.91 9 5.89 9 7c0 .36.06.69.15 1.02l4.44-4.44 1-1c.36-.36.86-.58 1.41-.58 1.1 0 2 .9 2 2 0 .55-.22 1.05-.59 1.41l-5.44 5.44c.34.09.67.15 1.03.15 1.11 0 2.09-.46 2.82-1.18l.01.01 3-3-.01-.01C19.54 6.09 20 5.11 20 4zM5 14a1.003 1.003 0 001.71.71l8-8a1.003 1.003 0 00-1.42-1.42l-2 2-2 2-2 2-2 2c-.18.18-.29.43-.29.71z'];\nexport var LinkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"link\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 3h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 10H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M1.03 1C.46 1 0 1.46 0 2.03v.95C0 3.54.46 4 1.03 4h17.95C19.54 4 20 3.54 20 2.97v-.94C20 1.46 19.54 1 18.97 1H1.03zM0 17.97C0 18.54.46 19 1.03 19h17.95c.56 0 1.03-.46 1.03-1.03v-.95c0-.56-.46-1.03-1.03-1.03H1.03C.46 16 0 16.46 0 17.03v.94zM0 12.97C0 13.54.46 14 1.03 14h17.95c.56 0 1.03-.46 1.03-1.03v-.95c0-.56-.46-1.03-1.03-1.03H1.03C.46 11 0 11.46 0 12.03v.94zM0 7.97C0 8.54.46 9 1.03 9h17.95C19.54 9 20 8.54 20 7.97v-.94C20 6.46 19.54 6 18.97 6H1.03C.46 6 0 6.46 0 7.03v.94z'];\nexport var ListIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"list\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 1c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1s.45-1 1-1h5zm9-12c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5zm0 4c.55 0 1 .45 1 1s-.45 1-1 1h-5c-.55 0-1-.45-1-1s.45-1 1-1h5z'];\nvar svgPaths20 = ['M0 2.973v-.936C0 1.468.46 1.01 1.029 1H7.97C8.541 1 9 1.468 9 2.027v.946C9 3.542 8.53 4 7.971 4H1.03C.459 4 0 3.542 0 2.973zm0 5v-.936C0 6.468.46 6.01 1.029 6H7.97C8.541 6 9 6.468 9 7.027v.946C9 8.542 8.53 9 7.971 9H1.03C.459 9 0 8.542 0 7.973zm0 5v-.936C0 11.468.46 11.01 1.029 11H7.97C8.541 11 9 11.468 9 12.027v.946C9 13.542 8.53 14 7.971 14H1.03C.459 14 0 13.542 0 12.973zm0 5v-.936C0 16.468.46 16.01 1.029 16H7.97C8.541 16 9 16.468 9 17.027v.946C9 18.542 8.53 19 7.971 19H1.03C.459 19 0 18.542 0 17.973zm11-15v-.936c0-.569.46-1.027 1.029-1.037h6.942C19.541 1 20 1.468 20 2.027v.946C20 3.542 19.53 4 18.971 4H12.03C11.459 4 11 3.542 11 2.973zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942C19.541 6 20 6.468 20 7.027v.946C20 8.542 19.53 9 18.971 9H12.03C11.459 9 11 8.542 11 7.973zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942c.57 0 1.029.468 1.029 1.027v.946c0 .569-.47 1.027-1.029 1.027H12.03c-.57 0-1.029-.458-1.029-1.027zm0 5v-.936c0-.569.46-1.027 1.029-1.037h6.942c.57 0 1.029.468 1.029 1.027v.946c0 .569-.47 1.027-1.029 1.027H12.03c-.57 0-1.029-.458-1.029-1.027z'];\nexport var ListColumnsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"list-columns\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 9H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0 4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm9-12h-5c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM6 5H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H1c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M8 6H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM8 1H1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm11 0h-7c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1z'];\nexport var ListDetailViewIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"list-detail-view\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 7h-.09A6.98 6.98 0 009 1.1V1c0-.55-.45-1-1-1S7 .45 7 1v.09A6.98 6.98 0 001.1 7H1c-.55 0-1 .45-1 1s.45 1 1 1h.1A6.969 6.969 0 007 14.91V15c0 .55.45 1 1 1s1-.45 1-1v-.09A6.98 6.98 0 0014.9 9h.1c.55 0 1-.45 1-1s-.45-1-1-1zm-6.02 5.9c-.05-.5-.46-.9-.98-.9s-.93.4-.98.9A5.017 5.017 0 013.1 8.98c.5-.05.9-.46.9-.98s-.4-.93-.9-.98A5.017 5.017 0 017.02 3.1c.05.5.46.9.98.9s.93-.4.98-.9c1.97.39 3.52 1.95 3.92 3.92-.5.05-.9.46-.9.98s.4.93.9.98a5.017 5.017 0 01-3.92 3.92zM8 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M10 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9 1h-1.07c-.45-3.61-3.32-6.45-6.93-6.91V1c0-.55-.45-1-1-1S9 .45 9 1v1.09C5.39 2.55 2.52 5.39 2.07 9H1c-.55 0-1 .45-1 1s.45 1 1 1h1.07c.45 3.61 3.32 6.45 6.93 6.91V19c0 .55.45 1 1 1s1-.45 1-1v-1.09c3.61-.46 6.48-3.29 6.93-6.91H19c.55 0 1-.45 1-1s-.45-1-1-1zm-4 2h.9a5.98 5.98 0 01-4.9 4.91V15c0-.55-.45-1-1-1s-1 .45-1 1v.91A5.98 5.98 0 014.1 11H5c.55 0 1-.45 1-1s-.45-1-1-1h-.9A5.98 5.98 0 019 4.09V5c0 .55.45 1 1 1s1-.45 1-1v-.91A5.98 5.98 0 0115.9 9H15c-.55 0-1 .45-1 1s.45 1 1 1z'];\nexport var LocateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"locate\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.96 7H12V3.95C12 1.77 10.21 0 8 0S4 1.77 4 3.95V7H1.96c-.55 0-.96.35-.96.9v6.91c0 .54.41 1.19.96 1.19h12c.55 0 1.04-.65 1.04-1.19V7.9c0-.55-.49-.9-1.04-.9zM6 7V3.95c0-1.09.9-1.97 2-1.97s2 .88 2 1.97V7H6z'];\nvar svgPaths20 = ['M15.93 9H14V4.99c0-2.21-1.79-4-4-4s-4 1.79-4 4V9H3.93c-.55 0-.93.44-.93.99v8c0 .55.38 1.01.93 1.01h12c.55 0 1.07-.46 1.07-1.01v-8c0-.55-.52-.99-1.07-.99zM8 9V4.99c0-1.1.9-2 2-2s2 .9 2 2V9H8z'];\nexport var LockIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"lock\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 8c0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L7.59 7H1c-.55 0-1 .45-1 1s.45 1 1 1h6.59L6.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71zm4-8H9c-.55 0-1 .45-1 1s.45 1 1 1h5v12H9c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 0h-8c-.55 0-1 .45-1 1s.45 1 1 1h7v16h-7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 10c0-.28-.11-.53-.29-.71l-5-5a1.003 1.003 0 00-1.42 1.42L11.59 9H1c-.55 0-1 .45-1 1s.45 1 1 1h10.59L8.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5-5c.18-.18.29-.43.29-.71z'];\nexport var LogInIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"log-in\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7 14H2V2h5c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm8.71-6.71l-3-3a1.003 1.003 0 00-1.42 1.42L12.59 7H6c-.55 0-1 .45-1 1s.45 1 1 1h6.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M19.71 9.29l-5-5a1.003 1.003 0 00-1.42 1.42L16.59 9H6c-.55 0-1 .45-1 1s.45 1 1 1h10.59l-3.29 3.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l5-5c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM9 18H2V2h7c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var LogOutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"log-out\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.99 1.13c-.02-.41-.33-.77-.78-.87C12.26-.36 9.84.13 8 1.7 6.16.13 3.74-.36.78.26.33.35.03.72.01 1.13H0v12c0 .08 0 .17.02.26.12.51.65.82 1.19.71 2.63-.55 4.59-.04 6.01 1.57.02.03.06.04.08.06.02.02.03.04.05.06.04.03.09.04.13.07.05.03.09.05.14.07.11.04.23.07.35.07h.04c.12 0 .24-.03.35-.07.05-.02.09-.05.14-.07.04-.02.09-.04.13-.07.02-.02.03-.04.05-.06.03-.02.06-.03.08-.06 1.42-1.6 3.39-2.12 6.01-1.57.54.11 1.07-.21 1.19-.71.04-.09.04-.18.04-.26l-.01-12zM7 12.99c-1.4-.83-3.07-1.14-5-.93V1.96c2.11-.28 3.75.2 5 1.46v9.57zm7-.92c-1.93-.21-3.6.1-5 .93V3.42c1.25-1.26 2.89-1.74 5-1.46v10.11z'];\nvar svgPaths20 = ['M20 1.1a.976.976 0 00-.83-.88C15.15-.43 12.07.34 10 2.5 7.93.34 4.85-.43.84.22.37.3.03.67 0 1.1v15.01c0 .07 0 .14.01.21.09.52.61.88 1.15.79 3.85-.62 6.4.16 8 2.46.02.02.03.04.05.07.02.02.04.04.06.07l.01.01a1.07 1.07 0 00.28.19c.01 0 .01.01.02.01.03.01.07.03.1.04.01 0 .02.01.04.01.03.01.07.02.1.02.01 0 .02 0 .04.01H10c.04 0 .09 0 .13-.01.01 0 .03 0 .04-.01.03-.01.06-.01.1-.02.01 0 .03-.01.04-.01.03-.01.07-.02.1-.04.01 0 .02-.01.03-.01.07-.03.13-.07.19-.11.01 0 .01-.01.02-.01.02-.02.04-.03.06-.05.01-.01.02-.02.03-.02l.05-.05c.01-.01.02-.02.02-.03.01-.02.02-.03.04-.05 1.61-2.3 4.15-3.09 8-2.46.54.09 1.06-.26 1.15-.79-.01-.05 0-.09 0-.13V1.1zM9 16.63c-1.78-1.31-4.12-1.83-7-1.55V2c3.26-.37 5.51.39 7 2.35v12.28zm9-1.56c-2.88-.28-5.22.24-7 1.55V4.34c1.49-1.96 3.74-2.71 7-2.35v13.08z'];\nexport var ManualIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"manual\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 8h3.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm14.49-4.01c.31-.32.51-.76.51-1.24C16 1.78 15.22 1 14.25 1c-.48 0-.92.2-1.24.51l-1.44 1.44 2.47 2.47 1.45-1.43zM1 4h7.76l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm0 6c-.55 0-1 .45-1 1 0 .48.35.86.8.96L2.76 10H1zm9.95-6.43l-6.69 6.69 2.47 2.47 6.69-6.69-2.47-2.47zm4.25 2.47L13.24 8H15c.55 0 1-.45 1-1 0-.48-.35-.86-.8-.96zM2 15l3.86-1.39-2.46-2.44L2 15zm13-5h-3.76l-2 2H15c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M1 12h4.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm16.77-3.94l1.65-1.65c.36-.36.58-.86.58-1.41 0-1.1-.9-2-2-2-.55 0-1.05.22-1.41.59l-1.65 1.65 2.83 2.82zM1 4h12.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zM0 15c0 .55.45 1 1 1h.34l2-2H1c-.55 0-1 .45-1 1zm1-7h8.34l2-2H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 2h-.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1zm0 4h-4.34l-2 2H19c.55 0 1-.45 1-1s-.45-1-1-1zM4 19l4.41-1.59-2.81-2.79L4 19zM14.23 5.94l-7.65 7.65 2.83 2.83 7.65-7.65-2.83-2.83z'];\nexport var ManuallyEnteredDataIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"manually-entered-data\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.55 3.17l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM5 13.46l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zm5-2.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01L10 2.47v8.67zm4 1.99l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z'];\nvar svgPaths20 = ['M19.54 4.18l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM6 17.13l-4-2.67V2.87l4 2.67v11.59zm6-2.67l-4 2.67V5.54l4-2.67v11.59zm6 2.67l-4-2.67V2.87l4 2.67v11.59z'];\nexport var MapIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"map\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 6.82v6.32l-2.94-1.96c-.02-.01-.04-.02-.05-.03V6.22c-.08-.07-.15-.16-.22-.24-.28-.02-.54-.08-.79-.16v5.32s-.01 0-.01.01L6 13.53V4.86s.01 0 .01-.01l2.05-1.23C8.02 3.42 8 3.21 8 3c0-.98.47-1.84 1.2-2.39l-3.67 2.2L1.56.17A1.003 1.003 0 000 1v11c0 .35.18.65.45.83l4.49 3a.975.975 0 001.07.02l4.46-2.67 3.97 2.65A1.003 1.003 0 0016 15V5.82c-.25.09-.52.14-.8.16-.33.36-.73.67-1.2.84zm-9 6.64l-3-2v-8.6l2.94 1.96c.02.02.04.03.06.04v8.6zM11 4h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M18 9.22v7.91l-4-2.67V9.22c-.61-.55-1-1.33-1-2.22-.35 0-.69-.07-1-.18v7.65l-4 2.67V5.54l2.02-1.35c0-.06-.02-.13-.02-.19 0-1.66 1.34-3 3-3 0-.34.07-.66.17-.97C13.12.02 13.06 0 13 0c-.21 0-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v14c0 .35.19.64.46.82l-.01.02 6 4 .01-.02c.15.1.33.18.54.18s.39-.08.54-.18l.01.02L13 16.2l5.45 3.63.01-.02c.15.11.33.19.54.19.55 0 1-.45 1-1V6.82c-.31.11-.65.18-1 .18 0 .89-.39 1.67-1 2.22zM6 17.13l-4-2.67V2.87l4 2.67v11.59zM12 4c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1z'];\nexport var MapCreateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"map-create\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8.46 0C5.42 0 2.95 2.39 2.95 5.33 2.95 8.28 8.46 16 8.46 16s5.51-7.72 5.51-10.67C13.96 2.39 11.5 0 8.46 0zm0 8a2.5 2.5 0 010-5 2.5 2.5 0 010 5z'];\nvar svgPaths20 = ['M9.98 0c-3.87 0-7 2.98-7 6.67 0 3.68 7 13.33 7 13.33s7-9.65 7-13.33c0-3.68-3.14-6.67-7-6.67zm0 10c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'];\nexport var MapMarkerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"map-marker\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.99 8.99c-.28 0-.53.11-.71.29l-3.29 3.29v-1.59c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.41L6.7 10.7a1.003 1.003 0 00-.71-1.71zm9-9h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59l-3.3 3.3a.99.99 0 00-.29.7 1.003 1.003 0 001.71.71l3.29-3.29V5c0 .55.45 1 1 1s1-.45 1-1V1c0-.56-.45-1.01-1-1.01z'];\nvar svgPaths20 = ['M19 0h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L18 3.41V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM8 11c-.28 0-.53.11-.71.29L2 16.59V14c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1H3.41l5.29-5.29c.19-.18.3-.43.3-.71 0-.55-.45-1-1-1z'];\nexport var MaximizeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"maximize\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.99 6.99c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm3-5h-14c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-10c0-.55-.45-1-1-1zm-1 9l-5-3-1 2-3-4-3 5v-7h12v7z'];\nvar svgPaths20 = ['M15 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-7H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm-1 13l-6-5-2 2-4-5-4 8V4h16v11z'];\nexport var MediaIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"media\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 4h14c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm14 8H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M1 6h18c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1s.45 1 1 1zm18 3H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var MenuIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"menu\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.99 6.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm-12-2c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1zm3-1h9c.55 0 1-.45 1-1s-.45-1-1-1h-9c-.55 0-1 .45-1 1s.45 1 1 1zm9 8h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M8 6h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM4 6c-.28 0-.53.11-.71.29l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3A1.003 1.003 0 005 13V7c0-.55-.45-1-1-1zm15 8H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-5H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var MenuClosedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"menu-closed\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.99 11.99h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm5.71 5.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M12 9H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0 5H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm0-10H1c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm7.71 5.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var MenuOpenIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"menu-open\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.71 5.29a1.003 1.003 0 00-1.42 1.42l.3.29H2V2h3v1.51c.52.06.99.29 1.34.65l.66.66V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-3.82l-.66.66c-.35.35-.82.59-1.34.65V14H2V9h2.59l-.3.29a1.003 1.003 0 001.42 1.42l2-2C7.89 8.53 8 8.28 8 8c0-.28-.11-.53-.29-.71l-2-2zM15 0h-5c-.55 0-1 .45-1 1v3.82l.66-.66c.35-.35.82-.59 1.34-.65V2h3v5h-2.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C8.11 7.47 8 7.72 8 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14v5h-3v-1.51c-.52-.06-.99-.29-1.34-.65L9 11.18V15c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M6.71 6.29a1.003 1.003 0 00-1.42 1.42L6.59 9H2V2h5v2.18c.42.15.8.39 1.11.7l.01-.01.88.89V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-4.76l-.88.88-.01-.01c-.31.31-.69.56-1.11.71V18H2v-7h4.59L5.3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM19 0h-7c-.55 0-1 .45-1 1v4.76l.88-.88.01.01c.31-.31.69-.55 1.11-.7V2h5v7h-4.59l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L13.41 11H18v7h-5v-2.18c-.42-.15-.8-.39-1.11-.7l-.01.01-.88-.89V19c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var MergeColumnsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"merge-columns\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6 3c-.93 0-1.71.64-1.93 1.5H11V3c0-1.66-1.34-3-3-3S5 1.34 5 3v4.5H3.93C3.71 6.64 2.93 6 2 6 .9 6 0 6.9 0 8s.9 2 2 2c.93 0 1.71-.64 1.93-1.5H5V13c0 1.66 1.34 3 3 3s3-1.34 3-3V8.5h1.07c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2s-.9-2-2-2zm-4 7c0 1.1-.9 2-2 2s-2-.9-2-2V3c0-1.1.9-2 2-2s2 .9 2 2v10z'];\nvar svgPaths20 = ['M10 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8-5c-.93 0-1.71.64-1.93 1.5H14V4c0-2.21-1.79-4-4-4S6 1.79 6 4v5.5H3.93C3.71 8.64 2.93 8 2 8c-1.1 0-2 .9-2 2s.9 2 2 2c.93 0 1.71-.64 1.93-1.5H6V16c0 2.21 1.79 4 4 4s4-1.79 4-4v-5.5h2.07c.22.86 1 1.5 1.93 1.5 1.1 0 2-.9 2-2s-.9-2-2-2zm-5 8c0 1.66-1.34 3-3 3s-3-1.34-3-3V4c0-1.66 1.34-3 3-3s3 1.34 3 3v12zM10 3c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nexport var MergeLinksIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"merge-links\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.99.99a1.003 1.003 0 00-1.71-.71l-3.29 3.29V1.99c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H12.4l3.3-3.29c.18-.18.29-.43.29-.71zm-10 8h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.29 14.28a1.003 1.003 0 001.42 1.42L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4a1.02 1.02 0 00-1.01-1.01z'];\nvar svgPaths20 = ['M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zM20 1a1.003 1.003 0 00-1.71-.71L13 5.59V3c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1h-2.59l5.29-5.29c.19-.18.3-.43.3-.71z'];\nexport var MinimizeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"minimize\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 7H3c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M16 9H4c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var MinusIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"minus\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 0H4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-3H5V3h6v9z'];\nvar svgPaths20 = ['M15 0H5c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-3H6V3h8v13z'];\nexport var MobilePhoneIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"mobile-phone\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 4c-.28 0-.53.11-.71.29L12 6.59V4c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V9.41l2.29 2.29c.18.19.43.3.71.3.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 5c-.28 0-.53.11-.71.29L15 8.59V5c0-.55-.45-1-1-1H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h13c.55 0 1-.45 1-1v-3.59l3.29 3.29c.18.19.43.3.71.3.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z'];\nexport var MobileVideoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"mobile-video\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 11.38A7.835 7.835 0 017.85 16C3.51 16 0 12.49 0 8.15 0 4.97 1.89 2.23 4.62 1c-.45.99-.7 2.08-.7 3.23a7.85 7.85 0 007.85 7.85c1.15 0 2.24-.25 3.23-.7z'];\nvar svgPaths20 = ['M19 14.15A9.94 9.94 0 019.94 20C4.45 20 0 15.55 0 10.06 0 6.03 2.4 2.56 5.85 1a9.811 9.811 0 00-.88 4.09c0 5.49 4.45 9.94 9.94 9.94 1.46 0 2.84-.31 4.09-.88z'];\nexport var MoonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"moon\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6.03a2 2 0 100 4 2 2 0 100-4zM14 6.03a2 2 0 100 4 2 2 0 100-4zM8 6.03a2 2 0 100 4 2 2 0 100-4z'];\nvar svgPaths20 = ['M3.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM17.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5zM10.5 8a2.5 2.5 0 100 5 2.5 2.5 0 100-5z'];\nexport var MoreIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"more\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 13H3l6-9h1l2 2h1l3 7zm-2.5-3.5l-1-2.5h-1l-2-2-3 4.5L9 8l1 1 1-1 2.5 1.5zM5.94 7l-4.122 6H0l5-6h.94z'];\nvar svgPaths20 = ['M20 16H4l7-11h1l2 2h1l5 9zm-4-5l-1.5-3h-1l-1-1-1-1L8 11.5l3-1.5 1 1 1-1 3 1zM8.055 8L2.79 16H0l7-8h1.055z'];\nexport var MountainIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"mountain\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.71 7.29l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9V3.41l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53.11 8.28 0 8 0s-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V7H3.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 9H7v3.59l-.29-.29A.965.965 0 006 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2a1.003 1.003 0 00-1.42-1.42l-.29.3V9h3.59l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M19.71 9.29l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 9H11V3.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3C10.53.11 10.28 0 10 0s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 3.41V9H3.41L4.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 11H9v5.59L7.71 15.3A.965.965 0 007 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3a1.003 1.003 0 00-1.42-1.42L11 16.59V11h5.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nexport var MoveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"move\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14h-.15c-.03-.09-.04-.16-.08-.25-.34-.79-2.01-1.31-3.12-1.8-1.11-.49-.96-.79-1-1.2-.01-.06-.01-.12-.01-.18.38-.34.69-.8.89-1.33 0 0 .01-.03.01-.04.04-.12.08-.24.11-.36.25-.05.4-.33.46-.59.06-.1.18-.36.15-.65-.04-.37-.19-.55-.35-.62v-.06c0-.48-.04-1.16-.13-1.61-.02-.12-.05-.25-.08-.37-.16-.55-.51-1.05-.96-1.39C9.26 3.19 8.6 3 8 3c-.59 0-1.26.19-1.73.55-.45.35-.8.84-.96 1.39-.04.13-.06.25-.08.38-.09.45-.13 1.13-.13 1.61v.06c-.18.06-.33.24-.37.62-.03.29.09.54.15.65.06.26.21.54.47.59.03.12.07.25.11.36 0 .01.01.02.01.02v.01c.21.54.53 1.01.92 1.35 0 .05-.01.11-.01.16-.04.41.08.7-1.03 1.2-1.11.49-2.77 1.01-3.12 1.8-.04.09-.05.16-.08.25H2V2h12v12z'];\nvar svgPaths20 = ['M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18h-.07c-.05-.2-.12-.42-.22-.67-.46-1.05-2.68-1.75-4.16-2.4-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5a3.67 3.67 0 00-1.29-1.86C11.7 3.25 10.81 3 10.02 3s-1.68.25-2.31.73c-.61.47-1.07 1.13-1.29 1.86-.05.16-.09.33-.11.5-.12.6-.17 1.51-.17 2.14v.08c-.24.09-.44.32-.49.83-.04.39.12.73.2.87.08.35.28.72.63.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.38 1.59-1.48.65-3.7 1.35-4.16 2.4-.12.27-.18.49-.23.69H2V2h16v16z'];\nexport var MugshotIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"mugshot\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 3.98H4c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm3-3H7c-.55 0-1 .45-1 1v1h8v5h1c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm-1 5H2v-3h6v3z'];\nvar svgPaths20 = ['M19 3H7c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm-6 6H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm-1 6H2v-4h10v4zm4-9H4c-.55 0-1 .45-1 1v1h12v6h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z'];\nexport var MultiSelectIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"multi-select\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0c-.07 0-.13.03-.19.04V.02l-10 2v.02C4.35 2.13 4 2.52 4 3v9.12c-.31-.07-.65-.12-1-.12-1.66 0-3 .9-3 2s1.34 2 3 2 3-.9 3-2V6.32l8-1.6v5.4c-.31-.07-.65-.12-1-.12-1.66 0-3 .9-3 2s1.34 2 3 2 3-.9 3-2V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 0c-.08 0-.16.03-.24.05V.03l-12 3v.02C6.33 3.16 6 3.53 6 4v11.35c-.59-.22-1.27-.35-2-.35-2.21 0-4 1.12-4 2.5S1.79 20 4 20c1.94 0 3.55-.86 3.92-2H8V7.78l10-2.5v7.07c-.59-.22-1.27-.35-2-.35-2.21 0-4 1.12-4 2.5s1.79 2.5 4 2.5c1.94 0 3.55-.86 3.92-2H20V1c0-.55-.45-1-1-1z'];\nexport var MusicIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"music\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.9 11c.6 0 1 .5 1 1 0 .257-.073.44-.22.614l-.08.086-3 3c-.2.2-.4.3-.7.3-.5 0-1-.4-1-1 0-.257.073-.44.22-.614l.08-.086 3-3c.2-.2.4-.3.7-.3zM1.3.1l6.734 2.45a3.005 3.005 0 002.095 3.322 3.005 3.005 0 003.401 2.081L13.9 9.8v.2c0 .257-.073.44-.22.614l-.08.086-3 3c-.171.171-.343.27-.577.294L9.9 14h-.2l-5-1-.1-.01c-.231-.05-.45-.26-.56-.49L4 12.4l-4-11 .3-.3 5.8 5.8c-.1.2-.2.4-.2.6 0 .8.6 1.5 1.5 1.5s1.5-.7 1.5-1.5S8.2 6 7.4 6c-.16 0-.32.064-.48.14l-.12.06L1 .4l.3-.3zM13 0c.55 0 1 .45 1 1v1h1c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .503-.376.922-.861.99l-.013.002A.999.999 0 0113 6l.097-.006-.027.004a1 1 0 01-.037.001L13 6c-.55 0-1-.45-1-1V4h-1a.993.993 0 01-.855-.482A1 1 0 0110 3c0-.55.45-1 1-1h1V1c0-.55.45-1 1-1z'];\nvar svgPaths20 = ['M18.7 13.7c.5 0 1 .4 1 1 0 .257-.073.44-.22.614l-.08.086-4 4c-.2.2-.4.3-.7.3-.6 0-1-.5-1-1 0-.257.073-.44.22-.614L14 18l4-4c.2-.2.4-.3.7-.3zM1.8 0l8.378 2.982A3.003 3.003 0 0013 7a3.003 3.003 0 003.877 2.87l.723 2.53.049.06a.41.41 0 01.051.24c0 .167-.07.403-.208.593l-.092.107-4 4c-.2.2-.4.3-.7.3-.075 0-.15-.056-.225-.084L12.4 17.6l-7-2-.112-.042c-.223-.094-.431-.244-.542-.45L4.7 15 0 1.8l.5-.6L7 7.7c-.2.3-.3.6-.3 1 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2a1.68 1.68 0 00-.871.22L7.7 7 1.2.5l.6-.5zM16 0c.55 0 1 .45 1 1v2h2c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .432-.278.803-.664.941l-.01.004A.989.989 0 0116 8c-.55 0-1-.45-1-1V5h-2c-.55 0-1-.45-1-1l.007-.116C12.065 3.388 12.489 3 13 3h2V1c0-.55.45-1 1-1z'];\nexport var NewDrawingIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-drawing\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 0H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm5 14c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zM6 9H1c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1zm9 4c-.55 0-1 .45-1 1-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm-4-4h-1c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1s1-.45 1-1c.55 0 1-.45 1-1s-.45-1-1-1zm4-9h-5c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm0 9h-1c-.55 0-1 .45-1 1s.45 1 1 1c0 .55.45 1 1 1s1-.45 1-1v-1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M8 0H1C.45 0 0 .45 0 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm0 11H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-7c0-.55-.45-1-1-1zm6 7h-1v-1c0-.55-.45-1-1-1s-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1s-.45-1-1-1zm5-7h-2c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1v-2c0-.55-.45-1-1-1zm0-11h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 11h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1s1-.45 1-1v-1h1c.55 0 1-.45 1-1s-.45-1-1-1zm5 5c-.55 0-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h2c.55 0 1-.45 1-1v-2c0-.55-.45-1-1-1z'];\nexport var NewGridItemIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-grid-item\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.982 6.272l1.518.868-.01.01c.3.17.51.48.51.85s-.21.68-.51.85l.01.01-7 4-.01-.01A.94.94 0 018 13a.94.94 0 01-.49-.15l-.01.01-7-4 .01-.01A.977.977 0 010 8c0-.37.21-.68.51-.86L.5 7.13l7-4 .01.02A.94.94 0 018 3c.086 0 .168.014.246.038a2 2 0 105.736 3.234zM14 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z'];\nvar svgPaths20 = ['M11.513 2.663A2 2 0 0013 6h1v1a2 2 0 104 0v-.733l1.5.833c.3.2.5.5.5.9s-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 8.7 0 8.4 0 8s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1l1.013.563zM17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2z'];\nexport var NewLayerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-layer\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5H9a1 1 0 110-2h2V1a1 1 0 012 0v2zm-3-1.983V2H9a2 2 0 100 4h1v1c0 .279.057.544.16.785l-1.71.855c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5a.992.992 0 01.07-1.81l6.99-3a1.006 1.006 0 01.79 0l1.6.687zm.91 7.66a2 2 0 003.085-1.54l.555-.277c.14-.07.29-.11.45-.11.55 0 1 .45 1 1 0 .39-.23.73-.55.89l-7 3.5c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5C.23 8.48 0 8.14 0 7.75c0-.55.45-1 1-1 .16 0 .31.04.45.11L8 10.13l2.91-1.453zM15 10.25c.55 0 1 .45 1 1 0 .39-.23.73-.55.89l-7 3.5c-.14.07-.29.11-.45.11-.16 0-.31-.04-.45-.11l-7-3.5c-.32-.16-.55-.5-.55-.89 0-.55.45-1 1-1 .16 0 .31.04.45.1L8 13.63l6.55-3.27c.14-.07.29-.11.45-.11z'];\nvar svgPaths20 = ['M17 3h2a1 1 0 010 2h-2v2a1 1 0 01-2 0V5h-2a1 1 0 010-2h2V1a1 1 0 012 0v2zm-1.252 5.984L10.5 11.9c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5C.2 6.7 0 6.4 0 6s.2-.7.5-.9l9-5c.2-.1.3-.1.5-.1s.3 0 .5.1L13.92 2H13a2 2 0 100 4h1v1a2 2 0 001.748 1.984zm2.07-1.15C17.935 7.58 18 7.298 18 7V6h1c.353 0 .684-.091.972-.251.018.078.028.162.028.251 0 .4-.2.7-.5.9l-1.682.934zM19 9c.6 0 1 .4 1 1 0 .4-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5c-.3-.2-.5-.5-.5-.9 0-.6.4-1 1-1 .2 0 .3 0 .5.1l8.5 4.8 8.5-4.8c.2-.1.3-.1.5-.1zm0 4c.6 0 1 .4 1 1 0 .4-.2.7-.5.9l-9 5c-.2.1-.3.1-.5.1s-.3 0-.5-.1l-9-5c-.3-.2-.5-.5-.5-.9 0-.6.4-1 1-1 .2 0 .3 0 .5.2l8.5 4.7 8.5-4.8c.2-.1.3-.1.5-.1z'];\nexport var NewLayersIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-layers\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 3h-1V2c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3.5 6a2.5 2.5 0 00-2.45 2h-4.1a2.5 2.5 0 100 1h4.1a2.5 2.5 0 102.45-3z'];\nvar svgPaths20 = ['M14.5 12a2.5 2.5 0 00-2.45 2h-7.1a2.5 2.5 0 100 1h7.1a2.5 2.5 0 102.45-3zM19 5h-2V3c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V7h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var NewLinkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-link\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 4c0 .6.4 1 1 1h2v2c0 .6.4 1 1 1s1-.4 1-1V5h2c.6 0 1-.4 1-1s-.4-1-1-1h-2V1c0-.6-.4-1-1-1s-1 .4-1 1v2H9c-.6 0-1 .5-1 1zm6.5 2.5V7c0 1.4-1.1 2.5-2.5 2.5S9.5 8.4 9.5 7v-.5H9C7.6 6.5 6.5 5.4 6.5 4S7.6 1.5 9 1.5h.5V1c0-.3.1-.6.1-.8C9.1.1 8.6 0 8 0 3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8c0-.6-.1-1.3-.2-1.9-.4.3-.8.4-1.3.4z'];\nvar svgPaths20 = ['M12 4c0 .6.4 1 1 1h2v2c0 .6.4 1 1 1 .5 0 1-.4 1-1V5h2c.5 0 1-.4 1-1s-.5-1-1-1h-2V1c0-.6-.5-1-1-1-.6 0-1 .4-1 1v2h-2c-.6 0-1 .5-1 1zm7 3c0 1.7-1.3 3-3 3s-3-1.3-3-3c-1.7 0-3-1.3-3-3s1.3-3 3-3c0-.2 0-.4.1-.5-1-.3-2-.5-3.1-.5C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10c0-1.1-.2-2.1-.5-3H19z'];\nexport var NewObjectIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-object\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.12 12.69c-1.17-.53-1.01-.85-1.05-1.29-.01-.06-.01-.12-.01-.19.4-.37.73-.87.94-1.44 0 0 .01-.03.01-.04.05-.14.09-.27.12-.4.27-.06.43-.36.49-.63.06-.11.19-.39.16-.7-.04-.41-.2-.6-.38-.68v-.07c0-.51-.05-1.25-.14-1.74-.02-.13-.05-.27-.09-.4-.17-.6-.53-1.14-1.01-1.52C7.66 3.2 6.96 3 6.33 3c-.62 0-1.33.2-1.82.59-.49.38-.85.92-1.02 1.52-.04.13-.07.26-.09.4-.09.49-.13 1.23-.13 1.74v.06c-.19.08-.35.27-.39.68-.03.31.1.59.16.7.06.28.22.59.5.64.03.14.07.27.11.4 0 .01.01.02.01.02v.01c.22.59.55 1.1.96 1.46 0 .06-.01.12-.01.17-.04.44.08.76-1.09 1.29-1.17.53-2.93 1.1-3.29 1.95-.35.87-.2 1.37-.2 1.37h12.6s.15-.5-.22-1.36c-.36-.85-2.12-1.42-3.29-1.95zM14.89 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M11.41 15.92c-1.46-.65-1.26-1.05-1.31-1.59-.01-.07-.01-.15-.01-.23.5-.45.91-1.07 1.18-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.33-.07.53-.44.6-.78.08-.14.23-.48.2-.87-.05-.5-.24-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15-.02-.17-.06-.33-.11-.5-.22-.73-.67-1.4-1.27-1.86C9.58 4.25 8.7 4 7.92 4c-.78 0-1.66.25-2.28.73-.61.47-1.06 1.13-1.27 1.86-.05.16-.08.33-.11.5-.12.6-.18 1.51-.18 2.14v.08c-.23.09-.43.32-.48.83-.04.39.12.73.2.87.08.35.28.72.62.78.04.17.09.33.15.48 0 .01.01.02.01.03l.01.01c.27.72.69 1.35 1.21 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.36 1.59-1.46.65-3.66 1.35-4.11 2.4C-.14 19.38.04 20 .04 20h15.75s.18-.62-.27-1.67c-.45-1.06-2.65-1.75-4.11-2.41zM18.87 3h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var NewPersonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-person\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.82 11.66l2.48-2.87c.12-.2.13-.37.04-.53-.11-.19-.3-.26-.52-.26h-1.29c-.27 0-.49.13-.63.34L8.44 9.9 6.95 8a.482.482 0 00-.08-.1L5.82 6.55c.57-.24 1.04-.57 1.42-1.01.49-.57.74-1.27.74-2.08 0-.51-.1-.99-.32-1.42-.21-.43-.51-.8-.89-1.11A4.1 4.1 0 005.42.24C4.91.08 4.34 0 3.72 0H.61C.26 0 0 .23 0 .56v9.89c0 .33.26.55.61.55h.8c.36 0 .61-.23.61-.56V6.99H3.3l3.73 4.74-2.71 3.48c-.12.2-.13.37-.04.53.11.19.3.26.52.26h1.27c.27 0 .51-.12.64-.34l1.69-2.15 1.66 2.14c.12.21.34.35.62.35h1.43c.2 0 .39-.08.5-.25.12-.18.09-.38-.02-.55l-2.77-3.54zM4.18 5H1.99V2.02h2.19c.62 0 1.08.13 1.38.37.29.22.44.62.44 1.08 0 .45-.15.94-.44 1.17-.31.23-.76.36-1.38.36zM15 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zM9.99 3.01c0 .02.01.04.01.06V2.95c0 .02-.01.04-.01.06z'];\nvar svgPaths20 = ['M11.95 10.23c.16-.18.22-.22.46-.22h1.48c.25 0 .47.08.59.33.1.2.09.41-.05.66l-2.71 3.58L14.88 19c.13.21.16.46.03.69-.12.21-.34.31-.57.31H12.7c-.31 0-.56-.17-.7-.44l-1.9-2.67-1.93 2.68c-.15.27-.42.43-.73.43H5.98c-.25 0-.47-.08-.59-.33-.1-.2-.09-.41.05-.66l3.09-4.35L4.26 9H3v4.32c0 .41-.3.69-.7.69H.7c-.41 0-.7-.28-.7-.69V.69C0 .28.3 0 .7 0h4.42c.71 0 1.36.1 1.94.3.59.2 1.11.49 1.54.87.44.38.78.84 1.02 1.39.25.54.37 1.13.37 1.77 0 1.01-.28 1.88-.84 2.6-.43.54-1.35 1.29-2 1.59l3.09 3.94 1.71-2.23zM4.71 6.04c.71 0 1.45-.16 1.81-.46.33-.28.5-.69.5-1.25s-.17-.97-.5-1.25c-.35-.3-1.1-.46-1.81-.46h-1.7v3.42h1.7zM19 3c.55 0 1 .45 1 1s-.45 1-1 1h-2v2c0 .55-.45 1-1 1s-1-.45-1-1V5h-2c-.55 0-1-.45-1-1s.45-1 1-1h2V1c0-.55.45-1 1-1s1 .45 1 1v2h2z'];\nexport var NewPrescriptionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-prescription\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 6.5c0 .28.22.5.5.5H7v3.5c0 .28.22.5.5.5s.5-.22.5-.5V7h1.5c.28 0 .5-.22.5-.5S9.78 6 9.5 6h-4c-.28 0-.5.22-.5.5zM15 2h-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1h-1c-.55 0-1 .45-1 1s.45 1 1 1h1v1c0 .55.45 1 1 1s1-.45 1-1V4h1c.55 0 1-.45 1-1s-.45-1-1-1zm-2 5c-.55 0-1 .45-1 1v5H3V4h5c.55 0 1-.45 1-1s-.45-1-1-1H2c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 3h-2V1c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V5h2c.55 0 1-.45 1-1s-.45-1-1-1zM5 7.5v1c0 .28.22.5.5.5s.5-.22.5-.5V8h2v7h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h2c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H9V8h2v.5c0 .28.22.5.5.5s.5-.22.5-.5v-1c0-.28-.22-.5-.5-.5h-6c-.28 0-.5.22-.5.5zM16 9c-.55 0-1 .45-1 1v8H2V5h8c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1h15c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z'];\nexport var NewTextBoxIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"new-text-box\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 5s-2.52 2.11-4.96 1.99C11.03 4.89 10.39.23 5 0c0 0 2.11 2.54 1.96 4.99C4.86 5.01.23 5.65 0 11c0 0 2.56-2.12 5.02-1.95.02 2.11.67 6.72 5.98 6.95 0 0-2.09-2.54-1.94-4.99 2.11-.02 6.71-.68 6.94-6.01zM8 9.5c-.83 0-1.5-.67-1.5-1.5S7.17 6.5 8 6.5s1.5.67 1.5 1.5S8.83 9.5 8 9.5z'];\nvar svgPaths20 = ['M20 6s-2.98 2.43-6.12 2.19C13.52 5.31 12.05 0 6 0c0 0 2.41 2.99 2.16 6.12C5.27 6.49 0 7.97 0 14c0 0 2.98-2.43 6.11-2.19C6.47 14.69 7.94 20 14 20c0 0-2.42-2.99-2.16-6.13C14.73 13.51 20 12.02 20 6zm-10 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'];\nexport var NinjaIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"ninja\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.58 5l.44-2.196a1 1 0 011.96.392L9.62 5H13a1 1 0 010 2H9.22l-.4 2H13a1 1 0 010 2H8.42l-.44 2.196a1 1 0 01-1.96-.392L6.38 11H3a1 1 0 010-2h3.78l.4-2H3a1 1 0 110-2h4.58z'];\nvar svgPaths20 = ['M9.487 7l.532-3.196a1 1 0 011.962.392L11.513 7H16a1 1 0 010 2h-4.82l-.333 2H16a1 1 0 010 2h-5.487l-.532 3.196a1 1 0 01-1.962-.392L8.487 13H4a1 1 0 010-2h4.82l.333-2H4a1 1 0 110-2h5.487z'];\nexport var NotEqualToIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"not-equal-to\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 16c1.1 0 2-.9 2-2H6c0 1.1.9 2 2 2zm6-5c-.55 0-1-.45-1-1V6c0-2.43-1.73-4.45-4.02-4.9 0-.04.02-.06.02-.1 0-.55-.45-1-1-1S7 .45 7 1c0 .04.02.06.02.1A4.992 4.992 0 003 6v4c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M10 20c1.1 0 2-.9 2-2H8c0 1.1.9 2 2 2zm7-5c-.55 0-1-.45-1-1V8c0-2.61-1.67-4.81-4-5.63V2c0-1.1-.9-2-2-2S8 .9 8 2v.37C5.67 3.19 4 5.39 4 8v6c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var NotificationsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"notifications\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 16c1.1 0 2-.9 2-2H6c0 1.1.9 2 2 2zm3.399-13.667l-.413.412A2.99 2.99 0 009 1.99a3 3 0 00-3 2.99c0 .8.32 1.558.876 2.114l2.002 1.992A2.99 2.99 0 0013 9.184V10c0 .55.45 1 1 1s1 .45 1 1-.45 1-1 1H2c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V6c0-2.43 1.73-4.45 4.02-4.9 0-.04-.02-.06-.02-.1 0-.55.45-1 1-1s1 .45 1 1c0 .04-.02.06-.02.1a4.97 4.97 0 012.419 1.233zM10.29 7.67l-2-1.99a.99.99 0 01-.29-.7 1 1 0 011-.99c.27 0 .52.11.7.29l1.29 1.29 3.28-3.28c.18-.18.42-.29.7-.29.55 0 1 .44 1 .99 0 .28-.11.52-.3.7l-3.98 3.98a.99.99 0 01-1.4 0z'];\nvar svgPaths20 = ['M10 20c1.1 0 2-.9 2-2H8c0 1.1.9 2 2 2zm2-17.834A2.994 2.994 0 008 4.99c0 .808.319 1.557.876 2.114l2.97 2.99a2.99 2.99 0 004.154.072V14c0 .55.45 1 1 1s1 .45 1 1-.45 1-1 1H3c-.55 0-1-.45-1-1s.45-1 1-1 1-.45 1-1V8c0-2.61 1.67-4.81 4-5.63V2c0-1.1.9-2 2-2s2 .9 2 2v.166zm1.26 6.514l-2.97-2.99a.973.973 0 01-.29-.7c0-.55.44-1 .99-1 .27 0 .52.11.7.29l2.28 2.28 4.27-4.27a.99.99 0 01.7-.29c.55 0 1 .45 1 1 0 .28-.11.53-.3.7l-4.98 4.98a.99.99 0 01-1.4 0z'];\nexport var NotificationsUpdatedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"notifications-updated\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.76 7h1.26V0h-.94c-.04.21-.12.39-.25.54-.13.15-.29.27-.48.36-.18.09-.39.16-.62.2-.23.04-.46.06-.71.06v.9h1.74V7zm-.59 7.17c.18-.12.37-.25.58-.37a10.763 10.763 0 001.24-.83c.2-.16.37-.33.52-.51.15-.19.28-.39.37-.61.09-.22.14-.47.14-.74 0-.22-.04-.45-.12-.7-.08-.26-.21-.49-.4-.69-.18-.21-.43-.39-.72-.52-.3-.14-.68-.21-1.12-.21-.41 0-.77.07-1.08.2-.32.14-.58.32-.8.56-.22.23-.38.51-.49.84-.11.32-.16.67-.16 1.05h1.19c.01-.24.03-.47.08-.67.05-.21.11-.39.21-.54.09-.15.22-.27.38-.36.16-.09.35-.13.59-.13.26 0 .47.04.63.12.16.08.29.18.38.3.09.12.15.25.18.39s.05.27.05.4c-.01.27-.08.5-.22.71-.14.21-.32.4-.53.57-.22.18-.45.34-.71.49-.26.15-.51.31-.74.47-.5.31-.89.68-1.17 1.11-.3.41-.44.91-.45 1.48h5v-1H1.43c.05-.15.14-.29.27-.43.14-.13.29-.26.47-.38zM15.01 1.99h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.44-1-1-1zm0 9h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1v-1c0-.55-.44-1-1-1z'];\nvar svgPaths20 = ['M1.74 9.01h1.27V1h-.95c-.04.24-.12.45-.26.62-.13.17-.29.3-.47.41-.19.11-.4.18-.63.23-.23.04-.46.07-.71.07v1.03h1.75v5.65zm.43 7.93c.18-.14.37-.28.58-.43.21-.14.42-.29.63-.45.21-.16.41-.33.61-.5.2-.18.37-.38.52-.59.15-.21.28-.45.37-.7.09-.25.14-.54.14-.85 0-.25-.04-.52-.12-.8-.08-.28-.21-.54-.39-.78-.19-.24-.43-.44-.73-.59-.3-.17-.68-.25-1.12-.25-.41 0-.77.08-1.08.23-.32.16-.58.37-.8.64-.22.27-.38.59-.49.96-.11.37-.16.77-.16 1.21h1.19c.01-.28.03-.53.08-.77s.12-.45.21-.62c.09-.18.22-.31.38-.42.16-.1.35-.15.59-.15.26 0 .47.05.63.14.16.09.29.21.38.35.09.14.15.29.18.45.03.16.05.31.05.45-.01.31-.08.58-.22.81-.14.24-.32.45-.53.66-.22.2-.45.39-.71.57-.26.18-.51.36-.74.54-.5.36-.89.78-1.17 1.27-.3.47-.45 1.04-.46 1.69H5v-1.14H1.43c.05-.17.14-.33.27-.49.13-.15.29-.3.47-.44zM18 4.02H8c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-.56-.45-1-1-1zm0 9H8c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-1c0-.56-.45-1-1-1z'];\nexport var NumberedListIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"numbered-list\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2.79 4.61c-.13.17-.29.3-.48.41-.18.11-.39.18-.62.23-.23.04-.46.07-.71.07v1.03h1.74V12h1.26V4h-.94c-.04.23-.12.44-.25.61zm4.37 5.31c.18-.14.37-.28.58-.42l.63-.45c.21-.16.41-.33.61-.51s.37-.38.52-.59c.15-.21.28-.45.37-.7.09-.25.13-.54.13-.85 0-.25-.04-.52-.12-.8-.07-.29-.2-.55-.39-.79a2.18 2.18 0 00-.73-.6c-.29-.15-.66-.23-1.11-.23-.41 0-.77.08-1.08.23-.31.16-.58.37-.79.64-.22.27-.38.59-.49.96-.11.37-.16.77-.16 1.2h1.19c.01-.27.03-.53.08-.77.04-.24.11-.45.21-.62.09-.18.22-.32.38-.42.16-.1.35-.15.59-.15.26 0 .47.05.63.14.15.09.28.21.37.35.09.14.15.29.18.45.03.16.05.31.05.45-.01.31-.08.58-.22.82-.14.23-.32.45-.53.65-.22.21-.46.39-.71.57-.26.18-.51.36-.75.54-.5.36-.89.78-1.17 1.27-.28.49-.43 1.06-.44 1.71h5v-1.15H6.43c.05-.17.14-.33.27-.49.13-.15.29-.29.46-.44zm8.5-1.56c-.23-.35-.54-.57-.95-.65v-.02c.34-.13.6-.34.76-.63.16-.29.24-.63.24-1.02 0-.34-.06-.64-.19-.9s-.3-.47-.51-.64c-.21-.17-.45-.3-.72-.38-.27-.09-.54-.13-.82-.13-.36 0-.68.07-.96.2-.28.13-.53.32-.72.55-.2.23-.36.51-.47.83-.11.32-.18.66-.19 1.04h1.15c-.01-.2.01-.39.06-.58.05-.19.12-.36.22-.51.1-.15.22-.27.37-.36.15-.09.32-.13.53-.13.32 0 .59.1.79.3.21.2.31.46.31.79 0 .23-.05.43-.14.59-.09.16-.21.29-.35.38-.15.09-.32.16-.51.19-.19.04-.38.05-.57.04v.93c.23-.01.45 0 .67.02.22.02.42.08.59.17.18.09.32.23.43.4.11.18.16.41.16.71 0 .44-.13.78-.39 1.02s-.58.36-.97.36c-.45 0-.79-.16-1.02-.47-.23-.31-.33-.7-.32-1.17H11c.01.4.06.77.17 1.1.11.33.26.61.47.85.21.23.46.42.77.54.31.13.67.19 1.08.19.34 0 .66-.05.96-.16.3-.11.57-.27.8-.47.23-.2.41-.45.55-.74.13-.27.2-.6.2-.97 0-.5-.11-.92-.34-1.27z'];\nvar svgPaths20 = ['M2.39 5.75c-.17.21-.38.39-.63.52s-.52.23-.83.29c-.3.05-.61.08-.93.08v1.24h2.49V15h1.49V4.98H2.73c-.05.31-.17.57-.34.77zm17.2 4.71c-.27-.44-.65-.71-1.14-.82v-.02c.42-.16.72-.43.92-.79.2-.36.29-.79.29-1.27 0-.42-.08-.8-.23-1.12-.15-.33-.36-.59-.62-.8-.26-.21-.55-.37-.87-.48-.32-.11-.65-.16-.98-.16-.43 0-.82.08-1.16.25-.34.16-.63.39-.87.69-.24.29-.43.64-.57 1.04-.14.4-.22.83-.23 1.3h1.39c-.01-.25.02-.49.07-.72.06-.23.14-.44.26-.63s.27-.34.45-.45c.18-.11.39-.17.63-.17.39 0 .71.12.96.37s.37.58.37.99c0 .29-.05.54-.16.74-.11.2-.25.36-.43.47-.18.11-.38.19-.61.24-.23.05-.46.06-.68.05v1.17c.28-.01.55 0 .81.03s.5.1.71.21c.21.11.38.28.51.5.13.22.2.52.2.89 0 .55-.16.97-.47 1.27-.31.3-.7.45-1.17.45-.55 0-.95-.19-1.23-.58-.27-.39-.4-.88-.38-1.46h-1.39c.01.5.08.96.21 1.38.13.41.32.77.57 1.06.25.29.56.52.93.68.37.16.8.24 1.3.24.41 0 .79-.07 1.16-.21.37-.14.69-.33.96-.58.28-.25.5-.56.66-.92a3 3 0 00.24-1.23c0-.64-.14-1.17-.41-1.61zM8.58 12.41c.21-.18.45-.36.7-.53.25-.18.5-.36.75-.56.25-.2.49-.41.73-.63.23-.22.44-.47.63-.74.18-.27.33-.56.44-.88.11-.32.16-.67.16-1.07 0-.32-.05-.65-.14-1-.09-.35-.25-.68-.47-.97-.22-.3-.51-.55-.87-.74-.36-.2-.81-.29-1.35-.29-.49 0-.93.1-1.3.29-.37.18-.69.44-.95.78-.26.33-.45.73-.58 1.2-.13.46-.2.96-.2 1.5h1.43c.01-.35.04-.67.09-.97.05-.3.14-.56.25-.78.11-.22.26-.39.45-.52s.43-.19.71-.19c.31 0 .56.06.75.18.19.12.34.26.45.43.11.17.18.36.22.56.04.2.06.39.06.57-.01.38-.1.72-.26 1.02-.15.3-.37.57-.63.83-.26.25-.54.49-.85.71-.31.22-.61.45-.89.68-.6.45-1.06.98-1.41 1.58-.35.61-.52 1.32-.53 2.13h6.01v-1.43H7.69c.06-.21.17-.42.33-.61s.34-.38.56-.55z'];\nexport var NumericalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"numerical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 5h-3V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h3v-4h4v4h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zM5 10H2V7h3v3zm0-5H2V2h3v3zm5 5H7V7h3v3zm0-5H7V2h3v3zm4 9h-2v-2h2v2zm0-4h-2V7h2v3z'];\nvar svgPaths20 = ['M19 6h-5V1c0-.55-.45-1-1-1H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h4v-6h4v6h10c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zM6 12H2V8h4v4zm0-6H2V2h4v4zm6 6H8V8h4v4zm0-6H8V2h4v4zm6 11h-4v-3h4v3zm0-5h-4V8h4v4z'];\nexport var OfficeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"office\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zM6 14l1-5H4l6-7-1 5h3l-6 7z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zM7 18l2-7H5l8-9-2 7h4l-8 9z'];\nexport var OfflineIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"offline\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 14h-1.35l-3.34-7.51 2.46-.95 1.45 3.21c.09.2.36.3.6.23.1-.03.18-.08.24-.15.05-.08 1.23-1.56.87-4.2-.11-.79-.52-4.62-3.26-4.62-.93 0-1.68.62-1.67 1.37 0 .14.03.28.09.42l.87 1.92L.64 8.07v.01A.98.98 0 000 9c0 .55.45 1 1 1 .13 0 .25-.03.36-.07v.01l1.04-.4L3.67 14H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM4.27 8.81L7.14 7.7 5.2 12.08l-.93-3.27zM6.54 14L9 8.46 11.46 14H6.54z'];\nvar svgPaths20 = ['M19 17.99h-1.36l-4.35-9.57 2.91-.86 1.66 4.1c.11.27.43.4.72.31.12-.04.22-.11.28-.2.06-.11 1.47-2.08 1.05-5.6C19.79 5.12 19.3 0 16.01 0 14.89.01 13.99.83 14 1.84c0 .19.04.38.1.56l1.34 3.31L.72 10.03v.02c-.41.12-.72.49-.72.94 0 .55.45 1 1 1 .1 0 .19-.03.28-.06v.02l2-.59 1.47 6.63H3c-.55 0-1 .45-1 1s.45 1 1 1h16c.55 0 1-.45 1-1s-.45-1-1-1zM5.2 10.8l3.95-1.16-2.83 6.22L5.2 10.8zm2.35 7.19l3.95-8.68 3.95 8.68h-7.9z'];\nexport var OilFieldIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"oil-field\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1zm-6 5c-.28 0-.53.11-.71.29l-2 2a1.014 1.014 0 000 1.42l2 2a1.003 1.003 0 001.71-.71v-4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M14.94 0h-4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-8 6c-.28 0-.53.11-.71.29l-3 3c-.18.18-.29.43-.29.71s.11.53.29.71l3 3A1.003 1.003 0 007.94 13V7c0-.55-.45-1-1-1z'];\nexport var OneColumnIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"one-column\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0c4.42 0 8 3.58 8 8 0 4.06-3.02 7.4-6.94 7.92-.02 0-.04.01-.06.01-.33.04-.66.07-1 .07-4.42 0-8-3.58-8-8 0-.55.45-1 1-1s1 .45 1 1c0 3.31 2.69 6 6 6 .71 0 1.37-.15 2-.38v.01c2.33-.82 4-3.02 4-5.63 0-3.31-2.69-6-6-6-1.78 0-3.36.78-4.46 2H5c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v1.74A7.95 7.95 0 018 0zm1 12H7v-2h2v2zm0-3H7V4h2v5z'];\nvar svgPaths20 = ['M10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10S0 15.52 0 10c0-.55.45-1 1-1s1 .45 1 1c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8C7.47 2 5.22 3.17 3.76 5H5c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v2.05C3.82 1.6 6.71 0 10 0zm1 16H9v-2h2v2zm0-3H9V4h2v9z'];\nexport var OutdatedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"outdated\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 .95H1c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-12c0-.55-.45-1-1-1zm-9 12H2v-6h4v6zm8 0H7v-6h7v6zm0-7H2v-3h12v3z'];\nvar svgPaths20 = ['M19 1H1c-.55 0-1 .45-1 1v16c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zM7 17H2V8h5v9zm11 0H8V8h10v9zm0-10H2V3h16v4z'];\nexport var PageLayoutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"page-layout\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 4h3v1h-3zM10 6h3v1h-3zM10 8h3v1h-3zM10 10h3v1h-3z', 'M15 1H1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zM8 12H2V3h6v9zm6 0H9V3h5v9z'];\nvar svgPaths20 = ['M1 1h18a1 1 0 011 1v15a1 1 0 01-1 1H1a1 1 0 01-1-1V2a1 1 0 011-1zm1 2v13h16V3H2zm9 0h1v13h-1V3zm2 7h3.952v1H13v-1zm0 2h3.952v1H13v-1zm0 2h3.952v1H13v-1zm0-6h3.952v1H13V8zm0-2h3.952v1H13V6zm0-2h3.952v1H13V4z'];\nexport var PanelStatsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"panel-stats\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zM8 9H6V7h2v2zm0-3H6V4h2v2zm-6 6V3h3v9H2zm4 0v-2h2v2H6zm8 0H9v-2h5v2zm0-3H9V7h5v2zm0-3H9V4h5v2z'];\nvar svgPaths20 = ['M19 1H1c-.6 0-1 .4-1 1v15c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zm-9 11H7V9h3v3zm0-4H7V5h3v3zm-8 8V3h4v13H2zm5 0v-3h3v3H7zm11 0h-7v-3h7v3zm0-4h-7V9h7v3zm0-4h-7V5h7v3z'];\nexport var PanelTableIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"panel-table\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.68 2.31A4.54 4.54 0 0011.46.99c-1.15 0-2.31.44-3.19 1.32L.95 9.63c-.63.63-.95 1.46-.95 2.28a3.21 3.21 0 003.23 3.22c.83 0 1.66-.31 2.3-.95l7.31-7.32c.76-.77.76-1.98.01-2.73s-1.99-.76-2.75 0l-6.07 6.08c-.24.25-.24.65.01.9s.65.25.91.01l6.07-6.08c.25-.25.67-.25.91-.01.25.25.25.67 0 .92l-7.31 7.32c-.75.75-2.04.74-2.76.01-.75-.75-.73-2.02.01-2.76L9.2 3.21c1.24-1.24 3.35-1.26 4.58-.03 1.24 1.24 1.24 3.36 0 4.6l-7.12 7.13c-.24.25-.24.64.01.88.24.24.63.24.88.01v.01l7.13-7.13A4.41 4.41 0 0016 5.51c0-1.16-.44-2.32-1.32-3.2z'];\nvar svgPaths20 = ['M18.35 2.67A5.664 5.664 0 0014.33 1c-1.44 0-2.89.56-3.99 1.67l-9.16 9.27C.4 12.73 0 13.78 0 14.83s.39 2.1 1.18 2.9c.78.79 1.82 1.18 2.85 1.18 1.04 0 2.07-.39 2.87-1.2l9.14-9.27c.96-.96.96-2.5.02-3.45-.94-.95-2.49-.96-3.44 0l-7.59 7.69c-.31.32-.3.83.01 1.14.31.31.81.31 1.13.02l7.59-7.69c.31-.31.84-.31 1.13-.02.31.31.31.85 0 1.16l-9.14 9.27c-.93.95-2.54.93-3.45.02-.94-.95-.92-2.55.02-3.49l9.16-9.25c1.55-1.56 4.18-1.59 5.72-.03 1.56 1.57 1.55 4.26 0 5.82l-8.89 9.02c-.3.31-.3.81.01 1.11.3.3.79.31 1.1.01v.01l8.91-9.02A5.645 5.645 0 0020 6.73c0-1.48-.55-2.94-1.65-4.06z'];\nexport var PaperclipIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"paperclip\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 1H6C3.8 1 2 2.8 2 5s1.8 4 4 4v5c0 .6.4 1 1 1s1-.5 1-1V3h2v11c0 .6.4 1 1 1s1-.5 1-1V3h1c.5 0 1-.4 1-1s-.4-1-1-1z'];\nvar svgPaths20 = ['M16.5 1H7C4.2 1 2 3.2 2 6s2.2 5 5 5v6.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V4h2v13.5c0 .8.7 1.5 1.5 1.5s1.5-.7 1.5-1.5V4h1.5c.8 0 1.5-.7 1.5-1.5S17.3 1 16.5 1z'];\nexport var ParagraphIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"paragraph\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.5 0h-13C.67 0 0 .67 0 1.5S.67 3 1.5 3H7v3H3.5C2.67 6 2 6.67 2 7.5S2.67 9 3.5 9H7v3H5.5c-.83 0-1.5.67-1.5 1.5S4.67 15 5.5 15h5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5H9V9h3.5c.83 0 1.5-.67 1.5-1.5S13.33 6 12.5 6H9V3h5.5c.83 0 1.5-.67 1.5-1.5S15.33 0 14.5 0z'];\nvar svgPaths20 = ['M18 0H2C.9 0 0 .9 0 2s.9 2 2 2h7v4H4c-1.1 0-2 .9-2 2s.9 2 2 2h5v4H6c-1.1 0-2 .9-2 2s.9 2 2 2h8c1.1 0 2-.9 2-2s-.9-2-2-2h-3v-4h5c1.1 0 2-.9 2-2s-.9-2-2-2h-5V4h7c1.1 0 2-.9 2-2s-.9-2-2-2z'];\nexport var PathIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"path\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 14.62l-4-2.4V9.77c-.32.09-.66.15-1 .18v2.27l-4 2.4V8.71c-.38-.31-.72-.66-1-1.06v6.97l-4-2.4V8c.55 0 1-.45 1-1s-.45-1-1-1V1.38l3.15 1.89c.08-.34.18-.66.32-.97L.76.07v.01A.496.496 0 00.5 0C.22 0 0 .22 0 .5v12c0 .18.1.33.25.42v.01l5 3v-.01c.07.05.16.08.25.08s.18-.03.25-.08v.01l4.74-2.85 4.74 2.85v-.01c.09.05.18.08.27.08.28 0 .5-.22.5-.5v-3.78c-.3.17-.63.28-1 .28v2.62zM2 5c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm6-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm7.75-.92l-1.19-.72c.18.43.29.9.36 1.38l.08.04v3.39l1 1V3.5c0-.18-.1-.33-.25-.42zM10 2c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3.3 4.89c.44-.7.7-1.51.7-2.39C14 2.01 11.99 0 9.5 0S5 2.01 5 4.5 7.01 9 9.5 9c.88 0 1.69-.26 2.39-.7l2.41 2.41c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-2.41-2.4zM9.5 8C7.57 8 6 6.43 6 4.5S7.57 1 9.5 1 13 2.57 13 4.5 11.43 8 9.5 8z'];\nvar svgPaths20 = ['M4 7c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 11.69l-5-2.5v-3.63c-.32.11-.66.22-1 .29v3.32l-6 2.57v-7.25c-.36-.27-.69-.57-1-.9v8.1l-5-2.5V10c.55 0 1-.45 1-1s-.45-1-1-1V1.31l3.43 1.71c.11-.31.24-.62.39-.92L.72.05A.545.545 0 00.5 0C.22 0 0 .22 0 .5v16c0 .2.12.36.28.44l6 3c.07.04.14.06.22.06.07 0 .14-.01.2-.04l6.79-2.91 5.79 2.9c.07.03.14.05.22.05.28 0 .5-.22.5-.5v-4.21c-.31.13-.64.21-1 .21v3.19zM10 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3-1c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm6.72-.94l-1.43-.72c.2.43.36.89.48 1.36l.23.11V5.5c-.55 0-1 .45-1 1s.45 1 1 1v1.96l1 1V3.5c0-.2-.12-.36-.28-.44zm-3.69 5.56c.14-.21.27-.42.38-.65.02-.04.04-.07.05-.11.11-.22.2-.45.28-.69v-.01c.07-.24.13-.48.17-.73l.03-.17c.04-.25.06-.5.06-.76C17 2.46 14.54 0 11.5 0S6 2.46 6 5.5 8.46 11 11.5 11c.26 0 .51-.02.76-.06l.17-.03c.25-.04.49-.1.73-.17h.01c.24-.08.47-.17.69-.28.04-.02.07-.03.11-.05.23-.11.44-.24.65-.38l.18.18 3.5 3.5c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71l-3.68-3.67zm-4.53.88c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z'];\nexport var PathSearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"path-search\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm6 0h-2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M7 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1zm9 0h-3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var PauseIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pause\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.69 13.98c-.05-.24-.14-.5-.25-.76-.36-.86-1.12-1.33-2.69-2-.14-.06-.59-.25-.6-.25-.21-.09-.36-.15-.5-.22.02-.1.02-.2.03-.31 0-.04.01-.08.01-.13-.07-.06-.13-.12-.19-.19.22-.32.4-.67.54-1.05.02-.06.02-.06.03-.1.29-.23.48-.57.59-.96.16-.33.25-.73.21-1.16-.03-.4-.16-.76-.37-1.03-.02-.53-.07-1.13-.15-1.54-.01-.06-.02-.12-.03-.19.23-.06.48-.09.72-.09.49 0 1.05.16 1.44.46.38.29.67.7.8 1.17.03.1.05.21.07.31.07.37.11.94.11 1.33v.05c.14.06.27.21.29.51.02.25-.07.45-.13.54-.05.21-.16.44-.38.48-.02.1-.05.2-.09.3 0 .01-.01.03-.01.03-.17.44-.43.83-.75 1.11v.14c.03.35-.09.59.83 1 .93.41 2.32.84 2.6 1.5.29.66.17 1.04.17 1.04h-2.3zm-1.17-.38c.37.86.22 1.36.22 1.36H.06s-.14-.5.22-1.36 2.13-1.43 3.31-1.96c1.17-.54 1.05-.86 1.09-1.3 0-.05.01-.11.01-.17-.41-.35-.75-.86-.97-1.45v-.01s-.01-.01-.01-.02c-.04-.12-.09-.26-.12-.39-.28-.05-.44-.36-.5-.64-.06-.12-.19-.39-.16-.71.04-.41.21-.6.39-.68v-.06c0-.51.05-1.26.14-1.74.02-.13.05-.27.09-.4.17-.6.54-1.13 1.02-1.51.5-.39 1.21-.6 1.84-.6s1.34.21 1.84.6c.48.38.85.91 1.02 1.52.04.13.07.27.09.4.09.48.14 1.22.14 1.73v.07c.18.08.34.27.37.67.03.32-.09.59-.16.71-.06.28-.21.58-.48.63-.03.13-.07.26-.12.39 0 .01-.01.04-.01.04-.22.58-.55 1.08-.95 1.45v.18c.04.45-.12.77 1.06 1.3 1.18.53 2.95 1.09 3.31 1.95z'];\nvar svgPaths20 = ['M16.94 17a4.92 4.92 0 00-.33-1.06c-.45-.97-1.37-1.52-3.24-2.3-.17-.07-.76-.31-.77-.32-.1-.04-.2-.08-.28-.12.05-.14.04-.29.06-.45 0-.05.01-.11.01-.16-.25-.21-.47-.48-.65-.79.22-.34.41-.71.56-1.12l.04-.11c-.01.02-.01.02-.02.08l.06-.15c.36-.26.6-.67.72-1.13.18-.37.29-.82.25-1.3-.05-.5-.21-.92-.47-1.22-.02-.53-.06-1.11-.12-1.59.38-.17.83-.26 1.24-.26.59 0 1.26.19 1.73.55.46.35.8.85.97 1.4.04.13.07.25.08.38.08.45.13 1.14.13 1.61v.07c.16.07.31.24.35.62.02.29-.09.55-.15.65-.05.26-.2.53-.46.59-.03.12-.07.25-.11.36-.01.01-.01.04-.01.04-.2.53-.51 1-.89 1.34 0 .06 0 .12.01.17.04.41-.11.71 1 1.19 1.1.5 2.77 1.01 3.13 1.79.34.79.2 1.25.2 1.25h-3.04zm-5.42-3.06c1.47.66 3.7 1.35 4.18 2.39.45 1.05.27 1.67.27 1.67H.04s-.19-.62.27-1.67c.46-1.05 2.68-1.75 4.16-2.4 1.48-.65 1.33-1.05 1.38-1.59 0-.07.01-.14.01-.21-.52-.45-.95-1.08-1.22-1.8l-.01-.01c0-.01-.01-.02-.01-.03-.07-.15-.12-.32-.16-.49-.34-.06-.54-.43-.62-.78-.08-.14-.24-.48-.2-.87.05-.51.26-.74.49-.83v-.08c0-.64.05-1.55.17-2.15a3.648 3.648 0 011.4-2.36C6.32 2.25 7.21 2 8 2s1.68.25 2.31.73a3.63 3.63 0 011.4 2.36c.11.6.17 1.52.17 2.15v.09c.22.09.42.32.47.82.03.39-.12.73-.2.87-.07.34-.27.71-.61.78-.04.16-.09.33-.15.48-.01.01-.02.05-.02.05-.27.71-.68 1.33-1.19 1.78 0 .08 0 .16.01.23.05.55-.15.95 1.33 1.6z'];\nexport var PeopleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"people\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 6V4c0-1.1-.9-2-2-2H3c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2zM3.5 6c-.28 0-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1c0 .28-.22.5-.5.5zM13 8h-1c-1.1 0-2 .9-2 2v2c0 1.1.9 2 2 2h1c1.1 0 2-.9 2-2v-2c0-1.1-.9-2-2-2zm0 3.5c0 .28-.22.5-.5.5s-.5-.22-.5-.5v-1c0-.28.22-.5.5-.5s.5.22.5.5v1zM12 3a1.003 1.003 0 00-1.87-.5l-5.99 9.98c-.09.15-.14.33-.14.52a1.003 1.003 0 001.87.5l5.99-9.98c.09-.15.14-.33.14-.52z'];\nvar svgPaths20 = ['M15 10c-1.66 0-3 1.34-3 3v2c0 1.66 1.34 3 3 3s3-1.34 3-3v-2c0-1.66-1.34-3-3-3zm1 5c0 .55-.45 1-1 1s-1-.45-1-1v-2c0-.55.45-1 1-1s1 .45 1 1v2zM8 7V5c0-1.66-1.34-3-3-3S2 3.34 2 5v2c0 1.66 1.34 3 3 3s3-1.34 3-3zM4 7V5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1zm11-4a1.003 1.003 0 00-1.88-.48L5.14 16.49a1.003 1.003 0 101.74.99l7.99-13.97c.08-.15.13-.32.13-.51z'];\nexport var PercentageIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"percentage\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.68 14.32c-.46-1.05-2.68-1.75-4.16-2.4-1.48-.65-1.28-1.05-1.33-1.59-.01-.07-.01-.15-.01-.23.51-.45.92-1.07 1.19-1.78 0 0 .01-.04.02-.05.06-.15.11-.32.15-.48.34-.07.54-.44.61-.78.08-.14.23-.48.2-.87-.05-.5-.25-.73-.47-.82v-.09c0-.63-.06-1.55-.17-2.15A3.671 3.671 0 0010.32.72C9.68.25 8.79-.01 8-.01c-.79 0-1.68.25-2.31.73-.61.47-1.06 1.13-1.28 1.86-.05.17-.09.33-.11.5-.12.6-.17 1.51-.17 2.15v.08c-.24.09-.45.32-.5.83-.03.38.13.72.2.86.08.35.28.72.63.78.04.17.09.33.15.49 0 .01.01.02.01.03l.01.01c.27.72.7 1.35 1.22 1.8 0 .07-.01.14-.01.21-.05.54.1.94-1.37 1.59-1.48.65-3.7 1.35-4.16 2.4-.46 1.05-.27 1.67-.27 1.67h15.92c-.01.01.18-.61-.28-1.66z'];\nvar svgPaths20 = ['M19.61 17.91c-.57-1.32-3.35-2.19-5.19-3.01-1.85-.82-1.59-1.31-1.66-1.99-.01-.09-.01-.19-.02-.29.63-.56 1.15-1.33 1.49-2.22 0 0 .02-.05.02-.06.07-.19.13-.39.19-.6.42-.09.67-.55.76-.98.1-.17.29-.6.25-1.08-.06-.62-.31-.91-.59-1.03v-.11c0-.79-.07-1.93-.22-2.68A4.55 4.55 0 0012.9.92C12.11.32 11 0 10.01 0s-2.1.32-2.89.92a4.55 4.55 0 00-1.74 2.94c-.14.75-.22 1.89-.22 2.68v.1c-.29.11-.55.4-.61 1.04-.04.48.15.91.25 1.08.1.44.35.91.79.98.05.21.12.41.19.6 0 .01.01.03.01.04l.01.02c.34.91.87 1.69 1.52 2.25 0 .09-.01.18-.02.26-.07.68.13 1.17-1.72 1.99S.96 16.59.39 17.91C-.18 19.23.05 20 .05 20h19.9s.23-.77-.34-2.09z'];\nexport var PersonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"person\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.9 12.41c-.06-.06-3.37-2-3.48-2.05a.794.794 0 00-.32-.08c-.15 0-.34.11-.57.32-.23.22-.94 1.19-1.15 1.4-.21.22-.38.32-.52.32-.07 0-.15-.02-.25-.06-.1-.04-1.16-.58-3.36-2.52-2.2-1.93-2.49-3.2-2.5-3.55 0-.14.11-.31.32-.52.22-.21.45-.41.7-.6.25-.19.49-.4.7-.62.22-.23.32-.42.32-.57 0-.11-.03-.21-.08-.32C5.66 3.46 3.66.15 3.59.08 3.44-.07 2.85 0 2.55.16.16 1.46-.03 3.2 0 3.89c.04.71.49 4.46 4.16 7.95C8.72 16.17 11.89 16 12.1 16c.69 0 2.82-.38 3.72-2.55.13-.32.25-.87.08-1.04z'];\nvar svgPaths20 = ['M19.91 15.51c-.08-.08-4.21-2.5-4.35-2.57a.876.876 0 00-.4-.1c-.19 0-.42.13-.71.4-.28.27-1.17 1.49-1.43 1.76s-.48.4-.65.4c-.08 0-.19-.02-.32-.07s-1.45-.73-4.2-3.15-3.11-4-3.13-4.44c0-.17.13-.39.4-.65.28-.25.57-.51.89-.74.32-.24.61-.5.88-.78s.4-.52.4-.71c0-.13-.03-.27-.1-.4C7.12 4.32 4.62.19 4.53.1c-.19-.18-.92-.1-1.29.1C.25 1.82 0 4 .05 4.86c.05.89.61 5.58 5.2 9.93 5.7 5.41 9.66 5.2 9.92 5.2.87 0 3.52-.48 4.65-3.19.16-.38.31-1.07.09-1.29z'];\nexport var PhoneIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"phone\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7 1.08c-3.37.5-5.97 3.4-5.97 6.92 0 3.87 3.13 7 6.98 7 3.52 0 6.42-2.61 6.91-6H7V1.08z', 'M8 0v8h8c0-4.42-3.58-8-8-8z'];\nvar svgPaths20 = ['M9 .98c-4.5.5-8 4.31-8 8.94 0 4.97 4.03 9.04 9 9.04 4.63 0 8.44-3.96 8.94-7.96H9V.98z', 'M10-.08V10h10C20 4 15.52-.08 10-.08z'];\nexport var PieChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pie-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.41.92c-.51.51-.41 1.5.15 2.56L4.34 7.54C2.8 6.48 1.45 6.05.92 6.58l3.54 3.54-3.54 4.95 4.95-3.54 3.54 3.54c.53-.53.1-1.88-.96-3.42l4.06-5.22c1.06.56 2.04.66 2.55.15L9.41.92z'];\nvar svgPaths20 = ['M11.77 1.16c-.81.81-.74 2.28.02 3.76L6.1 8.71c-2.17-1.46-4.12-2-4.94-1.18l4.95 4.95-4.95 6.36 6.36-4.95 4.95 4.95c.82-.82.27-2.77-1.19-4.94l3.8-5.69c1.47.76 2.94.84 3.76.02l-7.07-7.07z'];\nexport var PinIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pin\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4.57 7.02L.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.27-4.27c-.58-.35-1.07-.84-1.41-1.42zM15 8c-.55 0-1 .45-1 1v.59l-2.57-2.57c-.34.58-.83 1.07-1.41 1.41L12.59 11H12c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-4-3c0-1.66-1.34-3-3-3S5 3.34 5 5s1.34 3 3 3 3-1.34 3-3zM8 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M5.83 9.75L.29 15.29a1.003 1.003 0 001.42 1.42l5.54-5.54c-.57-.37-1.05-.85-1.42-1.42zM19 11c-.55 0-1 .45-1 1v1.59l-3.83-3.83c-.37.56-.85 1.04-1.41 1.41L16.59 15H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1zm-5-4c0-2.21-1.79-4-4-4S6 4.79 6 7s1.79 4 4 4 4-1.79 4-4zm-4 2c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z'];\nexport var PivotIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pivot\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 4H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm0-4H1C.45 0 0 .45 0 1v1c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm11.71 4.29C13.53 4.11 13.28 4 13 4s-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V9c0 1.66-1.34 3-3 3H7.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H9c2.76 0 5-2.24 5-5V7.41l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2zM15 0H5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3 5H1c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm0-5H1C.45 0 0 .45 0 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm13.71 5.29C16.53 5.11 16.28 5 16 5s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L15 8.41V11c0 2.21-1.79 4-4 4H8.41l1.29-1.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L8.41 17H11c3.31 0 6-2.69 6-6V8.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zM19 0H6c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var PivotTableIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pivot-table\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 8c0-.35-.19-.64-.46-.82l.01-.02-6-4-.01.02A.969.969 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 6-4-.01-.02c.27-.18.46-.47.46-.82z'];\nvar svgPaths20 = ['M16 10c0-.36-.2-.67-.49-.84l.01-.01-10-6-.01.01A.991.991 0 005 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .19 0 .36-.07.51-.16l.01.01 10-6-.01-.01c.29-.17.49-.48.49-.84z'];\nexport var PlayIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"play\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 7H9V3c0-.55-.45-1-1-1s-1 .45-1 1v4H3c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V9h4c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M16 9h-5V4c0-.55-.45-1-1-1s-1 .45-1 1v5H4c-.55 0-1 .45-1 1s.45 1 1 1h5v5c0 .55.45 1 1 1s1-.45 1-1v-5h5c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var PlusIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"plus\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 5c-.24 0-.47.05-.68.13L9.97 2.34c.01-.11.03-.22.03-.34 0-1.1-.9-2-2-2S6 .9 6 2c0 .04.01.08.01.12L2.88 4.21C2.61 4.08 2.32 4 2 4 .9 4 0 4.9 0 6c0 .74.4 1.38 1 1.72v4.55c-.6.35-1 .99-1 1.73 0 1.1.9 2 2 2 .74 0 1.38-.4 1.72-1h4.55c.35.6.98 1 1.72 1 1.1 0 2-.9 2-2 0-.37-.11-.7-.28-1L14 9c1.11-.01 2-.9 2-2s-.9-2-2-2zm-4.01 7c-.73 0-1.37.41-1.71 1H3.73c-.18-.3-.43-.55-.73-.72V7.72c.6-.34 1-.98 1-1.72 0-.04-.01-.08-.01-.12l3.13-2.09c.27.13.56.21.88.21.24 0 .47-.05.68-.13l3.35 2.79c-.01.11-.03.22-.03.34 0 .37.11.7.28 1l-2.29 4z'];\nvar svgPaths20 = ['M18 7c-.27 0-.52.05-.75.15l-6.28-4.88c.01-.09.03-.18.03-.27 0-1.1-.9-2-2-2S7 .9 7 2c0 .06.01.12.02.19l-4.19 3C2.57 5.07 2.29 5 2 5 .9 5 0 5.9 0 7c0 .74.4 1.38 1 1.72v7.55c-.6.35-1 .99-1 1.73 0 1.1.9 2 2 2 .74 0 1.38-.4 1.72-1h7.55c.35.6.98 1 1.72 1 1.1 0 2-.9 2-2 0-.37-.11-.72-.29-1.02L18.03 11A2 2 0 0018 7zm-5.03 9c-.72.01-1.35.41-1.69 1H3.72c-.17-.3-.42-.55-.72-.72V8.72c.6-.34 1-.98 1-1.72 0-.06-.01-.12-.02-.19l4.19-3c.26.12.54.19.83.19.27 0 .52-.05.75-.15l6.28 4.88c-.01.09-.03.18-.03.27 0 .37.11.72.29 1.02L12.97 16z'];\nexport var PolygonFilterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"polygon-filter\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 8c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S7 .45 7 1v6c0 .55.45 1 1 1zm3-5.32v2.34c1.21.91 2 2.35 2 3.98 0 2.76-2.24 5-5 5s-5-2.24-5-5c0-1.63.79-3.06 2-3.98V2.68C2.64 3.81 1 6.21 1 9c0 3.87 3.13 7 7 7s7-3.13 7-7c0-2.79-1.64-5.19-4-6.32z'];\nvar svgPaths20 = ['M10 10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1S9 .45 9 1v8c0 .55.45 1 1 1zm3-7.45v2.16c2.36 1.12 4 3.5 4 6.29 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-2.79 1.64-5.17 4-6.29V2.55C3.51 3.79 1 7.09 1 11a9 9 0 0018 0c0-3.91-2.51-7.21-6-8.45z'];\nexport var PowerIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"power\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 6.41c0-1.01-.49-1.94-1.29-2.49-.43-1.92-2.07-3.28-4-3.28-.46 0-.92.08-1.35.24C8.83.31 8.11 0 7.34 0c-.9 0-1.74.44-2.28 1.16-.12-.01-.24-.02-.36-.02-1.31 0-2.42.89-2.77 2.17C.78 3.72 0 4.84 0 6.13c0 .38.07.76.21 1.12C.07 7.6 0 7.98 0 8.36c0 1.11.58 2.11 1.51 2.63.54.56 1.27.87 2.03.87.49 0 .95-.12 1.37-.36a2.85 2.85 0 002.18 1.04c.52 0 1.03-.14 1.47-.42.49.39 1.07.65 1.69.73 1.04 1.15 1.84 2.63 1.84 2.64 0 0 .28.49.26.49.77 0 1.41-.16 1.32-1.04 0 .02-.73-2.31-.73-2.31.41-.21.75-.55.97-.98.9-.52 1.47-1.53 1.47-2.61 0-.24-.03-.48-.08-.71.45-.52.7-1.21.7-1.92zm-1.23 1.02l-.15-.16-.61-.67c-.27-.29-.54-.94-.58-1.39l-.1-1.01c-.05-.59-.94-.58-.91.11 0 .02.1 1.01.1 1.01.03.29.12.62.24.93-.06-.01-.12-.02-.18-.02 0 0-2.06-.1-2.05-.11-.58-.02-.71.97-.04 1l2.05.11c.42.02 1.04.3 1.29.58l.49.54.02.05c.08.21.12.44.12.66 0 .74-.41 1.41-1.07 1.75l-.16.08-.07.18c-.15.38-.48.66-.88.74l-.54.11.7 2.2c-.38-.61-.95-1.43-1.62-2.14l-.12-.13-.17-.01c-.41-.03-.8-.17-1.14-.38l1.36-1.18c.35-.31.83-.44.99-.39 0 0 .63.17.62.18.63.16.83-.74.23-.97l-.62-.18c-.55-.16-1.33.18-1.79.58l-1.53 1.33-.31.26c-.35.29-.75.44-1.2.44-.64 0-1.23-.33-1.58-.86V9.15c0-.4.17-.79.27-.85 0 0 .52-.34.51-.35.71-.53.18-1.23-.49-.89 0-.01-.52.35-.52.35-.26.15-.45.44-.58.77-.11-.11-.22-.2-.34-.28 0 0-1.53-1.01-1.53-1.02-.65-.45-1.2.51-.49.89 0-.01 1.51 1.02 1.51 1.02.37.24.62.78.62 1.09v.67c-.34.19-.63.29-.99.29-.54 0-1.05-.23-1.41-.63l-.05-.06-.07-.04c-.65-.34-1.05-1-1.05-1.73 0-.3.07-.6.2-.87l.12-.25L1.15 7c-.13-.27-.2-.56-.2-.87 0-.9.61-1.68 1.48-1.89l.31-.08.05-.34a1.926 1.926 0 012.38-1.58l.32.08.18-.31c.35-.6.99-.97 1.67-.97.44 0 .86.15 1.2.42l-.36.36v-.01l-.25.26c-.33.27-.74.42-.89.4 0 0-.67-.1-.67-.11-.67-.13-.87.86-.14 1.02.01 0 .67.11.67.11.02 0 .05 0 .07.01-.11.37-.15.77-.1 1.12 0 0 .17.99.15.99.11.52 1.06.36.93-.18 0-.01-.15-.99-.15-.99-.05-.37.12-.94.36-1.19l.39-.4c.05-.05.1-.09.15-.14l.74-.76c.4-.18.83-.27 1.27-.27 1.55 0 2.86 1.12 3.11 2.67l.04.25.21.12c.61.35.98 1 .98 1.7 0 .36-.1.7-.28 1.01z'];\nvar svgPaths20 = ['M20 8.01c0-1.26-.61-2.43-1.61-3.12C17.86 2.5 15.8.79 13.4.79c-.58 0-1.14.1-1.69.29A3.533 3.533 0 009.17 0C8.05 0 7 .55 6.32 1.45c-.15-.02-.3-.03-.45-.03-1.63 0-3.03 1.12-3.46 2.71C.97 4.65 0 6.05 0 7.66c0 .48.09.95.26 1.4-.17.44-.26.91-.26 1.39 0 1.38.72 2.64 1.89 3.29.67.7 1.59 1.09 2.54 1.09.61 0 1.19-.15 1.71-.45.68.82 1.68 1.3 2.73 1.3.66 0 1.28-.18 1.83-.52.61.49 1.34.81 2.11.91 1.3 1.43 2.3 3.28 2.31 3.3 0 0 .35.61.33.61.96-.01 1.77-.2 1.64-1.3.01.02-.92-2.89-.92-2.89.52-.26.94-.69 1.21-1.23 1.12-.66 1.84-1.91 1.84-3.26 0-.3-.03-.6-.1-.89.57-.64.88-1.51.88-2.4zm-1.54 1.28l-.18-.2-.77-.84c-.33-.37-.67-1.17-.73-1.73 0 0-.13-1.25-.13-1.26-.06-.74-1.17-.73-1.13.14 0 .02.13 1.26.13 1.26.04.36.15.77.3 1.17-.08-.01-.15-.02-.22-.02 0 0-2.57-.12-2.57-.13-.73-.03-.89 1.22-.05 1.25l2.57.13c.53.03 1.29.37 1.61.72l.61.67.02.06c.1.27.14.55.14.83 0 .93-.51 1.77-1.34 2.18l-.2.1-.09.23c-.19.48-.6.82-1.1.93l-.67.14.87 2.75c-.48-.76-1.19-1.79-2.02-2.67l-.15-.16-.21-.02c-.51-.04-.99-.21-1.42-.48l1.7-1.48c.44-.39 1.04-.55 1.24-.49 0 0 .78.22.78.23.78.2 1.03-.92.29-1.21l-.78-.23c-.69-.2-1.67.22-2.24.72l-1.91 1.66-.39.32c-.44.36-.93.55-1.5.55-.8 0-1.54-.41-1.97-1.07v-1.88c0-.5.21-.98.34-1.07 0 0 .65-.43.64-.43.87-.69.21-1.57-.64-1.14 0-.01-.65.43-.65.43-.31.2-.54.56-.7.97-.13-.13-.28-.25-.43-.35 0 0-1.91-1.26-1.91-1.28-.81-.56-1.5.63-.61 1.11 0-.02 1.89 1.28 1.89 1.28.46.31.77.97.77 1.36v.84c-.43.24-.78.36-1.24.36-.67 0-1.31-.29-1.77-.79l-.07-.08-.09-.05a2.425 2.425 0 01-1.31-2.16c0-.38.09-.74.25-1.08l.15-.31-.14-.33c-.17-.34-.25-.7-.25-1.08 0-1.13.76-2.1 1.85-2.37l.39-.09.07-.43a2.41 2.41 0 012.39-2.05c.19 0 .39.02.58.07l.4.1.22-.38A2.41 2.41 0 019.17 1.3c.55 0 1.08.19 1.5.53l-.44.45-.01-.01-.31.31c-.41.35-.92.53-1.11.5 0 0-.84-.13-.84-.14-.83-.15-1.09 1.08-.18 1.29.01 0 .84.14.84.14.03 0 .06 0 .09.01-.14.46-.18.96-.12 1.4 0 0 .21 1.24.19 1.23.13.65 1.32.44 1.16-.22 0-.01-.19-1.23-.19-1.23-.07-.48.15-1.19.45-1.5l.48-.5c.07-.06.13-.12.19-.18l.93-.95c.5-.23 1.04-.34 1.59-.34 1.93 0 3.57 1.4 3.89 3.34l.05.31.26.15a2.445 2.445 0 01.87 3.4z'];\nexport var PredictiveAnalysisIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"predictive-analysis\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.91 8.34c.14-.21.36-.34.63-.34h1.29c.22 0 .41.07.52.26.09.16.08.33-.04.53l-2.49 2.87 2.77 3.54c.12.17.14.37.02.55-.11.17-.3.25-.5.25h-1.44a.69.69 0 01-.61-.35L9.4 13.51l-1.69 2.15c-.13.21-.36.34-.63.34H5.8c-.22 0-.41-.07-.52-.26-.09-.16-.08-.33.04-.53l2.71-3.48L4.3 6.99H3.03v3.47c0 .33-.26.56-.62.56h-.8c-.35-.01-.61-.23-.61-.56V.56c0-.33.26-.56.62-.56h3.11c.62 0 1.19.08 1.7.24.51.16.96.39 1.34.69a3.194 3.194 0 011.21 2.53c0 .81-.25 1.5-.74 2.08-.37.44-.84.77-1.42 1.01L7.88 7.9c.04.04.07.08.08.1l1.49 1.9 1.46-1.56zM5.18 5c.62 0 1.08-.13 1.39-.37.29-.23.44-.71.44-1.16s-.15-.87-.44-1.1C6.26 2.12 5.8 2 5.18 2H2.99v3h2.19z'];\nvar svgPaths20 = ['M13.95 10.23c.16-.18.22-.22.46-.22h1.48c.25 0 .47.08.59.33.1.2.09.41-.05.66l-2.71 3.58L16.88 19c.13.21.16.46.03.69-.12.21-.34.31-.57.31H14.7c-.31 0-.56-.17-.7-.44l-1.9-2.67-1.93 2.68c-.15.27-.42.43-.73.43H7.98c-.25 0-.47-.08-.59-.33-.1-.2-.09-.41.05-.66l3.09-4.35L6.26 9H5v4.32c0 .41-.3.69-.7.69H2.7c-.41 0-.7-.28-.7-.69V.69c0-.41.3-.69.7-.69h4.42c.71 0 1.36.1 1.94.3.59.2 1.11.49 1.54.87.44.38.78.84 1.02 1.39.24.54.36 1.14.36 1.78 0 1.01-.28 1.88-.84 2.6-.43.54-1.35 1.29-2 1.59l3.09 3.94 1.72-2.24zM6.71 6.04c.71 0 1.45-.16 1.81-.46.33-.28.5-.69.5-1.25s-.17-.97-.5-1.25c-.35-.3-1.1-.46-1.81-.46h-1.7v3.42h1.7z'];\nexport var PrescriptionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"prescription\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H9c0-.55-.45-1-1-1S7 .45 7 1H1c-.55 0-1 .45-1 1s.45 1 1 1v8c0 .55.45 1 1 1h3.59L3.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 13.41V15c0 .55.45 1 1 1s1-.45 1-1v-1.59l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L10.41 12H14c.55 0 1-.45 1-1V3c.55 0 1-.45 1-1s-.45-1-1-1zm-2 9H3V3h10v7z'];\nvar svgPaths20 = ['M19 1h-8c0-.55-.45-1-1-1S9 .45 9 1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v11c0 .55.45 1 1 1h4.59L4.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L9 16.41V19c0 .55.45 1 1 1s1-.45 1-1v-2.59l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L12.41 15H17c.55 0 1-.45 1-1V3h1c.55 0 1-.45 1-1s-.45-1-1-1zm-3 12H4V3h12v10z'];\nexport var PresentationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"presentation\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 2.02c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h8v-1zm3 2H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h1v-3h12v3h1c.55 0 1-.45 1-1v-6c0-.56-.45-1-1-1zm-1 3h-2v-1h2v1zm-3 6H5v-3H3v4c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-4h-2v3z'];\nvar svgPaths20 = ['M14 16H6v-4H4v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v4zm2-13c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V3zm3 2H1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h2v-3h14v3h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 4h-2V7h2v2z'];\nexport var PrintIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"print\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 3c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1h12V3zm-2-3H4c-.55 0-1 .45-1 1h10c0-.55-.45-1-1-1zm3 5H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-3 6c0 .55-.45 1-1 1H5c-.55 0-1-.45-1-1V9h1v2h6V9h1v2z'];\nvar svgPaths20 = ['M18 4c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h16V4zm-2-3c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v1h12V1zm3 6H1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-5 7c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-2h1v2h6v-2h1v2z'];\nexport var ProjectsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"projects\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 6C.9 6 0 6.9 0 8s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-3h9c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1zm-4 9c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm13-5H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zm0 6H6c-.55 0-1 .45-1 1s.45 1 1 1h9c.55 0 1-.45 1-1s-.45-1-1-1zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M2 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-7c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm5-4h12c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM2 1C.9 1 0 1.9 0 3s.9 2 2 2 2-.9 2-2-.9-2-2-2zm17 8H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1zm0 7H7c-.55 0-1 .45-1 1s.45 1 1 1h12c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var PropertiesIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"properties\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.5-6.5a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM7 3h8c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zm8 10H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zM3 0C1.9 0 1 .9 1 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 6H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3 5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5-1h11c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zM3 15c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm16 1H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm-1-8H9c-1.1 0-2 .9-2 2s.9 2 2 2h9c1.1 0 2-.9 2-2s-.9-2-2-2zM3 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'];\nexport var PropertyIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"property\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.16 3.76c.15-.11.3-.16.47-.16.06 0 .17.02.34.06.16.04.31.06.43.06a.58.58 0 00.6-.6c0-.19-.06-.33-.17-.44-.11-.11-.28-.16-.49-.16-.19 0-.37.04-.54.13-.17.09-.39.27-.65.55-.2.21-.48.58-.87 1.11a5.22 5.22 0 00-.78-1.79l-2.05.32-.04.21c.15-.03.28-.04.39-.04.2 0 .37.08.5.25.21.26.5 1.03.88 2.33-.29.36-.49.6-.6.71-.18.19-.33.31-.45.36-.09.04-.19.07-.3.07-.09 0-.23-.04-.42-.13a.904.904 0 00-.36-.09c-.2 0-.36.06-.49.18a.59.59 0 00-.19.46c0 .18.06.32.18.43.12.11.28.16.48.16.2 0 .38-.04.55-.12.17-.08.39-.24.65-.49s.62-.65 1.07-1.19c.18.52.33.89.46 1.13.13.24.28.4.44.51.17.1.37.16.62.16.24 0 .49-.08.74-.25.33-.21.66-.58 1.01-1.09l-.21-.11c-.23.31-.41.5-.52.57a.44.44 0 01-.26.07c-.12 0-.24-.07-.36-.21-.2-.24-.46-.91-.8-2 .29-.49.54-.81.74-.96zM6.37 5.83l.68-2.53h.83l.2-.64h-.84c.24-.91.56-1.59.96-2.01.24-.27.48-.4.71-.4.05 0 .08.01.11.04s.04.06.04.1c0 .04-.03.11-.1.21-.06.1-.1.2-.1.29 0 .13.05.24.15.33.1.09.23.14.39.14.17 0 .31-.06.42-.17.12-.12.18-.27.18-.46 0-.21-.08-.39-.25-.52C9.57.07 9.3 0 8.93 0c-.59 0-1.12.16-1.59.48-.48.32-.93.85-1.36 1.59-.15.26-.29.42-.42.49s-.35.11-.64.1l-.19.65h.81L4.35 7.68c-.2.72-.33 1.16-.4 1.33-.1.24-.26.45-.46.62a.48.48 0 01-.31.1c-.03 0-.06-.01-.08-.03l-.03-.03c0-.02.03-.06.09-.11.06-.06.09-.15.09-.26 0-.13-.05-.23-.14-.32-.1-.09-.23-.13-.41-.13-.21 0-.38.05-.51.16A.52.52 0 002 9.4c0 .16.08.3.23.42.16.12.4.18.74.18.53 0 .99-.13 1.4-.39.41-.26.76-.65 1.07-1.19.3-.53.61-1.39.93-2.59zm2.34 3.46A.997.997 0 008 9c-.28 0-.53.11-.71.29l-2 2a1.003 1.003 0 001.42 1.42l.29-.3V15c0 .55.45 1 1 1s1-.45 1-1v-2.59l.29.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2z'];\nvar svgPaths20 = ['M7.01 10.11c.35-.64.72-1.68 1.09-3.11l.8-3.03h.96l.24-.77h-.99c.28-1.11.66-1.92 1.12-2.43.28-.32.56-.48.83-.48.05 0 .1.02.13.05.03.03.05.07.05.12 0 .04-.04.13-.11.25-.08.12-.11.24-.11.35 0 .15.06.28.18.39.12.11.27.16.45.16.2 0 .36-.07.49-.2s.2-.31.2-.54c0-.26-.1-.47-.3-.63-.2-.16-.52-.24-.96-.24-.68 0-1.3.19-1.86.58-.55.38-1.08 1.02-1.58 1.91-.17.3-.34.5-.49.59-.15.08-.4.13-.74.12l-.23.77h.95L5.74 9.21c-.23.86-.39 1.39-.47 1.59-.12.29-.3.54-.54.75-.1.08-.21.12-.35.12-.04 0-.07-.01-.1-.03l-.03-.04c0-.02.03-.07.1-.13.07-.07.1-.17.1-.31 0-.15-.05-.28-.16-.38-.11-.1-.27-.15-.47-.15-.25 0-.44.07-.59.2-.15.12-.23.28-.23.46 0 .19.09.36.27.5.19.14.47.21.86.21.61 0 1.16-.15 1.63-.46.48-.31.89-.79 1.25-1.43zm3.7 1.18c-.18-.18-.43-.29-.71-.29s-.53.11-.71.29l-3 3a1.003 1.003 0 001.42 1.42L9 14.41V19c0 .55.45 1 1 1s1-.45 1-1v-4.59l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-3-3zm4.15-6.78c.17-.13.36-.2.55-.2.07 0 .2.03.39.08s.36.08.5.08c.2 0 .37-.07.5-.2.13-.14.2-.31.2-.52 0-.22-.07-.4-.2-.53s-.33-.2-.58-.2c-.22 0-.43.05-.63.15-.2.1-.45.32-.75.67-.23.25-.56.7-1.01 1.33a6.52 6.52 0 00-.91-2.15l-2.38.39-.05.25c.18-.03.33-.05.45-.05.24 0 .43.1.59.3.25.31.59 1.24 1.02 2.79-.34.44-.58.73-.7.87-.21.22-.38.36-.52.43-.1.05-.22.08-.35.08-.1 0-.26-.05-.49-.16a1.01 1.01 0 00-.42-.11c-.23 0-.42.07-.57.22-.17.14-.24.32-.24.55 0 .21.07.38.21.51.14.13.33.2.56.2.23 0 .44-.05.64-.14.2-.09.45-.29.75-.59s.72-.78 1.25-1.43c.2.62.38 1.07.53 1.35.15.28.32.49.52.61.19.12.44.19.73.19.28 0 .57-.1.86-.3.38-.25.77-.69 1.17-1.31l-.25-.14c-.27.37-.48.6-.61.69-.09.06-.19.09-.31.09-.14 0-.28-.09-.42-.26-.23-.29-.54-1.09-.93-2.4.37-.58.66-.96.9-1.14z'];\nexport var PublishFunctionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"publish-function\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 8h-1.46l-1.7-2.55-.02.01A.984.984 0 0011 5c-.43 0-.79.27-.93.65h-.01l-1.69 4.51-1.38-8.32h-.02A.989.989 0 006 1c-.41 0-.77.25-.92.61L2.34 8H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.41 0 .77-.25.92-.61l1.65-3.86 1.44 8.63h.02c.08.47.47.84.97.84.43 0 .79-.27.93-.65h.01l2.31-6.17.92 1.38.02-.01c.17.26.46.45.81.45h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 10h-2.38L14.9 6.55h-.01c-.17-.32-.5-.55-.89-.55-.43 0-.79.28-.93.66h-.01l-2.75 7.57L7.98 1.82h-.02A.978.978 0 007 1c-.44 0-.8.29-.94.69h-.01L3.28 10H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.44 0 .8-.29.94-.69h.01l1.78-5.34 2.29 12.21h.02c.08.46.47.82.96.82.43 0 .79-.28.93-.66h.01l3.21-8.82.96 1.92h.01c.16.33.49.56.88.56h3c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var PulseIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"pulse\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.48 4h1.11l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H11c-.32 0-.59.16-.77.38l-.01-.01L8.28 4.8l1.28 1.6L11.48 4zm2.23 6.29a1.003 1.003 0 00-1.42 1.42l.3.29h-1.11l-7.7-9.62h-.01A.996.996 0 003 2H1c-.55 0-1 .45-1 1s.45 1 1 1h1.52l7.7 9.62.01-.01c.18.23.45.39.77.39h1.59l-.29.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2zM2.52 12H1c-.55 0-1 .45-1 1s.45 1 1 1h2c.32 0 .59-.16.77-.38l.01.01 1.94-2.42L4.44 9.6 2.52 12z'];\nvar svgPaths20 = ['M14.47 5h2.12L15.3 6.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 3H14c-.31 0-.57.15-.76.37l-.01-.01-2.93 3.52 1.3 1.56L14.47 5zm2.24 7.29a1.003 1.003 0 00-1.42 1.42l1.3 1.29h-2.12L4.77 3.36l-.01.01A.998.998 0 004 3H1c-.55 0-1 .45-1 1s.45 1 1 1h2.53l9.7 11.64.01-.01c.19.22.45.37.76.37h2.59l-1.29 1.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3zM3.53 15H1c-.55 0-1 .45-1 1s.45 1 1 1h3c.31 0 .57-.15.76-.37l.01.01 2.93-3.52-1.3-1.56L3.53 15z'];\nexport var RandomIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"random\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 3a5 5 0 100 10A5 5 0 108 3z'];\nvar svgPaths20 = ['M10 3a7 7 0 100 14 7 7 0 100-14z'];\nexport var RecordIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"record\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3.71-6.71l-3-3a1.003 1.003 0 00-1.42 1.42L12.59 4H5C2.24 4 0 6.24 0 9s2.24 5 5 5h4v-2H5c-1.66 0-3-1.34-3-3s1.34-3 3-3h7.59L11.3 7.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71z'];\nvar svgPaths20 = ['M19.71 5.29l-4-4a1.003 1.003 0 00-1.42 1.42L16.59 5H6c-3.31 0-6 2.69-6 6s2.69 6 6 6h5v-2H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h10.59L14.3 9.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM15 14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z'];\nexport var RedoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"redo\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.99 6.99c-.55 0-1 .45-1 1 0 3.31-2.69 6-6 6-1.77 0-3.36-.78-4.46-2h1.46c.55 0 1-.45 1-1s-.45-1-1-1h-4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-1.74a7.95 7.95 0 006 2.74c4.42 0 8-3.58 8-8 0-.55-.45-1-1-1zm0-7c-.55 0-1 .45-1 1v1.74a7.95 7.95 0 00-6-2.74c-4.42 0-8 3.58-8 8 0 .55.45 1 1 1s1-.45 1-1c0-3.31 2.69-6 6-6 1.77 0 3.36.78 4.46 2h-1.46c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 1c-.55 0-1 .45-1 1v2.06C16.18 1.61 13.29 0 10 0 4.48 0 0 4.48 0 10c0 .55.45 1 1 1s1-.45 1-1c0-4.42 3.58-8 8-8 2.52 0 4.76 1.18 6.22 3H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 8c-.55 0-1 .45-1 1 0 4.42-3.58 8-8 8-2.52 0-4.76-1.18-6.22-3H5c.55 0 1-.45 1-1s-.45-1-1-1H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1s1-.45 1-1v-2.06C3.82 18.39 6.71 20 10 20c5.52 0 10-4.48 10-10 0-.55-.45-1-1-1z'];\nexport var RefreshIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"refresh\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 6.5c0 .83.67 1.5 1.5 1.5S16 7.33 16 6.5 15.33 5 14.5 5 13 5.67 13 6.5zM8.5 5c.83 0 1.5-.67 1.5-1.5S9.33 2 8.5 2 7 2.67 7 3.5 7.67 5 8.5 5zM9 9.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S11.33 8 10.5 8 9 8.67 9 9.5zM4.5 8C5.33 8 6 7.33 6 6.5S5.33 5 4.5 5 3 5.67 3 6.5 3.67 8 4.5 8zM15 12H3.26l12.03-8.59-.58-.81L2 11.67V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16H3.1L19.31 3.39l-.61-.79L2 15.59V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm-9-9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-5 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm10-2c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2zm-5 4c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2-2 .9-2 2z'];\nexport var RegressionChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"regression-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.99 6.99h-6c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm-3-7c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.68 6-6 6z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm5-9H5c-.55 0-1 .45-1 1s.45 1 1 1h10c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var RemoveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 0H4c-.55 0-1 .45-1 1v3h2V2h3v12H5v-2H3v3c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14h-3V2h3v12zm-8.71-3.29a1.003 1.003 0 001.42-1.42L4.41 8 5.7 6.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L3 6.59l-1.29-1.3A1.003 1.003 0 00.29 6.71L1.59 8 .29 9.29a1.003 1.003 0 001.42 1.42L3 9.41l1.29 1.3z'];\nvar svgPaths20 = ['M19 0H5c-.55 0-1 .45-1 1v4h2V2h5v16H6v-3H4v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18h-5V2h5v16zM6.29 13.71a1.003 1.003 0 001.42-1.42L5.41 10 7.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L4 8.59l-2.29-2.3A1.003 1.003 0 00.29 7.71L2.59 10 .3 12.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L4 11.41l2.29 2.3z'];\nexport var RemoveColumnIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove-column\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 9h4c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zm11-9H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-5 14H2V2h8v12zm4 0h-3V2h3v12z'];\nvar svgPaths20 = ['M4 11h6c.55 0 1-.45 1-1s-.45-1-1-1H4c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-7 18H2V2h10v16zm6 0h-5V2h5v16z'];\nexport var RemoveColumnLeftIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove-column-left\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM5 14H2V2h3v12zm9 0H6V2h8v12zM8 9h4c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zM7 18H2V2h5v16zm11 0H8V2h10v16zm-8-7h6c.55 0 1-.45 1-1s-.45-1-1-1h-6c-.55 0-1 .45-1 1s.45 1 1 1z'];\nexport var RemoveColumnRightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove-column-right\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V6h12v8zm0-9H2V2h12v3zm-8 6h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M7 14h6c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zM19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V8h16v10zm0-11H2V2h16v5z'];\nexport var RemoveRowBottomIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove-row-bottom\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2v-3h12v3zm0-4H2V2h12v8zM6 7h4c.55 0 1-.45 1-1s-.45-1-1-1H6c-.55 0-1 .45-1 1s.45 1 1 1z'];\nvar svgPaths20 = ['M7 8h6c.55 0 1-.45 1-1s-.45-1-1-1H7c-.55 0-1 .45-1 1s.45 1 1 1zm12-8H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2v-5h16v5zm0-6H2V2h16v10z'];\nexport var RemoveRowTopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"remove-row-top\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 5c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1s-1 .45-1 1v1.74A7.95 7.95 0 008 0C3.58 0 0 3.58 0 8c0 4.06 3.02 7.4 6.94 7.92.02 0 .04.01.06.01.33.04.66.07 1 .07 4.42 0 8-3.58 8-8 0-.55-.45-1-1-1s-1 .45-1 1c0 3.31-2.69 6-6 6-.71 0-1.37-.15-2-.38v.01C3.67 12.81 2 10.61 2 8c0-3.31 2.69-6 6-6 1.77 0 3.36.78 4.46 2H11c-.55 0-1 .45-1 1z'];\nvar svgPaths20 = ['M14 6c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1s-1 .45-1 1v2.05C16.18 1.6 13.29 0 10 0 4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10c0-.55-.45-1-1-1s-1 .45-1 1c0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c2.53 0 4.77 1.17 6.24 3H15c-.55 0-1 .45-1 1z'];\nexport var RepeatIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"repeat\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 5c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V1c0-.55.45-1 1-1s1 .45 1 1v1.74A7.95 7.95 0 018 0c4.42 0 8 3.58 8 8 0 4.06-3.02 7.4-6.94 7.92-.02 0-.04.01-.06.01-.33.04-.66.07-1 .07-4.42 0-8-3.58-8-8 0-.55.45-1 1-1s1 .45 1 1c0 3.31 2.69 6 6 6 .71 0 1.37-.15 2-.38v.01c2.33-.82 4-3.02 4-5.63 0-3.31-2.69-6-6-6-1.77 0-3.36.78-4.46 2H5c.55 0 1 .45 1 1z'];\nvar svgPaths20 = ['M6 6c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V2c0-.55.45-1 1-1s1 .45 1 1v2.05C3.82 1.6 6.71 0 10 0c5.52 0 10 4.48 10 10s-4.48 10-10 10S0 15.52 0 10c0-.55.45-1 1-1s1 .45 1 1c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8C7.47 2 5.23 3.17 3.76 5H5c.55 0 1 .45 1 1z'];\nexport var ResetIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"reset\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.6 3.3C6.1 3.1 5.6 3 5 3 2.2 3 0 5.2 0 8s2.2 5 5 5c.6 0 1.1-.1 1.6-.3C5.3 11.6 4.5 9.9 4.5 8s.8-3.6 2.1-4.7zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c-.6 0-1.1.1-1.6.3 1.3 1.2 2.1 2.9 2.1 4.7s-.8 3.6-2.1 4.7c.5.2 1 .3 1.6.3 2.8 0 5-2.2 5-5s-2.2-5-5-5z'];\nvar svgPaths20 = ['M8.7 4.7C7.9 4.2 7 4 6 4c-3.3 0-6 2.7-6 6s2.7 6 6 6c1 0 1.9-.2 2.7-.7C7.3 14 6.5 12.1 6.5 10s.9-4 2.2-5.3zM14 4c-1 0-1.9.2-2.7.7 1.4 1.4 2.2 3.2 2.2 5.3s-.9 4-2.2 5.3c.8.5 1.7.7 2.7.7 3.3 0 6-2.7 6-6s-2.7-6-6-6zm-4 1.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z'];\nexport var ResolveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"resolve\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.71 3c0 1.1.96 2 2.14 2C9.04 5 10 3.96 10 3c0-1.96-1.47-3-2.14-3H5c0 1.96 2.68 1.4.71 3zm2.5 3l.01.01s0-.01-.01-.01zm6.5 8.29L10 9.59V7c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2.58l-4.71 4.7c-.18.19-.29.44-.29.72a1.003 1.003 0 001.71.71L6 12.42V15c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2.58l3.29 3.29a1.003 1.003 0 001.42-1.42z'];\nvar svgPaths20 = ['M7 4.2C7 5.75 8.34 7 10 7s3-1.46 3-2.8C13 1.45 10.94 0 10 0H6c0 2.74 3.76 1.96 1 4.2zm11.71 14.09L13 12.59V9.01c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3.58l-5.71 5.7a1.003 1.003 0 001.42 1.42L7 15.42V19c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3.58l4.29 4.29a1.003 1.003 0 001.42-1.42zM10.21 8c.01 0 .01.01 0 0 .01.01.01 0 0 0z'];\nexport var RigIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"rig\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.6 3.3C5.3 4.4 4.5 6.1 4.5 8s.8 3.6 2.1 4.7c-.5.2-1 .3-1.6.3-2.8 0-5-2.2-5-5s2.2-5 5-5c.6 0 1.1.1 1.6.3zm-1.96 8.68C3.92 10.83 3.5 9.46 3.5 8s.42-2.83 1.14-3.98C2.6 4.2 1 5.91 1 8s1.6 3.8 3.64 3.98zM8 4c-1.2.9-2 2.4-2 4s.8 3.1 2 4c1.2-.9 2-2.3 2-4s-.8-3.1-2-4zm3-1c2.8 0 5 2.2 5 5s-2.2 5-5 5c-.6 0-1.1-.1-1.6-.3 1.3-1.1 2.1-2.9 2.1-4.7s-.8-3.5-2.1-4.7c.5-.2 1-.3 1.6-.3z'];\nvar svgPaths20 = ['M8.7 4.7C7.4 6 6.5 7.9 6.5 10s.8 4 2.2 5.3c-.8.5-1.7.7-2.7.7-3.3 0-6-2.7-6-6s2.7-6 6-6c1 0 1.9.2 2.7.7zm-3.34 9.25c-.55-1.2-.86-2.54-.86-3.95s.31-2.75.86-3.95a4.001 4.001 0 000 7.9zM14 4c3.3 0 6 2.7 6 6s-2.7 6-6 6c-1 0-1.9-.2-2.7-.7 1.3-1.3 2.2-3.2 2.2-5.3s-.8-3.9-2.2-5.3C12.1 4.2 13 4 14 4zm-4 1.5C8.8 6.7 8 8.2 8 10s.8 3.3 2 4.4c1.2-1.1 2-2.7 2-4.5s-.8-3.3-2-4.4z'];\nexport var RightJoinIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"right-join\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 12c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nexport var RingIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"ring\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 2h-1.59l.29-.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-2 2C7.11 2.47 7 2.72 7 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H12c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3zM5.71 5.29A.997.997 0 005 5H1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V9c0-.28-.11-.53-.29-.71l-3-3zM7 14H2V7h2v2c0 .55.45 1 1 1h2v4z'];\nvar svgPaths20 = ['M8.71 6.29A.997.997 0 008 6H3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-8c0-.28-.11-.53-.29-.71l-4-4zM11 18H4V8h3v3c0 .55.45 1 1 1h3v6zm3-16h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C9.11 2.47 9 2.72 9 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4z'];\nexport var RotateDocumentIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"rotate-document\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 6H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h6c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm-1 8H3V8h4v6zm5-12h-1.59l.29-.29c.19-.18.3-.43.3-.71A1.003 1.003 0 009.29.29l-2 2C7.11 2.47 7 2.72 7 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H12c.55 0 1 .45 1 1v3c0 .55.45 1 1 1s1-.45 1-1V5c0-1.66-1.34-3-3-3z'];\nvar svgPaths20 = ['M14 2h-1.59l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C9.11 2.47 9 2.72 9 3c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42l-.3-.29H14c1.1 0 2 .9 2 2v3c0 .55.45 1 1 1s1-.45 1-1V6c0-2.21-1.79-4-4-4zm-2 5H3c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm-1 11H4V9h7v9z'];\nexport var RotatePageIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"rotate-page\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 9c0-.6.4-1 1-1s1 .4 1 1c0 1.1.9 2 2 2 .6 0 1 .4 1 1s-.4 1-1 1c-2.2 0-4-1.8-4-4zM0 9c0-.6.4-1 1-1s1 .4 1 1c0 2.8 2.2 5 5 5 .6 0 1 .4 1 1s-.4 1-1 1c-3.9 0-7-3.1-7-7zm7 1c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm1.3-2.8c-.4-.4-.4-1 0-1.4l4.5-4.5c.4-.4 1-.4 1.4 0l.5.5c.4.4.4 1 0 1.4l-4.5 4.5c-.4.4-1 .4-1.4 0l-.5-.5zM5.2.3c.4-.4 1-.4 1.4 0l2.1 2.1c.4.4.4 1 0 1.4l-.9.9c-.4.4-1 .4-1.4 0L4.3 2.6c-.4-.4-.4-1 0-1.4l.9-.9zm7 7c.4-.4 1-.4 1.4 0l2.1 2.1c.4.4.4 1 0 1.4l-.9.9c-.4.4-1 .4-1.4 0l-2.1-2.1c-.4-.4-.4-1 0-1.4l.9-.9z'];\nvar svgPaths20 = ['M9 18c.6 0 1 .4 1 1s-.4 1-1 1c-5 0-9-4-9-9 0-.6.4-1 1-1s1 .4 1 1c0 3.9 3.1 7 7 7zm0-4c.6 0 1 .4 1 1s-.4 1-1 1c-2.8 0-5-2.2-5-5 0-.6.4-1 1-1s1 .4 1 1c0 1.7 1.3 3 3 3zm5.7-3.7c.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4l-1.4 1.4c-.4.4-1 .4-1.4 0l-3.6-3.6c-.4-.4-.4-1 0-1.4l1.4-1.4zM4.7.3c.4-.4 1-.4 1.4 0l3.6 3.6c.4.4.4 1 0 1.4L8.3 6.7c-.4.4-1 .4-1.4 0L3.3 3.1c-.4-.4-.4-1 0-1.4L4.7.3zm11.1 1c.4-.4 1-.4 1.4 0l1.6 1.6c.4.4.4 1 0 1.4l-6.5 6.5c-.4.4-1 .4-1.4 0L9.3 9.2c-.4-.4-.4-1 0-1.4l6.5-6.5zM9 12c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z'];\nexport var SatelliteIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"satellite\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6.71 9.29a1.003 1.003 0 00-1.42 1.42l2 2a.997.997 0 001.6-.27h.01l2-4h-.01c.06-.13.11-.28.11-.44 0-.55-.45-1-1-1-.39 0-.72.23-.89.56H9.1l-1.38 2.76-1.01-1.03zM9 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5L9 0zm3 14H4V2h4v4h4v8z'];\nvar svgPaths20 = ['M12 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h13c.55 0 1-.45 1-1V6l-6-6zm4 18H5V2h6v5h5v11zm-8.29-6.71a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.32 0 .59-.16.77-.38l.01.01 4-5-.01-.01c.14-.18.23-.38.23-.62 0-.55-.45-1-1-1-.32 0-.59.16-.77.38l-.01-.01-3.3 4.13-2.21-2.21z'];\nexport var SavedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"saved\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zm-.5-7c.83 0 1.5-.67 1.5-1.5S15.33 2 14.5 2 13 2.67 13 3.5 13.67 5 14.5 5zm-3 4c.83 0 1.5-.67 1.5-1.5S12.33 6 11.5 6 10 6.67 10 7.5 10.67 9 11.5 9zm-4-2C8.33 7 9 6.33 9 5.5S8.33 4 7.5 4 6 4.67 6 5.5 6.67 7 7.5 7zm-3 4c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z'];\nvar svgPaths20 = ['M9 9c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm5 2c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4-5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1 10H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM5 15c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z'];\nexport var ScatterPlotIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"scatter-plot\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.55 13.43l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nvar svgPaths20 = ['M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nexport var SearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"search\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.5 11c-.51 0-.98.15-1.38.42l-2.4-2.41c.17-.3.28-.64.28-1.01s-.11-.71-.28-1.01l2.41-2.41c.39.27.86.42 1.37.42a2.5 2.5 0 000-5A2.5 2.5 0 0011 2.5c0 .51.15.98.42 1.38l-2.41 2.4C8.71 6.11 8.37 6 8 6s-.71.11-1.01.28l-2.41-2.4c.27-.4.42-.87.42-1.38a2.5 2.5 0 00-5 0A2.5 2.5 0 002.5 5c.51 0 .98-.15 1.38-.42l2.41 2.41C6.11 7.29 6 7.63 6 8s.11.71.28 1.01l-2.41 2.41c-.39-.27-.86-.42-1.37-.42a2.5 2.5 0 000 5A2.5 2.5 0 005 13.5c0-.51-.15-.98-.42-1.38l2.41-2.41c.3.18.64.29 1.01.29s.71-.11 1.01-.28l2.41 2.41c-.27.39-.42.86-.42 1.37a2.5 2.5 0 005 0 2.5 2.5 0 00-2.5-2.5zm0-10c.83 0 1.5.67 1.5 1.5S14.33 4 13.5 4 12 3.33 12 2.5 12.67 1 13.5 1zm-11 3C1.67 4 1 3.33 1 2.5S1.67 1 2.5 1 4 1.67 4 2.5 3.33 4 2.5 4zm0 11c-.83 0-1.5-.67-1.5-1.5S1.67 12 2.5 12s1.5.67 1.5 1.5S3.33 15 2.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'];\nvar svgPaths20 = ['M9.9 6.9a3 3 0 100 6 3 3 0 100-6zM3 14c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM3 0C1.3 0 0 1.3 0 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM17 14c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM17 0c-1.7 0-3 1.3-3 3s1.3 3 3 3 3-1.3 3-3-1.3-3-3-3zm0 5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM10 10L5 5', 'M5.379 4.671l5.02 5.02-.707.708-5.02-5.02zM10 10l5-5', 'M14.621 4.671l.707.708-5.02 5.02-.707-.707z', 'M10 10l5 5M10.379 9.671l5.02 5.02-.707.708-5.02-5.02z', 'M10 10l-5 5M9.621 9.671l.707.708-5.02 5.02-.707-.707z'];\nexport var SearchAroundIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"search-around\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.55 13.43l-2.67-2.67c.7-1.09 1.11-2.38 1.11-3.77 0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.41 3.77-1.11l2.67 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm2.5-6h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm0-2h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm0 4h-5c-.28 0-.5.22-.5.5s.22.5.5.5h5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5z'];\nvar svgPaths20 = ['M13 8H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0 3H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm0-6H5c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1zm6.56 12.44l-3.23-3.23A8.939 8.939 0 0018 9a9 9 0 10-9 9c1.94 0 3.74-.62 5.21-1.67l3.23 3.23a1.498 1.498 0 102.12-2.12zM9 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z'];\nexport var SearchTemplateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"search-template\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 4H5c-.55 0-1 .45-1 1s.45 1 1 1h1v3c0 .55.45 1 1 1s1-.45 1-1V6h1c.55 0 1-.45 1-1s-.45-1-1-1zm6.56 9.44l-2.67-2.67C13.59 9.68 14 8.39 14 7c0-3.87-3.13-7-7-7S0 3.13 0 7s3.13 7 7 7c1.39 0 2.68-.41 3.77-1.11l2.67 2.67a1.498 1.498 0 102.12-2.12zM7 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nvar svgPaths20 = ['M19.56 17.44l-3.23-3.23A8.939 8.939 0 0018 9a9 9 0 10-9 9c1.94 0 3.74-.62 5.21-1.67l3.23 3.23a1.498 1.498 0 102.12-2.12zM9 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm3.5-11h-7c-.28 0-.5.22-.5.5v2c0 .28.22.5.5.5s.5-.22.5-.5V7h2v6h-.5c-.28 0-.5.22-.5.5s.22.5.5.5h3c.28 0 .5-.22.5-.5s-.22-.5-.5-.5H10V7h2v.5c0 .28.22.5.5.5s.5-.22.5-.5v-2c0-.28-.22-.5-.5-.5z'];\nexport var SearchTextIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"search-text\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 4H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-1 6H8V6h6v4z'];\nvar svgPaths20 = ['M19 5H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-1 8h-8V7h8v6z'];\nexport var SegmentedControlIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"segmented-control\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 15c0-.28-.12-.52-.31-.69l.02-.02-3.12-3.12 3.41-.84-8.05-2.86c.03-.09.05-.17.05-.27V2c0-.55-.45-1-1-1H3c0-.55-.45-1-1-1S1 .45 1 1c-.55 0-1 .45-1 1s.45 1 1 1v4c0 .55.45 1 1 1h5.2c.1 0 .18-.02.27-.05L10.33 16l.85-3.41 3.12 3.12.02-.02c.16.19.4.31.68.31.04 0 .07-.02.1-.02s.06.02.1.02c.44 0 .8-.36.8-.8 0-.04-.02-.07-.02-.1s.02-.06.02-.1zM6 6H3V3h3v3z'];\nvar svgPaths20 = ['M19.71 18.29l-4.25-4.25L20 12.91 9.93 9.33c.04-.1.07-.21.07-.33V3c0-.55-.45-1-1-1H4V1c0-.55-.45-1-1-1S2 .45 2 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h1v5c0 .55.45 1 1 1h6c.12 0 .23-.03.34-.07L12.91 20l1.14-4.54 4.25 4.25c.17.18.42.29.7.29a1.003 1.003 0 00.71-1.71zM8 8H4V4h4v4z'];\nexport var SelectIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"select\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-9C6.34 5 5 6.34 5 8s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z', 'M10 6a4 4 0 100 8 4 4 0 100-8z'];\nexport var SelectionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"selection\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 7.5c-.8 0-1.5-.4-2-1l-1.2 1.2c-.4.5-1.1.7-1.8.7-1.4.1-2.5-1-2.5-2.4 0-.7.3-1.3.7-1.8L9.5 3c-.6-.5-1-1.2-1-2 0-.3.1-.7.2-1H8C3.6 0 0 3.6 0 8s3.6 8 8 8 8-3.6 8-8v-.7c-.3.1-.6.2-1 .2zM15 0h-4c-.6 0-1 .5-1 1s.4 1 1 1h1.6L9.3 5.3c-.2.2-.3.4-.3.7 0 .5.4 1 1 1 .3 0 .5-.1.7-.3L14 3.4V5c0 .6.4 1 1 1 .5 0 1-.4 1-1V1c0-.5-.4-1-1-1z'];\nvar svgPaths20 = ['M19 0h-5c-.6 0-1 .4-1 1s.4 1 1 1h2.6l-4.3 4.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3L18 3.4V6c0 .5.5 1 1 1s1-.5 1-1V1c0-.6-.5-1-1-1zm0 9c-1 0-1.9-.5-2.5-1.3l-1.4 1.4c-.5.6-1.3.9-2.1.9-1.7 0-3-1.3-3-3 0-.8.3-1.6.9-2.1l1.4-1.4C11.5 2.9 11 2 11 1c0-.3.1-.6.2-.9-.4-.1-.8-.1-1.2-.1C4.5 0 0 4.5 0 10s4.5 10 10 10 10-4.5 10-10c0-.4 0-.8-.1-1.2-.3.1-.6.2-.9.2z'];\nexport var SendToIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"send-to\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm8 .5c-.56 0-1.06.23-1.42.59l-2.13-1.24L8.99 8l3.59-2.09A2.002 2.002 0 0016 4.5c0-1.1-.9-2-2-2s-2 .9-2 2c0 .19.03.37.08.54L8.5 7.13v-3.2c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S6 .9 6 2c0 .93.64 1.71 1.5 1.93v3.2l-.88-.52-2.7-1.57c.05-.17.08-.35.08-.54 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.56 0 1.06-.23 1.42-.59l2.13 1.24 3.84 2.24 2.7 1.57c-.06.17-.09.35-.09.54 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2z'];\nvar svgPaths20 = ['M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm10 2c-.53 0-1.01.21-1.37.55L11.9 10.6c.06-.19.1-.39.1-.6 0-.21-.04-.41-.1-.6l4.72-2.95c.37.34.85.55 1.38.55 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .21.04.41.1.6l-4.73 2.96c-.24-.23-.54-.4-.87-.48V3.93c.86-.22 1.5-1 1.5-1.93 0-1.1-.9-2-2-2S8 .9 8 2c0 .93.64 1.71 1.5 1.93v4.14c-.33.09-.63.26-.87.48L7.6 7.91 5.42 6.55 3.9 5.6c.06-.19.1-.39.1-.6 0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2c.53 0 1.01-.21 1.37-.55L9 9.96V10h.06L12 11.84l.4.25 1.51.94 2.19 1.37c-.06.19-.1.39-.1.6 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zm-7-2.96l-.06-.04H11v.04z'];\nexport var SendToGraphIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"send-to-graph\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 9H2c-.55 0-1 .45-1 1s.45 1 1 1h1.59L.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L5 12.41V14c0 .55.45 1 1 1s1-.45 1-1v-4c0-.55-.45-1-1-1zm9.55-5.83l-4.49-3A.975.975 0 009.99.15L5.53 2.82 1.56.17A1.003 1.003 0 000 1v6h2V2.87l2.94 1.96.06.03V7h1V4.86s.01 0 .01-.01L10 2.47v8.67s-.01 0-.01.01l-.99.58v2.33l1.47-.88 3.97 2.65A1.003 1.003 0 0016 15V4c0-.35-.18-.65-.45-.83zM14 13.13l-2.94-1.96c-.02-.01-.04-.02-.05-.03v-8.6l3 2v8.59z'];\nvar svgPaths20 = ['M8 11H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59L.3 18.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L7 14.41V17c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm11.54-6.82l.01-.02-6-4-.01.02C13.39.08 13.21 0 13 0s-.39.08-.54.18l-.01-.02L7 3.8 1.55.17l-.01.01A.969.969 0 001 0C.45 0 0 .45 0 1v9c0-.55.45-1 1-1h1V2.87l4 2.67V9h2V5.54l4-2.67v11.6l-1 .67v2.4l2-1.33 5.45 3.63.01-.02c.15.1.33.18.54.18.55 0 1-.45 1-1V5c0-.35-.19-.64-.46-.82zM18 17.13l-4-2.67V2.87l4 2.67v11.59z'];\nexport var SendToMapIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"send-to-map\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.68 7.9c.44.54 1.07.92 1.79 1.05l-2.76 2.76c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l1.68-1.69zM15 3c.55 0 1 .45 1 1s-.45 1-1 1h-1v1c0 .55-.45 1-1 1s-1-.45-1-1V5h-1c-.55 0-1-.45-1-1s.45-1 1-1h1V2c0-.55.45-1 1-1s1 .45 1 1v1h1z'];\nvar svgPaths20 = ['M13.29 9.29c.3.62.8 1.12 1.42 1.42l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 2.29-2.3zM12 5c0-.5.4-1 1-1h2V2c0-.6.4-1 1-1 .5 0 1 .4 1 1v2h2c.5 0 1 .4 1 1s-.5 1-1 1h-2v2c0 .6-.5 1-1 1-.6 0-1-.4-1-1V6h-2c-.6 0-1-.4-1-1z'];\nexport var SeriesAddIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"series-add\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.94 9.64c.65.23 1.34.36 2.06.36.14 0 .29-.01.43-.01L9.7 12.71c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.3L5 9.41l-3 3V14h12.99c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 7.11 4.72 7 5 7c.28 0 .53.11.71.29L9 10.59l.94-.95zm4.73-6.44h.92c.22 0 .4.18.4.4v.8c0 .22-.18.4-.4.4h-.93c-.06.2-.14.38-.24.55l.66.65c.15.15.15.4 0 .55l-.54.55c-.15.15-.4.15-.55 0l-.65-.65c-.17.1-.36.18-.55.24v.91c0 .22-.18.4-.4.4h-.8c-.22 0-.4-.18-.4-.4v-.93c-.18-.06-.36-.13-.52-.22l-.68.68c-.15.16-.41.16-.57 0l-.56-.56a.417.417 0 010-.57l.68-.68c-.08-.16-.16-.33-.22-.52h-.93c-.22 0-.4-.18-.4-.4v-.8c0-.22.18-.4.4-.4h.93c.06-.2.14-.38.24-.55l-.65-.64a.392.392 0 010-.55l.54-.55a.38.38 0 01.54 0l.65.65c.18-.1.36-.18.55-.24V.4c0-.22.18-.4.4-.4h.8c.22 0 .4.18.4.4v.93c.18.06.35.14.52.22l.68-.68c.15-.16.41-.16.57 0l.57.57c.15.16.15.41 0 .57l-.68.68c.09.16.16.33.22.51zm-4.18.8c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5-.67-1.5-1.5-1.5c-.82 0-1.5.67-1.5 1.5z'];\nvar svgPaths20 = ['M11.91 10.67c.52.45 1.13.8 1.8 1.03l-2.01 2.01c-.18.18-.43.29-.71.29-.28 0-.53-.11-.71-.3L7 10.41l-5 5V17h16.99c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8c.28 0 .53.11.71.29l3.29 3.3.91-.92zM18.5 4.6h1.04c.25 0 .45.2.46.44v.9c0 .25-.2.45-.45.45h-1.04c-.07.22-.16.42-.27.62l.73.73c.17.17.17.44 0 .61l-.61.61c-.17.17-.44.17-.61 0l-.73-.73c-.2.11-.4.2-.62.26v1.05c0 .25-.2.45-.45.45h-.9c-.25 0-.45-.2-.45-.45V8.51c-.21-.06-.4-.15-.58-.25l-.76.77c-.17.17-.46.17-.64 0l-.64-.64a.465.465 0 010-.64l.76-.77c-.1-.19-.19-.38-.25-.59h-1.04c-.25 0-.45-.2-.45-.45v-.9c0-.25.2-.45.45-.45h1.04c.07-.22.16-.42.27-.61l-.73-.73a.429.429 0 010-.61l.61-.61c.17-.17.44-.17.61 0l.73.73c.2-.11.4-.2.62-.26V1.45a.44.44 0 01.44-.45h.9c.25 0 .45.2.45.45V2.5c.21.06.4.15.58.25l.76-.77c.17-.17.46-.17.64 0l.64.64c.17.17.17.46 0 .64l-.76.77c.1.17.19.36.25.57zm-4.69.9c0 .93.75 1.69 1.69 1.69.93 0 1.69-.75 1.69-1.69s-.75-1.69-1.69-1.69-1.69.76-1.69 1.69z'];\nexport var SeriesConfigurationIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"series-configuration\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.66 7.92c.44.54 1.07.91 1.8 1.03L9.71 11.7c-.18.19-.43.3-.71.3s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l1.66-1.67zM12.3 5.3l.3-.3H8c-.6 0-1-.4-1-1s.4-1 1-1h4.6l-.3-.3c-.2-.2-.3-.4-.3-.7 0-.6.5-1 1-1 .3 0 .5.1.7.3l2 2c.2.2.3.4.3.7s-.1.5-.3.7l-2 2c-.2.2-.4.3-.7.3-.6 0-1-.4-1-1 0-.3.1-.5.3-.7z'];\nvar svgPaths20 = ['M18.82 6.58c-.03.05-.07.09-.11.13 0 0 0-.01-.01-.01l-2 2c-.2.2-.4.3-.7.3-.6 0-1-.4-1-1 0-.3.1-.5.3-.7L16.6 6H11c-.6 0-1-.4-1-1s.4-1 1-1h5.6l-1.3-1.3c-.2-.2-.3-.4-.3-.7 0-.6.4-1 1-1 .3 0 .5.1.7.3l3 3c.2.2.3.4.3.7s-.1.5-.3.7l-.88.88zm-5.53 2.71c.3.62.8 1.12 1.42 1.42l-3 3c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 2.29-2.3z'];\nexport var SeriesDerivedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"series-derived\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.29 9.3c.3.62.8 1.12 1.42 1.41l-1 1c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L5 8.41l-3 3V13h13c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1 .45 1 1v4.59l2.29-2.3C4.47 6.11 4.72 6 5 6s.53.11.71.29L9 9.59l.29-.29zM15.48 1c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V4.71L8.17 1.98A.566.566 0 018 1.57c0-.31.26-.57.57-.57h6.91z'];\nvar svgPaths20 = ['M12.14 10.45c.21.67.65 1.23 1.22 1.61l-1.65 1.65c-.18.18-.43.29-.71.29s-.53-.11-.71-.3L7 10.41l-5 5V17h17c.55 0 1 .45 1 1s-.45 1-1 1H1a.998.998 0 01-1-1V4c0-.55.45-1 1-1s1 .45 1 1v8.59l4.29-4.3C6.47 8.11 6.72 8 7 8s.53.11.71.29l3.29 3.3 1.14-1.14zM19.35 1a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V5.13L11.19 2.1a.642.642 0 01.45-1.1h7.71z'];\nexport var SeriesFilteredIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"series-filtered\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.6 8.94a4.937 4.937 0 001.82.01c.1-.01.22-.04.39-.08l.23-.07c.04-.01.08-.02.11-.04l.22.22-2.7 2.72c-.18.19-.43.3-.71.3s-.53-.11-.71-.3L4.98 8.41l-2.99 3V13h12.94c.55 0 1 .45 1 1s-.45 1-1 1H1c-.55 0-1-.45-1-1V3.99c0-.55.45-1 1-1s1 .45 1 1v4.59l2.28-2.3c.17-.18.42-.29.7-.29s.53.11.7.29l3.28 3.3.64-.64zm6.22-.41c.1.12.17.27.18.44 0 .34-.27.61-.61.61a.57.57 0 01-.43-.18l-2.24-2.25c-.13.08-.26.16-.4.23-.02.01-.05.02-.07.03-.14.06-.27.12-.42.17h-.01c-.14.05-.29.08-.44.11-.04.01-.08.02-.11.02-.15.02-.3.04-.46.04-1.85 0-3.35-1.51-3.35-3.37S8.96 1.01 10.81 1c1.85 0 3.35 1.51 3.35 3.37 0 .16-.02.31-.04.47-.01.04-.01.07-.02.11-.02.15-.05.29-.1.44v.01c-.05.15-.11.28-.17.42-.01.02-.02.05-.03.07-.07.14-.14.27-.23.4l2.25 2.24zm-5.01-1.94c1.22 0 2.21-.99 2.21-2.22 0-1.23-.99-2.22-2.21-2.22S8.6 3.14 8.6 4.37c0 1.22.99 2.22 2.21 2.22z'];\nvar svgPaths20 = ['M11.28 11.31l-.28.28-3.29-3.3C7.53 8.11 7.28 8 7 8s-.53.11-.71.29L2 12.59V4c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1H2v-1.59l5-5 3.29 3.29c.18.19.43.3.71.3s.53-.11.71-.29l2.09-2.09c-.17.02-.34.02-.51.02-.7 0-1.38-.12-2.01-.33zm-.93-6c0-1.62 1.31-2.93 2.93-2.93s2.93 1.31 2.93 2.93-1.31 2.93-2.93 2.93-2.93-1.31-2.93-2.93zm6.47 2.43c.11-.17.21-.33.29-.51.01-.03.03-.06.04-.09.08-.18.16-.35.21-.54.06-.2.1-.38.14-.58.01-.05.01-.09.02-.14.03-.2.05-.39.05-.6 0-2.37-1.93-4.3-4.3-4.3-2.37.01-4.3 1.93-4.3 4.31s1.93 4.3 4.3 4.3c.21 0 .4-.02.6-.05.04 0 .09-.01.14-.02.2-.03.38-.08.57-.14.2-.06.37-.14.55-.21.03-.01.06-.03.09-.04.18-.09.34-.19.51-.29l2.87 2.87c.14.14.33.22.56.22.43 0 .78-.35.78-.78a.938.938 0 00-.23-.56l-2.89-2.85z'];\nexport var SeriesSearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"series-search\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 1c0-.55-.45-1-1-1S1 .45 1 1v3h2V1zm0 4H1c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm12-4c0-.55-.45-1-1-1s-1 .45-1 1v2h2V1zM9 1c0-.55-.45-1-1-1S7 .45 7 1v6h2V1zM1 15c0 .55.45 1 1 1s1-.45 1-1v-5H1v5zM15 4h-2c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm-2 11c0 .55.45 1 1 1s1-.45 1-1V9h-2v6zM9 8H7c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1zm-2 7c0 .55.45 1 1 1s1-.45 1-1v-2H7v2z'];\nvar svgPaths20 = ['M4 1c0-.55-.45-1-1-1S2 .45 2 1v5h2V1zM2 19c0 .55.45 1 1 1s1-.45 1-1v-6H2v6zm9-18c0-.55-.45-1-1-1S9 .45 9 1v8h2V1zm7 0c0-.55-.45-1-1-1s-1 .45-1 1v3h2V1zM9 19c0 .55.45 1 1 1s1-.45 1-1v-3H9v3zm9-14h-2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1zm-2 14c0 .55.45 1 1 1s1-.45 1-1v-8h-2v8zM4 7H2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm7 3H9c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1z'];\nexport var SettingsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"settings\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.99 13.99h-9v-9h4.76l2-2H.99c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h11c.55 0 1-.45 1-1V7.24l-2 2v4.75zm4-14h-5c-.55 0-1 .45-1 1s.45 1 1 1h2.59L7.29 7.28a1 1 0 00-.3.71 1.003 1.003 0 001.71.71l5.29-5.29V6c0 .55.45 1 1 1s1-.45 1-1V1c0-.56-.45-1.01-1-1.01z'];\nvar svgPaths20 = ['M15 18H2V5h8.76l2-2H1c-.55 0-1 .45-1 1v15c0 .55.45 1 1 1h15c.55 0 1-.45 1-1V7.24l-2 2V18zm4-18h-7c-.55 0-1 .45-1 1s.45 1 1 1h4.59l-7.3 7.29a1.003 1.003 0 001.42 1.42L18 3.41V8c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var ShareIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"share\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 16c4.667-3.048 7-7.238 7-12.571-1.556 0-3.889-1.143-7-3.429-3.111 2.286-5.444 3.429-7 3.429C1 8.762 3.333 12.952 8 16zM8 2.121c2.005 1.388 3.715 2.304 5.186 2.735-.342 3.702-2.05 6.683-5.186 9.038V2.121z'];\nvar svgPaths20 = ['M10 20c6-3.81 9-9.048 9-15.714-2 0-5-1.429-9-4.286-4 2.857-7 4.286-9 4.286C1 10.952 4 16.19 10 20zm0-17.348c2.577 1.734 4.776 2.88 6.667 3.419-.44 4.627-2.636 8.353-6.667 11.297V2.652z'];\nexport var ShieldIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"shield\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3 2h10c.55 0 1-.45 1-1s-.45-1-1-1H3c-.55 0-1 .45-1 1s.45 1 1 1zm9 11H4v-3H2v5c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-5h-2v3zm4-6l-1.01-3.17C14.9 3.36 14.49 3 14 3H2c-.49 0-.9.36-.98.83L.01 7H0c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2c0 1.1.9 2 2 2s2-.9 2-2z'];\nvar svgPaths20 = ['M17.94 3.63c-.01-.02-.01-.03-.02-.04l-.03-.09h-.01c-.18-.3-.49-.5-.86-.5h-14c-.42 0-.77.25-.92.61L0 8.5h.02a2.5 2.5 0 005 0 2.5 2.5 0 005 0 2.5 2.5 0 005 0 2.5 2.5 0 005 0l-2.08-4.87zM3.02 2h14c.55 0 1-.45 1-1s-.45-1-1-1h-14c-.55 0-1 .45-1 1s.44 1 1 1zm13 14h-12v-4h-2v7c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-7h-2v4z'];\nexport var ShopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"shop\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 10H7.72l-.33-1H13c.39 0 .72-.23.89-.56h.01l2-4h-.01c.06-.13.11-.28.11-.44 0-.55-.45-1-1-1H5.39l-.44-1.32h-.01C4.8 1.29 4.44 1 4 1H1c-.55 0-1 .45-1 1s.45 1 1 1h2.28l2.33 7H4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2h6c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zM6.05 5h7.33l-1 2H6.72l-.67-2z'];\nvar svgPaths20 = ['M18 14H8.72l-.67-2H17c.44 0 .8-.29.94-.69h.01l2-6h-.01c.03-.1.06-.2.06-.31 0-.55-.45-1-1-1H5.39l-.44-1.32h-.01C4.8 2.29 4.44 2 4 2H1c-.55 0-1 .45-1 1s.45 1 1 1h2.28l3.33 10H5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2h9c0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2zM6.05 6h11.56l-1.33 4H7.39L6.05 6z'];\nexport var ShoppingCartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"shopping-cart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.474 7.971A5.31 5.31 0 006.66 8.9l.007.019.018.056c.015.038.038.06.045.098l1.5 5.999a.75.75 0 01-1.455.36l-.42-1.68h-.704l-.42 1.68a.746.746 0 01-.907.547.746.746 0 01-.547-.907l1.5-6c.007-.037.03-.06.044-.097.015-.037.015-.075.038-.112a.722.722 0 01-.105-.36c0-.207.084-.394.22-.53zM2.795 5.277a.763.763 0 00-.015-1.065.756.756 0 00-1.065.015c-2.286 2.34-2.286 6.21 0 8.549a.747.747 0 101.072-1.042c-1.709-1.763-1.709-4.702.008-6.457zM7.808 9.388a5.318 5.318 0 001.58.211 2.236 2.236 0 01-.656.98.756.756 0 01-1.057-.098.756.756 0 01.097-1.057l.036-.036zM11.544 9.105l.378.378a6.02 6.02 0 01-1.638 3.285c-.285.3-.757.3-1.057.015a.74.74 0 01-.015-1.057 4.52 4.52 0 001.185-2.24c.4-.083.785-.212 1.147-.381z', 'M4.054 9.424c-.427-.352-.352-1.582-.03-1.822a.752.752 0 00.15-1.05.752.752 0 00-1.05-.15c-1.079.802-1.221 3.18-.03 4.177a.75.75 0 10.96-1.155zM9.318 0a4.318 4.318 0 014.317 4.318c0 .206-.02.402-.049.598-.01.05-.01.088-.02.138-.039.196-.078.382-.137.569v.01c-.059.186-.137.363-.216.54l-.039.087a5.285 5.285 0 01-.294.51l2.884 2.886a.878.878 0 01.236.559.787.787 0 01-.785.785.785.785 0 01-.56-.226L11.772 7.89a5.285 5.285 0 01-.51.295l-.089.039c-.176.079-.353.157-.54.216h-.01a3.701 3.701 0 01-.568.137c-.05.01-.099.02-.138.02-.196.03-.392.049-.598.049A4.318 4.318 0 015 4.327 4.332 4.332 0 019.318 0zm-.02 1.1A3.195 3.195 0 006.1 4.298a3.195 3.195 0 003.198 3.198 3.195 3.195 0 003.198-3.198A3.195 3.195 0 009.298 1.1z'];\nvar svgPaths20 = ['M7.15 10.33c.888.8 1.999 1.36 3.228 1.574l2.326 6.98a.846.846 0 01-.535 1.07.844.844 0 01-1.072-.535l-1.225-3.671H7.125L5.9 19.419a.85.85 0 01-1.072.536.85.85 0 01-.536-1.071l2.857-8.555zm1.353 1.305l-.808 2.413h1.607l-.8-2.413zM5 5.5c0 .76.13 1.49.37 2.17-.496 1.056-.313 2.356.704 3.29.385.353.404.94.038 1.311a.982.982 0 01-1.356.038c-2.183-2.01-2-5.125.01-6.94a.95.95 0 01.24-.156A6.421 6.421 0 005 5.5z', 'M3.874 13.185c-1.346-.918-2.187-2.67-2.187-4.34 0-1.752.757-3.254 2.187-4.339.42-.25.42-.834.168-1.168-.252-.418-.84-.418-1.177-.167C1.014 4.59-.08 6.509.005 8.846c.084 2.253 1.177 4.423 2.86 5.675.168.083.336.166.504.166.253 0 .505-.083.673-.333.337-.418.253-.918-.168-1.169zM12.246 12.309a.98.98 0 01-1.354-.037.917.917 0 01-.206-.324 6.54 6.54 0 001.959-.049 5.125 5.125 0 01-.399.41zM14.631 11.476l1.228 1.229a6.6 6.6 0 01-1.723 1.816c-.169.083-.337.166-.505.166-.253 0-.505-.083-.673-.333-.337-.418-.253-.918.168-1.169.62-.422 1.133-1.022 1.505-1.709z', 'M11.5 0C14.54 0 17 2.46 17 5.5c0 .26-.02.51-.06.75l-.03.17c-.04.25-.1.49-.17.73v.01c-.08.24-.17.47-.28.69-.01.04-.03.07-.05.11-.11.23-.24.44-.38.65l3.68 3.68A1.003 1.003 0 0119 14c-.28 0-.53-.11-.7-.29l-3.68-3.68c-.21.14-.42.27-.65.38-.04.01-.07.03-.11.05-.22.11-.45.2-.69.28h-.01c-.24.07-.48.13-.73.17l-.17.03c-.25.04-.5.06-.76.06C8.46 11 6 8.54 6 5.5S8.46 0 11.5 0zm0 1.5c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z'];\nexport var SignalSearchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"signal-search\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.71 4.29l-4-4A.997.997 0 009 0H3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h10c.55 0 1-.45 1-1V5c0-.28-.11-.53-.29-.71zM7 6h2v2H7V6zM4 6h2v2H4V6zm2 8H4v-2h2v2zm3 0H7v-2h2v2zm3 0h-2v-2h2v2zm0-3H4V9h8v2zm0-3h-2V6h2v2z'];\nvar svgPaths20 = ['M16.71 5.29l-5-5A.997.997 0 0011 0H4c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V6c0-.28-.11-.53-.29-.71zM9 7h2v3H9V7zM6 7h2v3H6V7zm2 11H6v-3h2v3zm3 0H9v-3h2v3zm3 0h-2v-3h2v3zm0-4H6v-3h8v3zm0-4h-2V7h2v3z'];\nexport var SimCardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sim-card\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 2a.99.99 0 00-.96.73l-2.99 9.96A1.003 1.003 0 007 14c.46 0 .85-.31.96-.73l2.99-9.96A1.003 1.003 0 0010 2z'];\nvar svgPaths20 = ['M12 2c-.46 0-.85.32-.97.74L7.04 16.7c-.02.1-.04.2-.04.3 0 .55.45 1 1 1 .46 0 .85-.32.97-.74L12.96 3.3c.02-.1.04-.2.04-.3 0-.55-.45-1-1-1z'];\nexport var SlashIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"slash\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.41 8l2.29-2.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42L6.59 8 4.3 10.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l2.29 2.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z'];\nvar svgPaths20 = ['M11.41 10l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L8.59 10 5.3 13.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l3.29-3.3 3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z'];\nexport var SmallCrossIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"small-cross\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M14 9H6c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var SmallMinusIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"small-minus\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 7H9V5c0-.55-.45-1-1-1s-1 .45-1 1v2H5c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V9h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M14 9h-3V6c0-.55-.45-1-1-1s-1 .45-1 1v3H6c-.55 0-1 .45-1 1s.45 1 1 1h3v3c0 .55.45 1 1 1s1-.45 1-1v-3h3c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var SmallPlusIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"small-plus\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 5c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z'];\nvar svgPaths20 = ['M15 5c-.28 0-.53.11-.71.29L8 11.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l7-7A1.003 1.003 0 0015 5z'];\nexport var SmallTickIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"small-tick\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.364 9l.879.879a1 1 0 11-1.415 1.414l-2.12-2.121A1.003 1.003 0 0110.568 9H9v1.604c.042.03.083.065.121.103l2.122 2.121a1 1 0 01-1.415 1.415L9 13.414V15a1 1 0 01-2 0v-1.636l-.879.879a1 1 0 11-1.414-1.415l2.121-2.12c.054-.054.111-.1.172-.139V9H5.38c-.038.06-.084.118-.137.172l-2.122 2.12A1 1 0 111.707 9.88L2.586 9H1a1 1 0 110-2h1.536l-.829-.828a1 1 0 011.414-1.415L5.243 6.88c.038.038.072.079.103.121H7V5.38a1.003 1.003 0 01-.172-.137L4.708 3.12A1 1 0 016.12 1.707L7 2.586V1a1 1 0 112 0v1.536l.828-.829a1 1 0 011.415 1.414L9.12 5.243A1.007 1.007 0 019 5.346V7h1.604c.03-.042.065-.083.103-.121l2.121-2.122a1 1 0 011.415 1.415L13.414 7H15a1 1 0 010 2h-1.636z'];\nvar svgPaths20 = ['M11 11.776v2.81l2.31 2.242a.987.987 0 010 1.415c-.399.39-1.044.39-1.442 0L11 17.414V19a.99.99 0 01-.996 1A.996.996 0 019 19v-1.636l-.912.879c-.398.39-1.043.39-1.441 0a.987.987 0 010-1.415L9 14.536v-2.79l-2.548 1.435-.837 3.063c-.146.534-.705.85-1.248.707a.998.998 0 01-.721-1.224l.309-1.132-1.4.793a1.03 1.03 0 01-1.393-.366.99.99 0 01.373-1.366l1.445-.818-1.224-.322a.998.998 0 01-.72-1.225c.145-.533.704-.85 1.248-.707l3.193.84 2.462-1.395-2.532-1.434-3.123.82a1.022 1.022 0 01-1.249-.706.998.998 0 01.721-1.225L2.91 7.18l-1.4-.793a.99.99 0 01-.373-1.366 1.03 1.03 0 011.392-.366l1.445.818-.328-1.2a.998.998 0 01.72-1.225 1.022 1.022 0 011.25.707l.855 3.132L9 8.311V5.414L6.647 3.121a.987.987 0 010-1.414 1.033 1.033 0 011.441 0L9 2.586V1c0-.552.44-1 1.004-1A.99.99 0 0111 1l-.007 1.536.875-.829a1.033 1.033 0 011.441 0 .987.987 0 010 1.414L11 5.364v2.918l2.53-1.42.855-3.131c.146-.534.705-.85 1.249-.707a.998.998 0 01.72 1.224l-.327 1.2 1.4-.792a1.03 1.03 0 011.392.366.99.99 0 01-.373 1.366l-1.355.768 1.153.303a.998.998 0 01.721 1.225c-.146.533-.705.85-1.249.707l-3.123-.821-2.576 1.459 2.506 1.42 3.193-.84a1.022 1.022 0 011.249.707.998.998 0 01-.72 1.225l-1.224.322 1.4.793a.99.99 0 01.373 1.366 1.03 1.03 0 01-1.393.366l-1.356-.768.31 1.132a.998.998 0 01-.721 1.224 1.022 1.022 0 01-1.249-.707l-.837-3.063L11 11.776z'];\nexport var SnowflakeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"snowflake\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.5 4c.4 0 .8-.1 1.1-.3C12 4.5 12.9 6 13 7.6c0 .5.5.9 1 .9.6 0 1-.4 1-1v-.2c-.2-2.4-1.5-4.4-3.5-5.5-.1-1-.9-1.8-2-1.8s-2 .9-2 2 .9 2 2 2zM4 8.5c0-.7-.4-1.3-.9-1.7.3-1.4 1.2-2.6 2.5-3.3.3-.1.6-.4.6-.9s-.4-1-1-1c-.2 0-.3 0-.5.1-1.9 1-3.2 2.8-3.6 5C.4 7.1 0 7.8 0 8.5c0 1.1.9 2 2 2s2-.9 2-2zm8.8 1.2c-1.1 0-2 .9-2 2v.3c-.8.6-1.8.9-2.8.9-1.2 0-2.3-.4-3.2-1.1-.2-.2-.4-.3-.7-.3-.6 0-1 .4-1 1 0 .3.1.6.3.8C4.6 14.4 6.2 15 8 15c1.5 0 3-.5 4.1-1.3.2.1.5.1.7.1 1.1 0 2-.9 2-2s-.9-2.1-2-2.1z'];\nvar svgPaths20 = ['M11.5 5c.8 0 1.6-.4 2-1 2 1.2 3.3 3.3 3.5 5.7 0 .5.5.9 1 .9.6 0 1-.5 1-1v-.1c-.2-3.3-2.2-6.2-5.1-7.6C13.7.8 12.7 0 11.5 0 10.1 0 9 1.1 9 2.5S10.1 5 11.5 5zm5 7c-1.4 0-2.5 1.1-2.5 2.5 0 .4.1.7.2 1.1-1.1.9-2.6 1.4-4.2 1.4-1.9 0-3.6-.8-4.9-2-.2-.2-.5-.4-.8-.4-.5 0-1 .5-1 1 0 .3.1.5.3.7C5.3 18 7.5 19 10 19c2.2 0 4.2-.8 5.8-2.1.2.1.5.1.7.1 1.4 0 2.5-1.1 2.5-2.5S17.9 12 16.5 12zM5 10.5c0-1.1-.7-2.1-1.7-2.4.5-1.9 1.9-3.5 3.6-4.4.3-.2.6-.5.6-.9 0-.5-.4-1-1-1-.2 0-.4.1-.6.2-2.4 1.2-4.2 3.6-4.7 6.4C.5 8.9 0 9.6 0 10.5 0 11.9 1.1 13 2.5 13S5 11.9 5 10.5z'];\nexport var SocialMediaIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"social-media\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm3-9h7c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm7 2H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0 8H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1zm0-4H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm0-5h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM7 15c-.28 0-.53.11-.71.29L5 16.59V11c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 15.3A.965.965 0 001 15a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 15zM19 1h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1zm0 5h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1z'];\nexport var SortIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 002 12a1.003 1.003 0 00-.71 1.71l2 2c.19.18.44.29.71.29.28 0 .53-.11.71-.29l2-2c.18-.18.29-.43.29-.71a.99.99 0 00-1-1zm7.93-.95v-1.04H9.25v1.11h2.94L9 14.96V16h5.02v-1.11h-3.27l3.18-3.84zm-1.42-4.84l.62 1.78H15L11.94.01H10.1L7 7.99h1.81l.64-1.78h3.06zm-1.52-4.24h.02l1.03 2.93H9.92l1.07-2.93z'];\nvar svgPaths20 = ['M8 15c-.28 0-.53.11-.71.29L6 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L2.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 008 15zm8.89-.79v-1.22H11.3v1.3h3.51L11 18.78V20h5.99v-1.3h-3.91l3.81-4.49zM14.97 0h-1.95L9.01 11.01h1.89l.98-2.92h4.17l.98 2.92h1.96L14.97 0zm-2.59 6.63l1.58-4.74H14l1.57 4.74h-3.19z'];\nexport var SortAlphabeticalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-alphabetical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.99 11.99c-.28 0-.53.11-.71.29l-.29.29V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l2-2c.18-.18.29-.43.29-.71 0-.56-.45-1.01-1-1.01zM12.7 10h-1.38L9 15.99h1.36l.48-1.33h2.3l.46 1.33H15L12.7 10zm-1.51 3.67l.8-2.2h.02l.77 2.2h-1.59zm3.8-7.17h-4.57l4.45-5.12V0H8.34v1.48h4.1L7.99 6.59v1.39h7V6.5z'];\nvar svgPaths20 = ['M8.01 15c-.28 0-.53.11-.71.29L6 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L2.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3a1.014 1.014 0 001.42 0l3-3c.18-.18.29-.43.29-.71.01-.55-.44-1-.99-1zm4.44-5.65l6.4-7.88V0H10.5v1.67h5.91L10 9.44v1.57h9V9.35h-6.55zm1.27 3.64L11 20h1.59l.56-1.56h2.68l.55 1.56h1.64l-2.68-7.01h-1.62zm-.16 4.3l.93-2.57h.02l.9 2.57h-1.85z'];\nexport var SortAlphabeticalDescIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-alphabetical-desc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 7h3c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0-4h1c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm0 8h5c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm-3 1c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm10 1H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M10 8h5c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0 5h7c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm0-10h3c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1h-3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm9 12h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zM7 14c-.28 0-.53.11-.71.29L5 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 14.3A.965.965 0 001 14a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 14z'];\nexport var SortAscIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-asc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 12c-.28 0-.53.11-.71.29l-.29.3V9c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29A.965.965 0 001 12a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 005 12zm4 1H8c-.55 0-1 .45-1 1s.45 1 1 1h1c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H8c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm-2 4H8c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm4-8H8c-.55 0-1 .45-1 1s.45 1 1 1h7c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M13 15h-3c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm-6-1c-.28 0-.53.11-.71.29L5 15.59V10c0-.55-.45-1-1-1s-1 .45-1 1v5.59L1.71 14.3A.965.965 0 001 14a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29s.53-.11.71-.29l3-3A1.003 1.003 0 007 14zM19 0h-9c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-4 10h-5c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h5c.55 0 1-.45 1-1v-1c0-.55-.45-1-1-1zm2-5h-7c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1h7c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z'];\nexport var SortDescIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-desc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 11.99c-.28 0-.53.11-.71.29l-.29.3V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l2-2A1.003 1.003 0 006 11.99zm7.91-.08c-.06-.36-.17-.68-.33-.96-.16-.28-.37-.51-.64-.69-.27-.17-.61-.26-1.03-.26-.28 0-.54.06-.78.17-.23.11-.43.26-.6.45-.17.19-.3.41-.39.67a2.492 2.492 0 00-.04 1.52 1.623 1.623 0 00.89 1.03c.22.11.45.16.68.16.26 0 .5-.05.7-.15s.38-.26.53-.5l.02.02c-.01.16-.03.34-.07.54-.03.2-.09.4-.17.57-.08.18-.18.33-.31.45s-.29.19-.5.19a.63.63 0 01-.48-.21c-.13-.14-.21-.31-.25-.5H10.1c.03.25.1.48.19.68.1.2.22.37.38.5.16.14.33.24.54.31s.42.1.65.1c.39 0 .72-.09.99-.27.27-.18.49-.41.66-.7.17-.29.29-.61.37-.97.08-.36.12-.72.12-1.07 0-.36-.03-.72-.09-1.08zm-1.14.54c-.04.13-.09.24-.16.34a.78.78 0 01-.27.24c-.11.06-.24.09-.39.09a.75.75 0 01-.37-.09.777.777 0 01-.26-.25c-.07-.1-.12-.22-.15-.35-.03-.13-.05-.26-.05-.4 0-.13.02-.26.05-.39.04-.13.09-.24.16-.34.07-.1.16-.18.26-.24s.22-.09.35-.09c.14 0 .26.03.37.09.11.06.2.14.28.24a1.32 1.32 0 01.23.74c0 .15-.02.28-.05.41zm-1.56-4.47H13V0h-1.42c-.05.3-.16.56-.31.76-.16.21-.35.37-.58.5-.23.13-.49.21-.78.26-.3.05-.6.07-.91.06V2.8h2.21v5.18z'];\nvar svgPaths20 = ['M9 14.99c-.28 0-.53.11-.71.29L7 16.58v-5.59c0-.55-.45-1-1-1s-1 .45-1 1v5.59l-1.29-1.29a.965.965 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-3c.18-.18.29-.43.29-.71a.99.99 0 00-1-1zm8.88.23c-.08-.42-.22-.79-.42-1.12-.2-.33-.47-.6-.8-.8-.33-.2-.76-.3-1.28-.3a2.333 2.333 0 00-1.72.71c-.21.22-.37.48-.49.78-.11.3-.17.62-.17.97 0 .27.04.54.13.8.08.26.22.5.4.7.19.21.43.38.71.5a2.142 2.142 0 001.72.02c.25-.12.47-.31.66-.58l.02.02c-.01.19-.04.4-.08.63-.04.24-.11.46-.21.67-.1.21-.23.38-.39.53a.92.92 0 01-.62.22c-.24 0-.44-.08-.6-.25-.16-.17-.27-.36-.31-.59h-1.31c.04.29.12.56.24.79.12.23.28.43.48.59.19.16.42.28.67.36.25.08.52.12.82.12.49 0 .9-.1 1.23-.31.34-.21.61-.48.82-.82.21-.34.37-.71.47-1.13.1-.42.15-.83.15-1.25 0-.43-.04-.85-.12-1.26zm-1.42.63c-.05.15-.11.28-.2.4-.09.12-.2.21-.34.27s-.3.1-.49.1c-.17 0-.33-.04-.46-.11s-.24-.17-.33-.29c-.08-.12-.15-.25-.19-.4-.04-.15-.06-.31-.06-.47 0-.15.02-.3.07-.45.05-.15.11-.28.2-.39.09-.12.2-.21.33-.28.13-.07.27-.11.44-.11.17 0 .33.04.47.11.14.07.25.17.34.28a1.387 1.387 0 01.28.86c.01.17-.02.33-.06.48zM15.32 11H17V0h-1.25c-.05.34-.17.62-.34.85-.17.23-.39.42-.63.57-.25.15-.52.25-.83.31-.3.06-.62.09-.94.09v1.41h2.31V11z'];\nexport var SortNumericalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-numerical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 11.99c-.28 0-.53.11-.71.29l-.29.3V8.99c0-.55-.45-1-1-1s-1 .45-1 1v3.59l-.29-.29a.982.982 0 00-.71-.3 1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 006 11.99zm7.86-9.45c-.09-.48-.26-.9-.5-1.28S12.8.58 12.4.35C12 .12 11.49 0 10.86 0c-.43 0-.82.07-1.17.22s-.65.35-.9.6-.44.55-.58.89c-.14.34-.2.71-.2 1.11 0 .31.05.61.15.91.1.3.26.57.48.8.23.24.52.43.85.58.33.14.68.21 1.03.21.4 0 .75-.07 1.05-.2.3-.13.57-.35.79-.66l.02.02c-.02.21-.05.45-.1.73-.05.27-.13.53-.25.76-.12.24-.27.44-.47.6-.19.16-.44.25-.75.25a.98.98 0 01-.72-.29c-.19-.18-.31-.4-.37-.66H8.15c.05.34.14.64.29.9.15.26.34.49.57.67.23.18.5.32.8.41.31.1.63.15.98.15.58 0 1.08-.12 1.48-.36.4-.24.73-.55.99-.93.26-.39.44-.82.56-1.29.12-.48.18-.96.18-1.44s-.05-.96-.14-1.44zm-1.71.72c-.05.17-.14.32-.24.46-.11.13-.24.24-.41.31-.16.08-.36.12-.58.12-.21 0-.39-.04-.55-.13-.16-.08-.29-.19-.39-.33-.12-.14-.19-.29-.24-.46-.05-.17-.08-.35-.08-.54 0-.18.03-.35.08-.52.06-.16.14-.31.25-.44.11-.13.24-.24.4-.32.16-.08.33-.12.52-.12.21 0 .4.04.56.12.16.08.3.19.41.32.11.14.2.29.26.46.06.17.09.35.09.52 0 .2-.03.38-.08.55zm-.46 7.31c-.12.15-.26.28-.44.37-.17.09-.37.16-.58.2-.22.04-.44.05-.67.05v.92h1.65v3.88h1.33V10h-1.06c-.03.23-.11.42-.23.57z'];\nvar svgPaths20 = ['M9 15c-.28 0-.53.11-.71.29L7 16.59v-5.58c0-.55-.45-1-1-1s-1 .45-1 1v5.58L3.71 15.3c-.18-.18-.43-.3-.71-.3a1.003 1.003 0 00-.71 1.71l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-3A1.003 1.003 0 009 15zm6.7-1.33a1.5 1.5 0 01-.44.43c-.17.11-.37.19-.58.23-.22.04-.44.06-.67.05v1.07h1.66V20H17v-6.99h-1.06c-.04.26-.12.48-.24.66zm3.15-10.3c-.11-.68-.29-1.26-.55-1.76-.26-.5-.62-.89-1.08-1.18C16.75.14 16.17 0 15.46 0c-.54 0-1.03.09-1.46.27-.43.18-.79.44-1.09.76-.3.33-.52.71-.67 1.15-.16.44-.24.92-.24 1.43 0 .54.08 1.04.23 1.47.15.44.37.81.65 1.12.28.31.61.55 1 .72.39.17.82.26 1.3.26.46 0 .88-.11 1.26-.33.38-.22.68-.53.9-.94l.03.03c-.03.35-.07.74-.12 1.16-.05.42-.15.81-.29 1.18-.14.37-.35.68-.61.92-.26.25-.62.37-1.06.37-.43 0-.77-.13-1.03-.4-.25-.27-.4-.62-.44-1.05h-1.64c.02.43.11.83.29 1.18.17.35.39.66.67.91a3.027 3.027 0 002.07.8c.71 0 1.3-.17 1.79-.5.48-.33.87-.76 1.17-1.29.3-.53.51-1.12.64-1.76.13-.64.19-1.28.19-1.92.01-.77-.05-1.49-.15-2.17zM17.1 4.44c-.08.27-.19.5-.34.71-.15.21-.34.37-.57.49-.23.12-.5.18-.8.18-.3 0-.56-.06-.78-.19-.22-.13-.4-.29-.55-.49-.14-.2-.25-.44-.32-.7-.07-.27-.11-.55-.11-.84 0-.28.04-.55.11-.82.07-.26.18-.49.32-.7.14-.2.33-.36.55-.48.22-.12.48-.17.78-.17.31 0 .57.06.8.18.23.12.42.28.57.48.15.2.26.43.34.69.08.26.11.53.11.82 0 .29-.04.57-.11.84z'];\nexport var SortNumericalDescIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"sort-numerical-desc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l.3.29H9V2h3v1.71c.31-.13.64-.21 1-.21s.69.08 1 .21V1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2.71c.31-.13.64-.21 1-.21s.69.08 1 .21V2h3v5H3.41l.29-.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-2 2C.11 7.47 0 7.72 0 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 9H7v5H4v-1.71c-.31.13-.64.21-1 .21s-.69-.08-1-.21V15c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-2.71c-.31.13-.64.21-1 .21s-.69-.08-1-.21V14H9V9h3.59l-.29.29c-.19.18-.3.43-.3.71z'];\nvar svgPaths20 = ['M15 13a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-3-3a1.003 1.003 0 00-1.42 1.42L16.59 9H11V2h5v2c.77 0 1.47.3 2 .78V1c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v3.78C2.53 4.3 3.23 4 4 4V2h5v7H3.41L4.7 7.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 9.47 0 9.72 0 10c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 11H9v7H4v-2c-.77 0-1.47-.3-2-.78V19c0 .55.45 1 1 1h14c.55 0 1-.45 1-1v-3.78c-.53.48-1.23.78-2 .78v2h-5v-7h5.59l-1.29 1.29c-.19.18-.3.43-.3.71z'];\nexport var SplitColumnsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"split-columns\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 0H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H2V2h12v12z'];\nvar svgPaths20 = ['M19 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H2V2h16v16z'];\nexport var SquareIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"square\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v3h3V2zm3 10h1c.55 0 1-.45 1-1V8h-3v3c0 .55.45 1 1 1zm2-7c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v2h3V5zm-5 1H7v3h3V6zM5 7c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v1h3V7zm3 5h1c.55 0 1-.45 1-1v-1H7v1c0 .55.45 1 1 1zm7 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h1c.55 0 1-.45 1-1V9H2v2c0 .55.45 1 1 1z'];\nvar svgPaths20 = ['M12 2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v4h4V2zm3 14h2c.55 0 1-.45 1-1v-5h-4v5c0 .55.45 1 1 1zm3-10c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h4V6zm-6 1H8v5h4V7zm-9 9h2c.55 0 1-.45 1-1v-3H2v3c0 .55.45 1 1 1zm16 1H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM6 9c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v2h4V9zm3 7h2c.55 0 1-.45 1-1v-2H8v2c0 .55.45 1 1 1z'];\nexport var StackedChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"stacked-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0l2.5 5.3 5.5.8-4 4.1.9 5.8L8 13.3 3.1 16l.9-5.8-4-4.1 5.5-.8z'];\nvar svgPaths20 = ['M10 0l3.1 6.6 6.9 1-5 5.1 1.2 7.3-6.2-3.4L3.8 20 5 12.7 0 7.6l6.9-1z'];\nexport var StarIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"star\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M16 6.11l-5.53-.84L8 0 5.53 5.27 0 6.11l4 4.1L3.06 16 8 13.27 12.94 16 12 10.21l4-4.1zM4.91 13.2l.59-3.62L3 7.02l3.45-.53L8 3.2l1.55 3.29 3.45.53-2.5 2.56.59 3.62L8 11.49 4.91 13.2z'];\nvar svgPaths20 = ['M20 7.6l-6.9-1.1L10 0 6.9 6.6 0 7.6l5 5.1L3.8 20l6.2-3.4 6.2 3.4-1.2-7.2 5-5.2zM10 15l-4.5 2.4.9-5.2-3.6-3.6 5-.8L10 3.1l2.2 4.7 5 .8-3.6 3.7.9 5.2L10 15z'];\nexport var StarEmptyIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"star-empty\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 3c-.24 0-.44.09-.62.23l-.01-.01L7 6.72V4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V9.28l4.38 3.5.01-.01c.17.14.37.23.61.23.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M15 3c-.23 0-.42.09-.59.21l-.01-.01L8 8V4c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-4l6.4 4.8.01-.01c.17.12.36.21.59.21.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var StepBackwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"step-backward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12H2v-2h3c.55 0 1-.45 1-1V7h2v1c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V5h1c.55 0 1-.45 1-1s-.45-1-1-1h-2c-.55 0-1 .45-1 1v3h-2V6c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1v2H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16H2v-3h4c.55 0 1-.45 1-1V8h3v2c0 .55.45 1 1 1h5c.55 0 1-.45 1-1V6h2c.55 0 1-.45 1-1s-.45-1-1-1h-3c-.55 0-1 .45-1 1v4h-3V7c0-.55-.45-1-1-1H6c-.55 0-1 .45-1 1v4H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var StepChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"step-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 3h-1c-.55 0-1 .45-1 1v2.72l-4.38-3.5v.01A.987.987 0 005 3c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1 .24 0 .44-.09.62-.23l.01.01L10 9.28V12c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M15 3h-2c-.55 0-1 .45-1 1v4L5.6 3.2l-.01.01C5.42 3.09 5.23 3 5 3c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01L12 12v4c0 .55.45 1 1 1h2c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var StepForwardIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"step-forward\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 3H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M16 3H4c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var StopIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"stop\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 2v1.083A6.002 6.002 0 018 15 6 6 0 017 3.083V2H6a1 1 0 110-2h4a1 1 0 010 2H9zM8 5a4 4 0 104 4H8V5z'];\nvar svgPaths20 = ['M10 6a6 6 0 106 6h-6V6zm-.998-1.938A1.015 1.015 0 019 4V2H7a1 1 0 110-2h6a1 1 0 010 2h-2v2c0 .02 0 .041-.002.062A8.001 8.001 0 0110 20a8 8 0 01-.998-15.938z'];\nexport var StopwatchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"stopwatch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 7H8.65c-.38-.09-.73-.18-1.04-.26-.31-.08-.49-.13-.54-.14-.43-.11-.79-.29-1.05-.52-.27-.23-.4-.55-.4-.95 0-.29.07-.53.21-.72s.32-.34.54-.46c.22-.11.46-.19.72-.24.26-.05.52-.07.77-.07.74 0 1.36.15 1.84.46.32.2.55.5.68.9h2.22c-.06-.33-.17-.64-.32-.92-.25-.45-.59-.84-1.02-1.15-.43-.31-.93-.54-1.49-.7S8.59 2 7.95 2c-.55 0-1.1.07-1.63.2-.54.13-1.02.34-1.45.62-.42.28-.76.63-1.02 1.05-.26.42-.39.92-.39 1.5 0 .3.04.59.13.88.08.26.21.51.39.75H2c-.55 0-1 .45-1 1s.45 1 1 1h7.13c.25.07.49.14.71.22.25.09.48.23.7.44.21.21.32.53.32.97 0 .21-.05.43-.14.63-.09.21-.24.39-.45.55-.21.16-.48.29-.81.39-.33.1-.73.15-1.2.15-.44 0-.84-.05-1.21-.14-.37-.09-.7-.24-.99-.43-.29-.2-.51-.45-.67-.76-.01 0-.01-.01-.02-.02H3.14a3.68 3.68 0 001.39 2.03c.46.34 1 .58 1.62.74.61.15 1.27.23 1.97.23.61 0 1.2-.07 1.79-.2.58-.13 1.11-.34 1.56-.63.46-.29.83-.66 1.11-1.11.28-.45.42-1 .42-1.64 0-.3-.05-.6-.15-.9-.05-.19-.13-.36-.22-.52H14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M18 9h-4.46a4.7 4.7 0 00-.4-.14c-.19-.05-.51-.14-.96-.25-.45-.11-.9-.23-1.37-.35-.47-.12-.89-.23-1.27-.33s-.6-.16-.65-.17c-.53-.15-.95-.37-1.27-.66-.32-.28-.49-.68-.49-1.19 0-.36.09-.66.26-.9s.39-.43.65-.57c.26-.14.55-.24.87-.3s.63-.09.93-.09c.89 0 1.63.19 2.21.57.45.3.75.76.89 1.38h2.63c-.06-.52-.2-.98-.42-1.4-.3-.57-.71-1.05-1.23-1.43a5.33 5.33 0 00-1.79-.87c-.7-.2-1.42-.3-2.19-.3-.66 0-1.31.08-1.96.25s-1.22.43-1.73.77-.92.79-1.23 1.32c-.31.52-.46 1.15-.46 1.87 0 .37.05.74.15 1.1.1.36.28.7.53 1.02.18.24.41.47.69.67H2c-.55 0-1 .45-1 1s.45 1 1 1h10.14c.02.01.05.02.07.02.3.11.58.29.84.55.25.26.38.67.38 1.21 0 .27-.06.53-.17.79-.11.26-.29.49-.54.69-.25.2-.57.36-.97.49s-.88.19-1.44.19c-.52 0-1.01-.06-1.45-.17-.45-.11-.84-.29-1.19-.54s-.61-.56-.8-.95c-.05-.08-.09-.18-.12-.28H4.11c.09.43.22.82.4 1.18.33.65.77 1.18 1.32 1.59.55.41 1.2.72 1.94.92.74.2 1.53.3 2.37.3.73 0 1.44-.08 2.14-.25.7-.17 1.33-.43 1.88-.79.55-.36.99-.83 1.33-1.39.34-.56.51-1.25.51-2.05 0-.37-.06-.75-.18-1.12a3.12 3.12 0 00-.15-.39H18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var StrikethroughIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"strikethrough\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 14H2V2h8.76l2-2H1C.45 0 0 .45 0 1v14c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V6.24l-2 2V14zm1.4-14L9.7 5.7l2.1 2.1L16 3.6V0h-.6zM4 11.92c2.33.15 4.42.15 6.15-1.5.82-.83.82-2.25 0-3.08-.45-.38-.98-.6-1.5-.6-.53 0-1.05.22-1.43.6-.82.91-1.27 3.38-3.22 4.58z'];\nvar svgPaths20 = ['M18 18H2V2h12.3l2-2H1C.4 0 0 .4 0 1v18c0 .6.4 1 1 1h18c.6 0 1-.4 1-1V7.7l-2 2V18zm1.2-18l-7.6 7.6 2.8 2.8L20 4.8V0h-.8zM4 15.9c3.1.2 5.9.2 8.2-2 1.1-1.1 1.1-3 0-4.1-.6-.5-1.3-.8-2-.8s-1.4.3-1.9.8C7.2 11 6.6 14.3 4 15.9z'];\nexport var StyleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"style\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M0 7.02L.05 7H0v.02zm2-2.03h9.57l-1.29 1.29A1.003 1.003 0 0011.7 7.7l2.99-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2.99-3a1.07 1.07 0 00-.71-.28 1.003 1.003 0 00-.71 1.71L11.57 3H2c-.55 0-1 .45-1 1a1 1 0 001 .99zM15.96 9H16v-.02l-.04.02zM14 11.01H4.43l1.29-1.29A1.003 1.003 0 004.3 8.3l-2.99 3a.99.99 0 00-.29.7c0 .28.11.53.29.71l2.99 3a1.003 1.003 0 001.42-1.42L4.43 13H14c.55 0 1-.45 1-1s-.45-.99-1-.99z'];\nvar svgPaths20 = ['M16.02 10c-.01 0-.01 0 0 0H16h.02zM2 6h13.58l-2.29 2.29a1 1 0 00-.3.71 1.003 1.003 0 001.71.71l4-4c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-4-4a1.003 1.003 0 00-1.42 1.42L15.58 4H2c-.55 0-1 .45-1 1s.45 1 1 1zm2 4h-.02H4zm14 4H4.42l2.29-2.29a1 1 0 00.3-.71 1.003 1.003 0 00-1.71-.71l-4 4c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L4.42 16H18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var SwapHorizontalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"swap-horizontal\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 0h-.02L9 .04V0zM7 16h.02L7 15.95V16zM4.7 1.31c-.18-.18-.43-.29-.7-.29s-.53.11-.71.29l-3 2.99a1.003 1.003 0 001.42 1.42L3 4.43V14c0 .55.45 1 1 1s1-.45 1-1V4.43l1.29 1.29c.18.18.43.29.7.29A1.003 1.003 0 007.7 4.3l-3-2.99zM15 9.99c-.28 0-.53.11-.71.29L13 11.57V2c0-.55-.45-1-1-1s-1 .45-1 1v9.57l-1.29-1.29a.99.99 0 00-.7-.29 1.003 1.003 0 00-.71 1.71l3 2.99c.18.18.43.29.71.29.28 0 .53-.11.71-.29l3-2.99c.18-.18.29-.43.29-.71-.01-.55-.46-1-1.01-1z'];\nvar svgPaths20 = ['M9.71 5.3l-4-4A.997.997 0 005 1.01c-.28 0-.53.11-.71.29l-4 4a1.003 1.003 0 001.42 1.42L4 4.42V18c0 .55.45 1 1 1s1-.45 1-1V4.42l2.29 2.29a1 1 0 00.71.3 1.003 1.003 0 00.71-1.71zM10 3.98c0 .01 0 .01 0 0V4v-.02zm0 12.04c0-.01 0-.01 0 0V16v.02zm9-3.03c-.28 0-.53.11-.71.29L16 15.58V2c0-.55-.45-1-1-1s-1 .45-1 1v13.58l-2.29-2.29a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29.28 0 .53-.11.71-.29l4-4c.18-.18.29-.43.29-.71 0-.56-.45-1.01-1-1.01z'];\nexport var SwapVerticalIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"swap-vertical\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 3.01a5 5 0 100 10 5 5 0 100-10z'];\nvar svgPaths20 = ['M10 4.01a6 6 0 100 12 6 6 0 100-12z'];\nexport var SymbolCircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 6.01h-2v-2c0-.55-.45-1-1-1H7c-.55 0-1 .45-1 1v2H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h2v2c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-2h2c.55 0 1-.45 1-1v-2c0-.56-.45-1-1-1z'];\nvar svgPaths20 = ['M15 8.01h-3v-3c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v3H5c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1h3v3c0 .55.45 1 1 1h2c.55 0 1-.45 1-1v-3h3c.55 0 1-.45 1-1v-2c0-.56-.45-1-1-1z'];\nexport var SymbolCrossIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-cross\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 8.01c0-.19-.07-.36-.16-.51l.01-.01-3-5-.01.01c-.17-.29-.48-.49-.84-.49s-.67.2-.84.49l-.02-.01-3 5 .02.01c-.09.15-.16.32-.16.51s.07.36.16.51h-.02l3 5 .01-.01c.18.29.49.5.85.5s.67-.2.84-.49l.01.01 3-5-.01-.01c.09-.16.16-.32.16-.51z'];\nvar svgPaths20 = ['M15 10.01c0-.21-.08-.39-.18-.54l.02-.01-4-6-.02.01c-.18-.28-.47-.46-.82-.46s-.64.18-.82.45l-.01-.01-4 6 .02.01c-.11.16-.19.34-.19.55s.08.39.18.54l-.02.01 4 6 .02-.01c.18.27.47.46.82.46s.64-.19.82-.46l.02.01 4-6-.02-.01c.1-.16.18-.34.18-.54z'];\nexport var SymbolDiamondIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-diamond\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 3.01H4c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h8c.55 0 1-.45 1-1v-8c0-.56-.45-1-1-1z'];\nvar svgPaths20 = ['M15 4.01H5c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10c0-.56-.45-1-1-1z'];\nexport var SymbolSquareIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-square\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 4.01c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 .16.05.31.11.44H3.1l4 8h.01c.16.33.49.56.89.56s.72-.23.89-.56h.01l4-8h-.01c.06-.14.11-.28.11-.44z'];\nvar svgPaths20 = ['M16 5c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1 0 .16.05.31.11.44H4.1l5 10h.01c.17.33.5.56.89.56s.72-.23.89-.56h.01l5-10h-.01c.06-.13.11-.28.11-.44z'];\nexport var SymbolTriangleDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-triangle-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.89 11.56l-3.99-8h-.01c-.17-.32-.5-.55-.89-.55s-.72.23-.89.55H7.1l-4 8h.01c-.06.14-.11.29-.11.45 0 .55.45 1 1 1h8c.55 0 1-.45 1-1 0-.16-.05-.31-.11-.45z'];\nvar svgPaths20 = ['M15.89 14.56l-4.99-10h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56H9.1l-5 10h.01c-.06.13-.11.28-.11.44 0 .55.45 1 1 1h10c.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44z'];\nexport var SymbolTriangleUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"symbol-triangle-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 3a2 2 0 012-2h4.584a2 2 0 011.414.586l5.413 5.412a2 2 0 010 2.829L9.827 14.41a2 2 0 01-2.829 0L1.586 8.998A2 2 0 011 7.584V3zm3.487-.007a1.494 1.494 0 100 2.988 1.494 1.494 0 000-2.988z'];\nvar svgPaths20 = ['M2 4a2 2 0 012-2h4.588a2 2 0 011.414.586l7.41 7.41a2 2 0 010 2.828l-4.588 4.588a2 2 0 01-2.829 0l-7.41-7.41A2 2 0 012 8.588V4zm3.489-.006a1.495 1.495 0 100 2.99 1.495 1.495 0 000-2.99z'];\nexport var TagIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tag\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 11a1.003 1.003 0 001.71.71l4-4a1.003 1.003 0 00-1.42-1.42l-4 4c-.18.18-.29.43-.29.71zM4 6c.28 0 .53-.11.71-.29l4-4A1.003 1.003 0 007.29.29l-4 4A1.003 1.003 0 004 6zm4 4l5-5-.79-.79.5-.5a1.003 1.003 0 00-1.42-1.42l-.5.5L10 2 5 7l.79.79-5.5 5.5a1.003 1.003 0 001.42 1.42l5.5-5.5L8 10zm7 4H7c-.55 0-1 .45-1 1s.45 1 1 1h8c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M5 7c.28 0 .53-.11.71-.29l5-5A1.003 1.003 0 009.29.29l-5 5A1.003 1.003 0 005 7zm6 6a1.003 1.003 0 001.71.71l5-5a1.003 1.003 0 00-1.42-1.42l-5 5c-.18.18-.29.43-.29.71zm8 5h-1c0-.55-.45-1-1-1h-7c-.55 0-1 .45-1 1H8c-.55 0-1 .45-1 1s.45 1 1 1h11c.55 0 1-.45 1-1s-.45-1-1-1zm-9-6l6-6-1.29-1.29a1.003 1.003 0 00-1.42-1.42L12 2 6 8l1.29 1.29-7 7a1.003 1.003 0 001.42 1.42l7-7L10 12z'];\nexport var TakeActionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"take-action\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.12 6.63h-.38L15 7c-.01.3-.01.64 0 .98V8c0 .07-.03.13-.04.19h.02L14 13.1v.9c0 .55-.45 1-1 1s-1-.45-1-1v-1H4v1c0 .55-.45 1-1 1s-1-.45-1-1v-.9l-.98-4.9h.02C1.03 8.13 1 8.07 1 8H.99c0-.33 0-.67.01-1l.26-.37H.88C.4 6.63 0 6.21 0 5.69s.4-.94.88-.94h1.05l.77-2.11c.19-.53.76-1.08 1.26-1.24 0 0 .68-.2 2.05-.32C6.01 1.05 6 1.03 6 1c0-.55.45-1 1-1h2c.55 0 1 .45 1 1 0 .03-.01.05-.02.08 1.37.12 2.05.32 2.05.32.51.15 1.08.71 1.27 1.24l.76 2.12h1.05c.49 0 .89.42.89.93 0 .52-.4.94-.88.94zM11 10h2V8h-2v2zm-8 0h2V8H3v2zm10-5l-.73-1.63C12.21 3.19 12.18 3 12 3H4c-.18 0-.21.19-.27.37L3 5c-.06.18-.18 1 0 1h10c.18 0 .06-.82 0-1z'];\nvar svgPaths20 = ['M19 9h-.33l.33 1v.5c0 .15-.03.3-.07.44h.01L17 17.23v.27c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5V17H6v.5c0 .83-.67 1.5-1.5 1.5S3 18.33 3 17.5v-.27l-1.93-6.28h.01c-.05-.15-.08-.3-.08-.45V10s.02-.06.05-.16c.06-.17.16-.47.28-.84H1c-.55 0-1-.45-1-1s.45-1 1-1h1l1-3h-.01v-.01c.25-.64 1-1.31 1.67-1.5 0 0 .78-.21 2.33-.36V1c0-.55.45-1 1-1h4c.55 0 1 .45 1 1v1.13c1.55.14 2.33.36 2.33.36.67.19 1.42.86 1.67 1.5V4H17l1 3h1c.55 0 1 .45 1 1s-.45 1-1 1zM3 11.5c0 .83.67 1.5 1.5 1.5S6 12.33 6 11.5 5.33 10 4.5 10 3 10.67 3 11.5zM16 7l-1-3H5L4 7v1h12V7zm-.5 3c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z'];\nexport var TaxiIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"taxi\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 10H2V6h7V4H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h8v-2zm4 3h-1V3h1c.55 0 1-.45 1-1s-.45-1-1-1h-1c-.37 0-.7.11-1 .28-.3-.17-.63-.28-1-.28H9c-.55 0-1 .45-1 1s.45 1 1 1h1v10H9c-.55 0-1 .45-1 1s.45 1 1 1h1c.37 0 .7-.11 1-.28.3.17.63.28 1 .28h1c.55 0 1-.45 1-1s-.45-1-1-1zm2-9h-2v2h1v4h-1v2h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M16 17c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1s1-.45 1-1-.45-1-1-1c-.77 0-1.47.3-2 .78-.53-.48-1.23-.78-2-.78-.55 0-1 .45-1 1s.45 1 1 1 1 .45 1 1v12c0 .55-.45 1-1 1s-1 .45-1 1 .45 1 1 1c.77 0 1.47-.3 2-.78.53.48 1.23.78 2 .78.55 0 1-.45 1-1s-.45-1-1-1zm-4-4H2V7h10V5H1c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h11v-2zm7-8h-3v2h2v6h-2v2h3c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1z'];\nexport var TextHighlightIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"text-highlight\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zM6 13H2v-2h4v2zm0-3H2V8h4v2zm0-3H2V5h4v2zm8 6H7v-2h7v2zm0-3H7V8h7v2zm0-3H7V5h7v2z'];\nvar svgPaths20 = ['M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zM7 17H2v-3h5v3zm0-4H2v-3h5v3zm0-4H2V6h5v3zm11 8H8v-3h10v3zm0-4H8v-3h10v3zm0-4H8V6h10v3z'];\nexport var ThIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"th\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5.6 10l-.3.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l2-2c.2-.2.3-.4.3-.7s-.1-.5-.3-.7l-2-2C6.5 6.1 6.3 6 6 6c-.5 0-1 .4-1 1 0 .3.1.5.3.7l.3.3H1c-.6 0-1 .4-1 1s.4 1 1 1h4.6zM15 1H2c-.5 0-1 .5-1 1v5h2V5h11v2H8.8l.6.6c.1.1.2.3.3.4H14v2H9.7c-.1.1-.2.3-.3.4l-.6.6H14v2H3v-2H1v3c0 .5.5 1 1 1h13c.6 0 1-.5 1-1V2c0-.5-.4-1-1-1z'];\nvar svgPaths20 = ['M5.3 13.3c-.2.2-.3.4-.3.7 0 .6.4 1 1 1 .3 0 .5-.1.7-.3l3-3c.2-.2.3-.4.3-.7s-.1-.5-.3-.7l-3-3C6.5 7.1 6.3 7 6 7c-.6 0-1 .4-1 1 0 .3.1.5.3.7L6.6 10H1c-.6 0-1 .4-1 1s.4 1 1 1h5.6l-1.3 1.3zM19 1H3c-.5 0-1 .5-1 1v6h1c0-1.7 1.3-3 3-3 .8 0 1.6.3 2.1.9l.1.1H9v.8l1 1V6h8v3h-6.8c.3.3.5.6.6 1H18v3h-6.8l-.1.1-.9.9H18v3h-8v-2.8l-1 1V17H4v-.8c-.6-.5-1-1.3-1-2.2H2v4c0 .5.5 1 1 1h16c.6 0 1-.5 1-1V2c0-.5-.5-1-1-1z'];\nexport var ThDerivedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"th-derived\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12 1h3c.6 0 1 .5 1 1v12c0 .6-.4 1-1 1h-4.97l.286-2H14v-2h-3.398l.143-1H14V8h-2.97l.143-1H14V5h-2.541l.51-3.576C11.99 1.282 12 1.14 12 1zM5.97 1l-.572 4H2v2h3.112L4.97 8H2v2h2.684l-.143 1H2v2h2.255l-.225 1.576c-.02.142-.03.284-.03.424H1c-.6 0-1-.4-1-1V2c0-.5.4-1 1-1h4.97zM8.01.859a1 1 0 111.98.282l-2 14a1 1 0 11-1.98-.282l2-14z'];\nvar svgPaths20 = ['M14.25 1H19c.5 0 1 .5 1 1v16c0 .5-.5 1-1 1h-7.221l.278-2H18v-3h-5.527l.14-1H18v-3h-4.971l.139-1H18V6h-4.416l.637-4.587c.02-.139.03-.277.03-.413zM8.221 1l-.694 5H2v3h5.11l-.139 1H2v3h4.555l-.14 1H2v3h3.999l-.22 1.587c-.02.139-.03.277-.03.413H1c-.6 0-1-.5-1-1V2c0-.5.4-1 1-1h7.221zM10.26.862a1 1 0 011.98.276l-2.5 18a1 1 0 01-1.98-.276l2.5-18z'];\nexport var ThDisconnectIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"th-disconnect\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10 10h3l1.78-2.226a1 1 0 00.22-.625V4.3l1-.9V14c0 .6-.4 1-1 1H1c-.6 0-1-.4-1-1V2c0-.5.4-1 1-1h4.333L9 4.3V5H7v2h2v1H7v2h3zm-4 3v-2H2v2h4zm0-3V8H2v2h4zm0-3V5H2v2h4zm8 6v-2H7v2h7z', 'M15.48 0c.31 0 .52.26.52.57 0 .16-.06.3-.17.41l-2.86 2.73v2.63c0 .16-.06.3-.17.41l-.82 1.1c-.1.1-.25.17-.41.17-.31 0-.57-.26-.57-.57V3.71L8.17.98A.566.566 0 018 .57c0-.31.26-.57.57-.57h6.91z'];\nvar svgPaths20 = ['M17.333 10l1.435-1.722a1 1 0 00.232-.64V4.85l1-.9V18c0 .5-.5 1-1 1H1c-.6 0-1-.5-1-1V2c0-.5.4-1 1-1h6.722L12 4.85V6H8v3h4v1H8v3h10v-3h-.667zM7 17v-3H2v3h5zm0-4v-3H2v3h5zm0-4V6H2v3h5zm11 8v-3H8v3h10z', 'M19.35 0a.642.642 0 01.46 1.1l-3.03 3.03v2.95c0 .18-.07.34-.19.46l-1.28 1.29c-.11.1-.27.17-.45.17-.35 0-.64-.29-.64-.64V4.13L11.19 1.1a.642.642 0 01.45-1.1h7.71z'];\nexport var ThFilteredIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"th-filtered\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 1H1c-.6 0-1 .5-1 1v12c0 .6.4 1 1 1h14c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1zm-1 12H2v-2h12v2zm0-3H2V8h12v2zm0-3H2V5h12v2z'];\nvar svgPaths20 = ['M19 1H1c-.6 0-1 .5-1 1v16c0 .5.4 1 1 1h18c.5 0 1-.5 1-1V2c0-.5-.5-1-1-1zm-1 16H2v-3h16v3zm0-4H2v-3h16v3zm0-4H2V6h16v3z'];\nexport var ThListIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"th-list\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M2 2H0v7h2c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm13.99 4.38c.08-.58-.44-1.02-1.15-1.05-.25-.01-.52-.03-.81-.05.02 0 .05-.01.07-.01.7-.1 1.34-.49 1.41-1.07.06-.58-.46-.97-1.17-1.04-.25-.02-.52-.04-.79-.06.47-.15.84-.42.87-.93.04-.58-.79-1.03-1.5-1.09-.27-.02-.51-.04-.73-.05h-.09c-.23-.02-.43-.02-.62-.03C8.35.95 5.66 1.47 4 2.51v6c2.14 1.29 4.76 3.59 4.21 5.51-.18.59.31 1.05.98.98.81-.09 1.37-.91 1.4-1.78.04-1-.15-2.01-.5-2.91-.04-.25.01-.5.37-.53.49-.03 1.11-.06 1.59-.08.26 0 .51-.01.75-.02h.01c.41-.02.8-.05 1.13-.09.7-.09 1.35-.47 1.43-1.05.08-.58-.44-.97-1.15-1.05-.05-.01-.11-.01-.16-.02.17-.01.33-.03.49-.05.72-.08 1.37-.46 1.44-1.04z'];\nvar svgPaths20 = ['M18.55 6.56c-.31-.01-.65-.03-1.02-.06.03 0 .06-.01.09-.01.88-.12 1.68-.63 1.76-1.37.08-.75-.58-1.25-1.46-1.33-.32-.03-.65-.05-.99-.08.59-.19 1.05-.54 1.09-1.2.05-.75-.99-1.32-1.87-1.41-.34-.03-.64-.05-.91-.07h-.11c-.28-.02-.54-.02-.77-.02-3.92-.08-7.29.6-9.36 1.93v7.72c2.67 1.66 5.95 4.61 5.26 7.08-.21.76.39 1.35 1.23 1.26 1.01-.11 1.71-1.18 1.75-2.28.05-1.29-.19-2.59-.62-3.74-.05-.32.01-.65.47-.68.61-.04 1.39-.08 1.99-.1.32 0 .64-.01.94-.03h.01c.52-.03 1-.07 1.42-.12.88-.11 1.69-.6 1.79-1.35.1-.75-.55-1.25-1.44-1.35-.07-.01-.13-.02-.2-.02.21-.02.42-.04.61-.06.88-.11 1.69-.6 1.79-1.35.09-.75-.56-1.31-1.45-1.36zM3 3H0v8h3c.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var ThumbsDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"thumbs-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.99 9.62c-.08-.58-.73-.96-1.43-1.05-.15-.02-.32-.04-.49-.05.06-.01.11-.01.16-.02.71-.08 1.23-.47 1.15-1.05-.08-.58-.73-.96-1.43-1.05-.34-.04-.72-.07-1.13-.09h-.01c-.24-.01-.49-.02-.75-.02-.48-.02-1.11-.04-1.59-.08-.36-.03-.41-.28-.37-.53.35-.9.54-1.91.5-2.91-.04-.85-.6-1.68-1.41-1.77-.67-.07-1.16.39-.99.98C8.76 3.91 6.13 6.2 4 7.49v6c1.66 1.03 4.35 1.56 7.48 1.5.19 0 .39-.01.62-.02h.09c.22-.01.46-.03.73-.05.71-.06 1.54-.51 1.5-1.09-.03-.51-.4-.79-.87-.93.27-.02.54-.04.79-.06.71-.06 1.24-.45 1.17-1.04-.06-.58-.7-.97-1.41-1.07-.02 0-.05-.01-.07-.01.29-.02.57-.03.81-.05.71-.03 1.23-.47 1.15-1.05zM2 7H0v7h2c.55 0 1-.45 1-1V8c0-.56-.45-1-1-1z'];\nvar svgPaths20 = ['M3 9H0v8h3c.55 0 1-.45 1-1v-6c0-.55-.45-1-1-1zm16.99 3.09c-.1-.75-.91-1.24-1.79-1.35-.19-.02-.4-.05-.61-.06.07-.01.14-.01.2-.02.88-.1 1.53-.61 1.44-1.35-.1-.74-.91-1.24-1.79-1.35-.42-.05-.9-.09-1.42-.12h-.01l-.94-.03c-.6-.02-1.39-.05-1.99-.1-.45-.03-.51-.36-.47-.68.43-1.15.67-2.45.62-3.74-.04-1.11-.74-2.17-1.75-2.28-.84-.09-1.45.5-1.23 1.26.7 2.47-2.58 5.43-5.25 7.08v7.72c2.08 1.33 5.44 2.01 9.35 1.93.24 0 .49-.01.77-.02h.11c.27-.02.57-.04.91-.07.88-.08 1.92-.66 1.87-1.41-.04-.65-.5-1.01-1.09-1.2.34-.03.67-.05.99-.08.89-.08 1.55-.58 1.46-1.33-.08-.75-.88-1.25-1.76-1.37-.03 0-.06-.01-.09-.01.37-.02.71-.04 1.02-.06.91-.05 1.55-.61 1.45-1.36z'];\nexport var ThumbsUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"thumbs-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 3c-.28 0-.53.11-.71.29L6 10.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42l4 4c.18.18.43.29.71.29s.53-.11.71-.29l8-8A1.003 1.003 0 0014 3z'];\nvar svgPaths20 = ['M17 4c-.28 0-.53.11-.71.29L7 13.59 3.71 10.3A.965.965 0 003 10a1.003 1.003 0 00-.71 1.71l4 4c.18.18.43.29.71.29s.53-.11.71-.29l10-10A1.003 1.003 0 0017 4z'];\nexport var TickIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tick\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 16c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4-11c-.28 0-.53.11-.71.29L7 9.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29s.53-.11.71-.29l5-5A1.003 1.003 0 0012 5z'];\nvar svgPaths20 = ['M10 20C4.48 20 0 15.52 0 10S4.48 0 10 0s10 4.48 10 10-4.48 10-10 10zm5-14c-.28 0-.53.11-.71.29L8 12.59l-2.29-2.3a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l7-7A1.003 1.003 0 0015 6z'];\nexport var TickCircleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tick-circle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm1-6.41V4c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L9 7.59z'];\nvar svgPaths20 = ['M11 9.59V4c0-.55-.45-1-1-1s-1 .45-1 1v6c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L11 9.59zM10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z'];\nexport var TimeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"time\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 2.59L9.91 7.68 6.6 5.2l-.01.01C6.42 5.09 6.23 5 6 5c-.24 0-.44.09-.62.23v-.01L3 7.12V11h12V2.59zM15 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zm0-13.41l-7.07 7.07-4.3-3.44-.01.01A.987.987 0 007 6c-.24 0-.46.1-.63.24l-.01-.01L3 9.03V15h16V2.59z'];\nexport var TimelineAreaChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"timeline-area-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 12h1c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H8c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1zm5 0h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1zm2 1H2c-.55 0-1 .45-1 1s.45 1 1 1h13c.55 0 1-.45 1-1s-.45-1-1-1zM3 12h1c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1z'];\nvar svgPaths20 = ['M19 17H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1zM9 16h2c.55 0 1-.45 1-1V2c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1v13c0 .55.45 1 1 1zm6 0h2c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1zM3 16h2c.55 0 1-.45 1-1V9c0-.55-.45-1-1-1H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1z'];\nexport var TimelineBarChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"timeline-bar-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 11H7v1h1v-1zm-4 0H3v1h1v-1zm7-8c.6 0 1-.5 1-1V1c0-.5-.4-1-1-1s-1 .5-1 1v1c0 .5.5 1 1 1zM4 3c.5 0 1-.5 1-1V1c0-.5-.5-1-1-1S3 .5 3 1v1c0 .5.5 1 1 1zm10-2h-1v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H6v1c0 1.1-.9 2-2 2s-2-.9-2-2V1H1c-.5 0-1 .5-1 1v12c0 .5.5 1 1 1h13c.6 0 1-.5 1-1V2c0-.5-.4-1-1-1zM5 13H2v-3h3v3zm0-4H2V6h3v3zm4 4H6v-3h3v3zm0-4H6V6h3v3zm4 4h-3v-3h3v3zm0-4h-3V6h3v3zm-1-2h-1v1h1V7z'];\nvar svgPaths20 = ['M5 5c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm10 0c.6 0 1-.4 1-1V2c0-.5-.4-1-1-1s-1 .5-1 1v2c0 .6.4 1 1 1zm-9 9H4v2h2v-2zM17 3v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H7v1c0 1.1-.9 2-2 2s-2-.9-2-2V3H2c-.5 0-1 .5-1 1v14c0 .5.5 1 1 1h16c.5 0 1-.5 1-1V4c0-.5-.5-1-1-1h-1zM7 17H3v-4h4v4zm0-5H3V8h4v4zm5 5H8v-4h4v4zm0-5H8V8h4v4zm5 5h-4v-4h4v4zm0-5h-4V8h4v4zm-6 2H9v2h2v-2zm5-5h-2v2h2V9z'];\nexport var TimelineEventsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"timeline-events\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 12H2V9.41l3-3L8.29 9.7c.18.19.43.3.71.3s.53-.11.71-.29l6-6a1.003 1.003 0 00-1.42-1.42L9 7.59l-3.29-3.3C5.53 4.11 5.28 4 5 4s-.53.11-.71.29L2 6.59V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M19 16H2v-1.59l5-5 3.29 3.29c.18.19.43.3.71.3s.53-.11.71-.29l7-7a1.003 1.003 0 00-1.42-1.42L11 10.59l-3.29-3.3C7.53 7.11 7.28 7 7 7s-.53.11-.71.29L2 11.59V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var TimelineLineChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"timeline-line-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.88 1s-4.9 6.28-4.9 8.9c.01 2.82 2.34 5.1 4.99 5.1 2.65-.01 5.03-2.3 5.03-5.13C12.99 7.17 7.88 1 7.88 1z'];\nvar svgPaths20 = ['M9.86 2S3.98 9.18 3.98 12.17C3.99 15.4 6.78 18 9.96 18c3.18-.01 6.04-2.63 6.03-5.86C15.99 9.05 9.86 2 9.86 2z'];\nexport var TintIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tint\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M5 15c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H5v1zm7-15H4c-.55 0-1 .45-1 1v1h10V1c0-.55-.45-1-1-1zM5 7v6h6V7l2-4H3l2 4zm2 0c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1V7z'];\nvar svgPaths20 = ['M6.97 19c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-2h-6v2zm-3-15l3 4v8h6V8l3-4h-12zm5 5c0-.55.45-1 1-1s1 .45 1 1v2c0 .55-.45 1-1 1s-1-.45-1-1V9zm6-9h-10c-.55 0-1 .45-1 1v2h12V1c0-.55-.45-1-1-1z'];\nexport var TorchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"torch\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.5 9a3.5 3.5 0 110 7 3.5 3.5 0 010-7zm9.5 1a3 3 0 110 6 3 3 0 010-6zm-9.5 1a1.5 1.5 0 100 3 1.5 1.5 0 000-3zm9.5 1a1 1 0 100 2 1 1 0 000-2zM5 0c1.46 0 2.527.668 3 2l.815 3.255a78.9 78.9 0 012.186.195L11 2h2l.001 3.688c.698.095 1.37.198 2.013.312.623.11.986.479.986 1v3.354a4.001 4.001 0 00-6.873 1.645H7.999l-.026-.002A4.5 4.5 0 00.659 9.01l-.654.001v-.829C.003 7.386.002 6.423 0 6.022 0 5.5.376 4.99 1 4.99V1a1 1 0 011-1h3zm1 2H3v2.99c1.29.024 2.554.069 3.781.135L6 2z'];\nvar svgPaths20 = ['M4.5 11a4.5 4.5 0 110 9 4.5 4.5 0 010-9zm11.499 1a4 4 0 110 8 4 4 0 010-8zm-11.5 1.571a1.928 1.928 0 100 3.857 1.928 1.928 0 000-3.857zM16 14.667a1.333 1.333 0 100 2.666 1.333 1.333 0 000-2.666zM5.999 0C7.46 0 8.527.668 9 2l.851 4.256c1.433.096 2.82.217 4.147.362V2h2L16 6.862c.962.13 1.886.275 2.767.435.779.141 1.232.614 1.232 1.284L20 13a4.995 4.995 0 00-4-1.997A5.001 5.001 0 0011.099 15h-1.12a5.499 5.499 0 00-5.478-4.994 5.482 5.482 0 00-3.377 1.157H.004v-1.18L0 7.327c-.002-.597.37-1.18.999-1.302V1a1 1 0 011-1h4zm1 2H3v4h.75c1.386.027 2.749.073 4.079.139L6.999 2z'];\nexport var TractorIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tractor\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 14h-1l1 2H3l1-2H3c-1.1 0-2-.9-2-2V2C1 .9 4.13 0 8 0s7 .9 7 2v10c0 1.1-.9 2-2 2zm-2-2h2v-2h-2v2zM9 7h4V3H9v4zm-6 5h2v-2H3v2zm0-5h4V3H3v4z'];\nvar svgPaths20 = ['M16 18h-2l2 2H4l.12-.12L6 18H4c-1.1 0-2-.9-2-2V2c0-1.1 3.58-2 8-2s8 .9 8 2v14c0 1.1-.9 2-2 2zM5.5 15c.83 0 1.5-.67 1.5-1.5S6.33 12 5.5 12 4 12.67 4 13.5 4.67 15 5.5 15zM9 3H4v6h5V3zm7 0h-5v6h5V3zm-1.5 9c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z'];\nexport var TrainIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"train\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.89 14.56l-3.99-8h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56h-.01L9 8.76 7.17 7.38l.23-.18C8.37 6.47 9 5.31 9 4V3h1c.55 0 1-.45 1-1s-.45-1-1-1H7c0-.55-.45-1-1-1H5c-.55 0-1 .45-1 1H1c-.55 0-1 .45-1 1s.45 1 1 1h6v1c0 .66-.32 1.25-.82 1.61l-.68.51-.68-.5C4.32 5.25 4 4.66 4 4H2c0 1.31.63 2.47 1.6 3.2l.23.17L1.4 9.2l.01.01C1.17 9.4 1 9.67 1 10c0 .55.45 1 1 1 .23 0 .42-.09.59-.21l.01.01 2.9-2.17 2.6 1.95-1.99 3.98h.01c-.07.13-.12.28-.12.44 0 .55.45 1 1 1 .39 0 .72-.23.89-.56h.01L8.62 14h4.76l.72 1.45h.01c.17.32.5.55.89.55.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44zM9.62 12L11 9.24 12.38 12H9.62z'];\nvar svgPaths20 = ['M19.89 18.56l-4.99-10h-.01c-.17-.33-.5-.56-.89-.56s-.72.23-.89.56h-.01l-1.73 3.46-2.8-2.3 1.99-1.64C11.44 7.34 12 6.23 12 5V4h1c.55 0 1-.45 1-1s-.45-1-1-1H8V1c0-.55-.45-1-1-1S6 .45 6 1v1H1c-.55 0-1 .45-1 1s.45 1 1 1h9v1c0 .62-.28 1.18-.73 1.54L7 8.42 4.73 6.54C4.28 6.18 4 5.62 4 5H2c0 1.23.56 2.34 1.44 3.07l1.99 1.64-3.06 2.52.01.01c-.23.18-.38.45-.38.76 0 .55.45 1 1 1 .24 0 .45-.1.63-.24l.01.01L7 11l3.36 2.77.01-.01c.02.02.05.03.08.05.01 0 .01.01.02.02l-2.36 4.73h.01c-.07.13-.12.28-.12.44 0 .55.45 1 1 1 .39 0 .72-.23.89-.56h.01L11.12 17h5.76l1.22 2.45h.01c.17.32.5.55.89.55.55 0 1-.45 1-1 0-.16-.05-.31-.11-.44zM12.12 15L14 11.24 15.88 15h-3.76z'];\nexport var TranslateIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"translate\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14.49 3.99h-13c-.28 0-.5.22-.5.5s.22.5.5.5h.5v10c0 .55.45 1 1 1h10c.55 0 1-.45 1-1v-10h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zm-8.5 9c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm3 0c0 .55-.45 1-1 1s-1-.45-1-1v-6c0-.55.45-1 1-1s1 .45 1 1v6zm2-12h-4c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1h-4c-.55 0-1 .45-1 1v1h14v-1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M17 1h-5c0-.55-.45-1-1-1H9c-.55 0-1 .45-1 1H3c-.55 0-1 .45-1 1v1h16V2c0-.55-.45-1-1-1zm.5 3h-15c-.28 0-.5.22-.5.5s.22.5.5.5H3v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V5h.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5zM7 16c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8zm4 0c0 .55-.45 1-1 1s-1-.45-1-1V8c0-.55.45-1 1-1s1 .45 1 1v8z'];\nexport var TrashIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"trash\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 11.857V16H7v-4.143L1 13l3.885-4.44L3 9l3.07-4.297L5 5l3-5 3 5-1.07-.297L13 9l-1.885-.44L15 13l-6-1.143z'];\nvar svgPaths20 = ['M11 15.542V20H9v-4.458L2 17l4.5-5.625L4 12l3.655-5.483L6 7l4-7 4 7-1.655-.483L16 12l-2.5-.625L18 17l-7-1.458z'];\nexport var TreeIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"tree\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 7c-.55 0-1 .45-1 1v.59l-4.29-4.3A.997.997 0 009 4c-.16 0-.31.05-.44.11V4.1L5 5.88 1.45 4.11v.01C1.31 4.05 1.16 4 1 4c-.55 0-1 .45-1 1 0 .39.23.72.56.89v.01l4 2v-.01c.13.06.28.11.44.11s.31-.05.44-.11v.01L8.8 6.22 12.59 10H12c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 10c-.55 0-1 .45-1 1v1.37l-6.25-7.03-.01.01A.971.971 0 0011 5c-.23 0-.42.09-.59.21l-.01-.01-3.43 2.58-5.42-3.61-.01.01A.969.969 0 001 4c-.55 0-1 .45-1 1 0 .35.19.64.46.82l-.01.01 6 4 .01-.02c.15.11.33.19.54.19.23 0 .42-.09.59-.21l.01.01 3.26-2.45L16.77 14H15c-.55 0-1 .45-1 1s.45 1 1 1h4c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1z'];\nexport var TrendingDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"trending-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 4h-3c-.55 0-1 .45-1 1s.45 1 1 1h.59L8.8 9.78 5.45 8.11v.01C5.31 8.05 5.16 8 5 8s-.31.05-.44.11V8.1l-4 2v.01c-.33.17-.56.5-.56.89 0 .55.45 1 1 1 .16 0 .31-.05.44-.11v.01L5 10.12l3.55 1.78v-.01c.14.06.29.11.45.11.28 0 .53-.11.71-.29L14 7.41V8c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M19 4h-4c-.55 0-1 .45-1 1s.45 1 1 1h1.77l-5.91 6.65L7.6 10.2l-.01.01C7.42 10.09 7.23 10 7 10c-.21 0-.39.08-.54.18l-.01-.02-6 4 .01.02c-.27.18-.46.47-.46.82 0 .55.45 1 1 1 .21 0 .39-.08.54-.18l.01.02 5.41-3.61 3.43 2.58.01-.01c.18.11.37.2.6.2.3 0 .56-.14.74-.34l.01.01L18 7.63V9c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1z'];\nexport var TrendingUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"trending-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M12.5 0a.5.5 0 01.5.5V9a1 1 0 011 1v2h.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5H13v1a1 1 0 01-2 0v-1H5v1a1 1 0 01-2 0v-1H1.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H2v-2a1 1 0 011-1V.5a.5.5 0 011 0V3a2 2 0 012-2h4a2 2 0 012 2V.5a.5.5 0 01.5-.5zM9 8H7a1 1 0 00-1 1v2a1 1 0 001 1h2a1 1 0 001-1V9a1 1 0 00-1-1zm3.5 3h-1a.5.5 0 100 1h1a.5.5 0 100-1zm-8 0h-1a.5.5 0 100 1h1a.5.5 0 100-1zM9 9a.5.5 0 01.5.5v1l-.008.09A.5.5 0 019 11H7l-.09-.008a.5.5 0 01-.41-.492v-1l.008-.09A.5.5 0 017 9zm2-5H5v2h6V4z'];\nvar svgPaths20 = ['M16 0a1 1 0 011 1v11a1 1 0 011 1v3h.5a.5.5 0 01.5.5v1a.5.5 0 01-.5.5H17v1a1 1 0 01-1 1h-1a1 1 0 01-1-1v-1H6v1a1 1 0 01-1 1H4a1 1 0 01-1-1v-1H1.5a.5.5 0 01-.5-.5v-1a.5.5 0 01.5-.5H2v-3a1 1 0 011-1V1a1 1 0 112 0v3a2 2 0 012-2h6a2 2 0 012 2V1a1 1 0 011-1zm-4 10H8a1 1 0 00-1 1v4a1 1 0 001 1h4a1 1 0 001-1v-4a1 1 0 00-1-1zm-7 4H4a1 1 0 000 2h1a1 1 0 000-2zm11 0h-1a1 1 0 000 2h1a1 1 0 000-2zm-4.5 0a.5.5 0 110 1h-3l-.09-.008A.5.5 0 018.5 14zm0-1.5a.5.5 0 110 1h-3l-.09-.008a.5.5 0 01.09-.992zm0-1.5a.5.5 0 110 1h-3l-.09-.008A.5.5 0 018.5 11zM14 5H6v3h8V5z'];\nexport var TruckIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"truck\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1zm11.71 7.3l-2-2a1.003 1.003 0 00-1.71.71v4a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71s-.11-.53-.29-.71zM9.99-.01h-3c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h3c.55 0 1-.45 1-1v-14c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M5 0H1C.45 0 0 .45 0 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm14.71 9.29l-3-3A1.003 1.003 0 0015 7v6a1.003 1.003 0 001.71.71l3-3c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71zM12 0H8c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h4c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var TwoColumnsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"two-columns\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13.382 0a1 1 0 01.894.553L16 4v11a1 1 0 01-1 1H1a1 1 0 01-1-1V4L1.724.553A1 1 0 012.618 0h10.764zM8 6c-.28 0-.53.11-.71.29l-2 2-.084.096A1.003 1.003 0 006.71 9.71l.29-.3V12l.007.116c.058.496.482.884.993.884.55 0 1-.45 1-1V9.41l.29.29.081.076A.97.97 0 0010 10a1.003 1.003 0 00.71-1.71l-2-2-.096-.084A1.002 1.002 0 008 6zm5-4H3L2 4h12l-1-2z'];\nvar svgPaths20 = ['M16.434 0a1 1 0 01.857.486L20 5v14a1 1 0 01-1 1H1a1 1 0 01-1-1V5L2.709.486A1 1 0 013.566 0h12.868zM10 8c-.28 0-.53.11-.71.29l-3 3-.084.096A1.003 1.003 0 007.71 12.71L9 11.41v4.58l.007.116c.058.496.482.884.993.884.55 0 1-.45 1-1v-4.58l1.29 1.29.081.073c.171.139.389.227.629.227a1.003 1.003 0 00.71-1.71l-3-3-.096-.084A1.002 1.002 0 0010 8zm6-6H4L2 5.002h16L16 2z'];\nexport var UnarchiveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"unarchive\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 14c2.8 0 5-2.2 5-5V3c0-.6-.4-1-1-1s-1 .4-1 1v6c0 1.7-1.3 3-3 3s-3-1.3-3-3V3c0-.6-.4-1-1-1s-1 .4-1 1v6c0 2.8 2.2 5 5 5zM13.5 15h-11c-.3 0-.5.2-.5.5s.2.5.5.5h11c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z'];\nvar svgPaths20 = ['M10 17c3.3 0 6-2.7 6-6V3.5c0-.8-.7-1.5-1.5-1.5S13 2.7 13 3.5V11c0 1.7-1.3 3-3 3s-3-1.3-3-3V3.5C7 2.7 6.3 2 5.5 2S4 2.7 4 3.5V11c0 3.3 2.7 6 6 6zM16.5 19h-13c-.3 0-.5.2-.5.5s.2.5.5.5h13c.3 0 .5-.2.5-.5s-.2-.5-.5-.5z'];\nexport var UnderlineIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"underline\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M4 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm7-7H3.41L4.7 2.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-3 3C.11 4.47 0 4.72 0 5c0 .28.11.53.29.71l3 3a1.003 1.003 0 001.42-1.42L3.41 6H11c1.66 0 3 1.34 3 3s-1.34 3-3 3H7v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z'];\nvar svgPaths20 = ['M5 14c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm9-9H3.41L5.7 2.71c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71l-4 4C.11 5.47 0 5.72 0 6c0 .28.11.53.29.71l4 4a1.003 1.003 0 001.42-1.42L3.41 7H14c2.21 0 4 1.79 4 4s-1.79 4-4 4H9v2h5c3.31 0 6-2.69 6-6s-2.69-6-6-6z'];\nexport var UndoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"undo\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.5 5C1.57 5 0 6.57 0 8.5S1.57 12 3.5 12 7 10.43 7 8.5 5.43 5 3.5 5zm9 0C10.57 5 9 6.57 9 8.5s1.57 3.5 3.5 3.5S16 10.43 16 8.5 14.43 5 12.5 5z'];\nvar svgPaths20 = ['M4.5 6C2.01 6 0 8.01 0 10.5S2.01 15 4.5 15 9 12.99 9 10.5 6.99 6 4.5 6zm11 0C13.01 6 11 8.01 11 10.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5S17.99 6 15.5 6z'];\nexport var UngroupObjectsIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"ungroup-objects\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M10.507 9.75v-3.5c0-.089.023-.171.051-.25h-7.55c-.176 0-.061-.824 0-1l.729-1.63c.06-.177.095-.37.27-.37h4.5V1.01c-.166-.003-.32-.01-.5-.01-2.72 0-4.036.402-4.036.402-.508.155-1.079.711-1.268 1.237L1.94 4.756H.887c-.483 0-.88.423-.88.939s.397.939.88.939h.376L1.008 7c-.034.685 0 1.436 0 2v5c0 .657.384 1 1 1s1-.343 1-1v-1h10v1c0 .657.383 1 1 1s1-.343 1-1v-3.5h-3.75a.75.75 0 01-.75-.75zm-5.5.25h-2V8h2v2zm11-4.305zM15.34.826a2.807 2.807 0 00-.932-.598c-.386-.16-.868-.241-1.445-.241-.447 0-.851.076-1.213.228-.362.153-.67.364-.926.636s-.456.592-.598.963a3.535 3.535 0 00-.218 1.144V3h1.789c.003-.208.023-.405.069-.588.049-.193.124-.362.225-.506.102-.144.232-.259.39-.345.159-.087.348-.13.567-.13.325 0 .58.09.762.272.183.18.275.46.275.839.008.222-.031.407-.116.555a1.654 1.654 0 01-.335.408 7.4 7.4 0 01-.452.37c-.162.123-.316.27-.463.438a2.556 2.556 0 00-.384.611c-.11.239-.177.535-.2.889V6h1.645v-.1c.032-.248.111-.453.237-.618.126-.164.27-.31.433-.438.163-.128.335-.255.518-.383a2.413 2.413 0 00.878-1.117c.102-.255.152-.58.152-.975A2.241 2.241 0 0015.34.826zM12.007 7v2h2V7h-2z'];\nvar svgPaths20 = ['M13 11.988v-4H4v-1l1-3h6V2.003a35.867 35.867 0 00-1-.015c-3.593 0-5.332.488-5.332.488-.67.188-1.424.864-1.674 1.503l-.004.009H3l-1 3H1a1 1 0 100 2h.333l-.28.84-.053.16v7.5a1.5 1.5 0 103 0v-.5h12v.5a1.5 1.5 0 103 0v-4.5h-5a1 1 0 01-1-1zm-8.5 1a1.5 1.5 0 110-3 1.5 1.5 0 010 3zM19.83 2.782a2.392 2.392 0 00-.592-.853c-.276-.264-.64-.485-1.09-.663C17.695 1.09 17.132 1 16.457 1c-.523 0-.996.084-1.418.253a3.157 3.157 0 00-1.084.703c-.299.3-.532.656-.698 1.065-.166.41-.254.861-.264 1.353h2.096c0-.246.028-.476.085-.69.057-.214.145-.4.264-.56.119-.16.27-.287.456-.383.185-.095.406-.143.663-.143.38 0 .677.1.89.3.215.2.321.51.321.93.01.245-.035.45-.135.614-.1.164-.23.314-.392.45a8.598 8.598 0 01-.527.41 3.53 3.53 0 00-.542.485c-.171.187-.32.412-.45.676-.127.265-.206.592-.234.984v.614h1.924v-.519c.038-.273.13-.5.278-.683.147-.182.316-.343.506-.484a13.5 13.5 0 01.606-.424c.214-.14.408-.312.584-.512s.323-.442.442-.724.178-.642.178-1.079c0-.264-.059-.548-.178-.854zm-4.54 6.099v2.103h2.237V8.881H15.29z'];\nexport var UnknownVehicleIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"unknown-vehicle\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11.99-.01c-2.21 0-4 1.79-4 4v3h-7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-7c0-.55-.45-1-1-1h-3v-3c0-1.1.9-2 2-2s2 .9 2 2v1c0 .55.45 1 1 1s1-.45 1-1v-1c0-2.21-1.79-4-4-4z'];\nvar svgPaths20 = ['M14 1c-2.21 0-4 1.79-4 4v4H2c-.55 0-1 .45-1 1v8c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-8c0-.55-.45-1-1-1h-2V5c0-1.1.9-2 2-2s2 .9 2 2v2c0 .55.45 1 1 1s1-.45 1-1V5c0-2.21-1.79-4-4-4z'];\nexport var UnlockIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"unlock\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.39 1c-.5.5-.4 1.48.15 2.53L4.38 7.54C2.85 6.5 1.52 6.07 1 6.59l3.5 3.5c-.02.02-1.4 2.8-1.4 2.8l2.8-1.4 3.5 3.5c.53-.53.1-1.86-.95-3.38l4.02-5.16c1.04.55 2.01.65 2.51.14L9.39 1z'];\nvar svgPaths20 = ['M11.77 1.16c-.81.81-.74 2.28.02 3.76L6.1 8.71c-2.17-1.46-4.12-2-4.94-1.18l4.95 4.95-2.12 3.54 3.54-2.12 4.95 4.95c.82-.82.27-2.77-1.19-4.94l3.8-5.69c1.47.76 2.94.84 3.76.02l-7.08-7.08z'];\nexport var UnpinIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"unpin\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 3c-.55 0-1.07.09-1.57.26a6.46 6.46 0 010 9.48c.5.17 1.02.26 1.57.26 2.76 0 5-2.24 5-5s-2.24-5-5-5zM9.78 9.38l.09-.27c.08-.36.13-.73.13-1.11s-.05-.75-.13-1.11l-.09-.27a5.32 5.32 0 00-.29-.79l-.12-.21c-.14-.27-.31-.52-.51-.76a.7.7 0 00-.08-.1c-.24-.27-.49-.52-.78-.74-.43-.32-.92-.58-1.45-.75l.01-.01c-.1-.03-.2-.05-.3-.08-.12-.03-.23-.07-.36-.09A5.28 5.28 0 005 3C2.24 3 0 5.24 0 8s2.24 5 5 5c.31 0 .61-.04.9-.09.12-.02.24-.06.36-.09.1-.03.21-.04.3-.08l-.01-.01c.88-.29 1.64-.8 2.22-1.49.03-.03.06-.07.09-.1.19-.24.36-.49.51-.76.04-.07.08-.14.11-.21.13-.25.23-.52.3-.79z'];\nvar svgPaths20 = ['M11.47 12.46c.16-.36.29-.74.38-1.14 0-.02.01-.04.01-.06.09-.4.14-.82.14-1.26 0-.44-.05-.86-.14-1.27 0-.02-.01-.04-.01-.06-.09-.4-.22-.78-.38-1.14-.01-.02-.02-.03-.02-.05a5.94 5.94 0 00-.61-1.03c0-.01-.01-.01-.01-.02a6.308 6.308 0 00-2.1-1.77c-.19-.1-.39-.18-.59-.26-.03-.01-.06-.02-.1-.03-.17-.07-.34-.12-.52-.17-.05-.01-.1-.03-.15-.04a4.34 4.34 0 00-.52-.09c-.05-.01-.11-.02-.17-.03C6.46 4.02 6.23 4 6 4c-3.31 0-6 2.69-6 6s2.69 6 6 6c.23 0 .46-.02.68-.04l.17-.03c.17-.02.34-.06.51-.09.05-.01.1-.03.15-.04.18-.05.36-.1.53-.17l.09-.03a5.973 5.973 0 002.68-2.04c0-.01.01-.01.01-.02.24-.32.44-.66.61-1.03.02-.01.03-.03.04-.05zM14 4c-.99 0-1.91.24-2.73.66a7.51 7.51 0 010 10.68c.82.42 1.74.66 2.73.66 3.31 0 6-2.69 6-6s-2.69-6-6-6z'];\nexport var UnresolveIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"unresolve\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0a7.95 7.95 0 00-6 2.74V1c0-.55-.45-1-1-1S0 .45 0 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.54C4.64 2.78 6.22 2 8 2c3.31 0 6 2.69 6 6 0 2.61-1.67 4.81-4 5.63-.63.22-1.29.37-2 .37-3.31 0-6-2.69-6-6 0-.55-.45-1-1-1s-1 .45-1 1c0 4.42 3.58 8 8 8 .34 0 .67-.03 1-.07.02 0 .04-.01.06-.01C12.98 15.4 16 12.06 16 8c0-4.42-3.58-8-8-8zm3 5c-.28 0-.53.11-.71.29L7 8.58 5.71 7.29a1.003 1.003 0 00-1.42 1.42l2 2c.18.18.43.29.71.29.28 0 .53-.11.71-.29l4-4A1.003 1.003 0 0011 5z'];\nvar svgPaths20 = ['M10 0C6.71 0 3.82 1.6 2 4.05V2c0-.55-.45-1-1-1s-1 .45-1 1v4c0 .55.45 1 1 1h4c.55 0 1-.45 1-1s-.45-1-1-1H3.76C5.22 3.17 7.47 2 10 2c4.42 0 8 3.58 8 8s-3.58 8-8 8-8-3.58-8-8c0-.55-.45-1-1-1s-1 .45-1 1c0 5.52 4.48 10 10 10s10-4.48 10-10S15.52 0 10 0zm4 7c-.28 0-.53.11-.71.29L9 11.58 6.71 9.29a1.003 1.003 0 00-1.42 1.42l3 3c.18.18.43.29.71.29.28 0 .53-.11.71-.29l5-5A1.003 1.003 0 0014 7z'];\nexport var UpdatedIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"updated\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 0C3.58 0 0 3.58 0 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 8c-.28 0-.53-.11-.71-.29L9 6.41V12c0 .55-.45 1-1 1s-1-.45-1-1V6.41l-1.29 1.3a1.003 1.003 0 01-1.42-1.42l3-3C7.47 3.11 7.72 3 8 3s.53.11.71.29l3 3A1.003 1.003 0 0111 8z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10s4.48 10 10 10 10-4.48 10-10S15.52 0 10 0zm4 10c-.28 0-.53-.11-.71-.29L11 7.41V15c0 .55-.45 1-1 1s-1-.45-1-1V7.41l-2.29 2.3a1.003 1.003 0 01-1.42-1.42l4-4c.18-.18.43-.29.71-.29s.53.11.71.29l4 4A1.003 1.003 0 0114 10z'];\nexport var UploadIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"upload\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99-.01A7.998 7.998 0 00.03 8.77c.01.09.03.18.04.28.02.15.04.31.07.47.02.11.05.22.08.34.03.13.06.26.1.38.04.12.08.25.12.37.04.11.08.21.12.32a6.583 6.583 0 00.3.65c.07.14.14.27.22.4.04.07.08.13.12.2l.27.42.1.13a7.973 7.973 0 003.83 2.82c.03.01.05.02.07.03.37.12.75.22 1.14.29l.2.03c.39.06.79.1 1.2.1s.81-.04 1.2-.1l.2-.03c.39-.07.77-.16 1.14-.29.03-.01.05-.02.07-.03a8.037 8.037 0 003.83-2.82c.03-.04.06-.08.09-.13.1-.14.19-.28.28-.42.04-.07.08-.13.12-.2.08-.13.15-.27.22-.41.04-.08.08-.17.12-.26.06-.13.11-.26.17-.39.04-.1.08-.21.12-.32.04-.12.08-.24.12-.37.04-.13.07-.25.1-.38.03-.11.06-.22.08-.34.03-.16.05-.31.07-.47.01-.09.03-.18.04-.28.02-.26.04-.51.04-.78-.03-4.41-3.61-7.99-8.03-7.99zm0 14.4c-1.98 0-3.75-.9-4.92-2.31.67-.36 1.49-.66 2.14-.95 1.16-.52 1.04-.84 1.08-1.27.01-.06.01-.11.01-.17-.41-.36-.74-.86-.96-1.44v-.01c0-.01-.01-.02-.01-.02-.05-.13-.09-.26-.12-.39-.28-.05-.44-.35-.5-.63-.06-.11-.18-.38-.15-.69.04-.41.2-.59.38-.67v-.06c0-.51.05-1.24.14-1.72.02-.13.05-.26.09-.39.17-.59.53-1.12 1.01-1.49.49-.38 1.19-.59 1.82-.59.62 0 1.32.2 1.82.59.48.37.84.9 1.01 1.49.04.13.07.26.09.4.09.48.14 1.21.14 1.72v.07c.18.08.33.26.37.66.03.31-.1.58-.16.69-.06.27-.21.57-.48.62-.03.13-.07.26-.12.38 0 .01-.01.04-.01.04-.21.57-.54 1.06-.94 1.42 0 .06.01.13.01.19.04.43-.12.75 1.05 1.27.65.29 1.47.6 2.14.95a6.415 6.415 0 01-4.93 2.31z'];\nvar svgPaths20 = ['M10 0C4.48 0 0 4.48 0 10c0 .33.02.65.05.97.01.12.03.23.05.35.03.2.05.4.09.59.03.14.06.28.1.42l.12.48c.05.16.1.31.15.46.05.13.09.27.15.4.06.16.13.32.21.48.05.11.1.22.16.33.09.17.17.34.27.5.05.09.1.17.15.25.11.18.22.35.34.52.04.06.08.11.12.17 1.19 1.62 2.85 2.86 4.78 3.53l.09.03c.46.15.93.27 1.42.36.08.01.17.03.25.04.49.07.99.12 1.5.12s1.01-.05 1.5-.12c.08-.01.17-.02.25-.04.49-.09.96-.21 1.42-.36l.09-.03c1.93-.67 3.59-1.91 4.78-3.53.04-.05.08-.1.12-.16.12-.17.23-.35.34-.53.05-.08.1-.16.15-.25.1-.17.19-.34.27-.51.05-.11.1-.21.15-.32.07-.16.14-.32.21-.49.05-.13.1-.26.14-.39.05-.15.11-.31.15-.46.05-.16.08-.32.12-.48.03-.14.07-.28.1-.42.04-.19.06-.39.09-.59.02-.12.04-.23.05-.35.05-.32.07-.64.07-.97 0-5.52-4.48-10-10-10zm0 18a7.94 7.94 0 01-6.15-2.89c.84-.44 1.86-.82 2.67-1.19 1.45-.65 1.3-1.05 1.35-1.59.01-.07.01-.14.01-.21-.51-.45-.93-1.08-1.2-1.8l-.01-.01c0-.01-.01-.02-.01-.03a4.42 4.42 0 01-.15-.48c-.33-.07-.53-.44-.61-.79-.08-.14-.23-.48-.2-.87.05-.51.26-.74.49-.83v-.08c0-.63.06-1.55.17-2.15.02-.17.06-.33.11-.5.21-.73.66-1.4 1.26-1.86.62-.47 1.5-.72 2.28-.72.78 0 1.65.25 2.27.73.6.46 1.05 1.12 1.26 1.86.05.16.08.33.11.5.11.6.17 1.51.17 2.15v.09c.22.1.42.33.46.82.04.39-.12.73-.2.87-.07.34-.27.71-.6.78-.04.16-.09.33-.15.48 0 .01-.02.05-.02.05-.26.71-.67 1.33-1.17 1.78 0 .08.01.16.01.23.05.54-.15.94 1.31 1.59.81.36 1.84.74 2.68 1.19A7.958 7.958 0 0110 18z'];\nexport var UserIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"user\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.94 3.15c.47-.66 1.05-1.24 1.76-1.73l.13-.4c-1.11.45-2.05 1.01-2.84 1.7-1.02.88-1.8 1.9-2.32 3.05C.22 6.76 0 7.75 0 8.75c0 1.75.66 3.5 1.99 5.25l.13-.42c-.39-.94-.59-1.82-.59-2.63 0-1.28.22-2.64.67-4.1.45-1.45 1.03-2.69 1.74-3.7zm7.51 6.41l-.27-.15c-.3.41-.52.66-.66.77-.09.06-.21.1-.33.1-.15 0-.3-.1-.45-.28-.25-.33-.59-1.22-1.01-2.69.38-.65.69-1.08.95-1.28.19-.15.39-.22.59-.22.08 0 .22.03.43.08.2.06.39.08.54.08.22 0 .4-.07.54-.22.15-.15.22-.34.22-.57 0-.25-.07-.45-.22-.59-.15-.15-.35-.22-.63-.22-.24 0-.47.06-.69.17-.21.11-.49.36-.82.74-.25.28-.61.78-1.1 1.48a6.72 6.72 0 00-.97-2.38l-2.59.44-.05.27c.19-.04.36-.06.49-.06.26 0 .47.11.64.33.26.34.63 1.38 1.11 3.12-.37.49-.63.81-.77.96-.23.24-.41.4-.56.47-.11.06-.24.09-.39.09-.11 0-.29-.06-.53-.18-.17-.07-.32-.11-.45-.11-.25 0-.46.08-.62.24-.16.16-.24.37-.24.61 0 .23.08.42.23.57.15.15.35.22.61.22.25 0 .48-.05.7-.15.22-.1.49-.32.82-.65.33-.33.78-.86 1.36-1.59.22.69.42 1.19.58 1.51.16.31.35.54.56.68.21.14.47.21.79.21.31 0 .62-.11.93-.33.4-.29.82-.77 1.26-1.47zm2.56-8.54l-.12.42c.39.95.59 1.82.59 2.64 0 1.09-.17 2.26-.5 3.51-.26.96-.6 1.87-1.02 2.71-.42.85-.82 1.51-1.21 1.98-.39.48-.87.92-1.44 1.32l-.14.4c1.11-.45 2.05-1.02 2.84-1.7 1.03-.89 1.81-1.91 2.33-3.05.44-.99.66-1.99.66-3 0-1.73-.66-3.48-1.99-5.23z'];\nvar svgPaths20 = ['M4.93 3.79a9.1 9.1 0 012.2-2.27L7.29 1c-1.38.59-2.57 1.33-3.55 2.22C2.46 4.39 1.49 5.72.83 7.23.28 8.51 0 9.81 0 11.12c0 2.28.83 4.57 2.49 6.86l.16-.55c-.49-1.23-.73-2.38-.73-3.44 0-1.67.28-3.46.84-5.36.55-1.9 1.28-3.51 2.17-4.84zm9.38 8.39l-.33-.2c-.37.54-.65.87-.82 1a.74.74 0 01-.42.12c-.19 0-.38-.12-.57-.37-.31-.42-.73-1.59-1.26-3.5.47-.85.86-1.41 1.19-1.67.23-.19.48-.29.74-.29.1 0 .28.04.53.11.26.07.48.11.68.11.27 0 .5-.1.68-.29.18-.19.27-.44.27-.75 0-.33-.09-.58-.27-.77-.18-.19-.44-.29-.78-.29-.3 0-.59.07-.86.22s-.61.47-1.02.97c-.31.37-.77 1.02-1.37 1.94a9.683 9.683 0 00-1.24-3.14l-3.24.59-.06.36c.24-.05.44-.07.61-.07.32 0 .59.14.8.43.33.45.8 1.8 1.39 4.07-.47.64-.78 1.06-.96 1.26-.28.32-.52.53-.7.62-.14.08-.3.11-.48.11-.14 0-.36-.08-.67-.23-.21-.1-.4-.15-.57-.15-.31 0-.57.11-.78.32s-.31.48-.31.8c0 .31.09.55.28.75.19.19.44.29.76.29.31 0 .6-.07.87-.2s.61-.42 1.02-.86c.41-.44.98-1.13 1.7-2.08.28.9.52 1.56.72 1.97.2.41.44.71.7.89.26.18.59.27.99.27.38 0 .77-.14 1.17-.43.54-.36 1.07-1 1.61-1.91zM17.51 1l-.15.54c.49 1.24.73 2.39.73 3.45 0 1.43-.21 2.96-.63 4.6-.33 1.26-.75 2.45-1.27 3.55-.52 1.11-1.02 1.97-1.51 2.6-.49.62-1.09 1.2-1.8 1.72l-.17.53c1.38-.59 2.57-1.34 3.55-2.23 1.29-1.17 2.26-2.5 2.91-4 .55-1.28.83-2.59.83-3.91 0-2.27-.83-4.56-2.49-6.85z'];\nexport var VariableIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"variable\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1zM2 9c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1zm8-5c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zm4-4c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M8 7H7c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zM3 9H2c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1zm10-5h-1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm5-4h-1c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1z'];\nexport var VerticalBarChartAscIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"vertical-bar-chart-asc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M6 4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1s1-.45 1-1V5c0-.55-.45-1-1-1zM2 0c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm8 7c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1s1-.45 1-1V8c0-.55-.45-1-1-1zm4 2c-.55 0-1 .45-1 1v5c0 .55.45 1 1 1s1-.45 1-1v-5c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M3 0H2c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm5 4H7c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm5 3h-1c-.55 0-1 .45-1 1v11c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1zm5 2h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1v-9c0-.55-.45-1-1-1z'];\nexport var VerticalBarChartDescIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"vertical-bar-chart-desc\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 2h14c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1zm14 11H1c-.55 0-1 .45-1 1s.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1zM3 5c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h9c.55 0 1-.45 1-1V6c0-.55-.45-1-1-1H3z'];\nvar svgPaths20 = ['M1 2h18c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1s.45 1 1 1zm2 5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H3zm16 11H1c-.55 0-1 .45-1 1s.45 1 1 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var VerticalDistributionIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"vertical-distribution\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15 2H1c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM5 11V5l6 3-6 3z'];\nvar svgPaths20 = ['M19 2H1c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h18c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zM7 14V6l6 4-6 4z'];\nexport var VideoIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"video\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9 2c-.28 0-.53.11-.71.29L5.59 5H3c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm3.57 1.44l-1.59 1.22C11.62 5.61 12 6.76 12 8s-.38 2.39-1.02 3.34l1.59 1.22C13.47 11.27 14 9.7 14 8c0-1.7-.53-3.27-1.43-4.56z'];\nvar svgPaths20 = ['M15.92 3.93l-1.6 1.18A7.948 7.948 0 0116 10c0 1.84-.63 3.54-1.68 4.89l1.6 1.18A9.878 9.878 0 0018 10c0-2.29-.78-4.39-2.08-6.07zM11 3c-.28 0-.53.11-.71.29L7.59 6H3c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var VolumeDownIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"volume-down\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 2c-.28 0-.53.11-.71.29L7.59 5H5c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V3c0-.55-.45-1-1-1z'];\nvar svgPaths20 = ['M14 3c-.28 0-.53.11-.71.29L10.59 6H6c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71c.17.18.42.29.7.29.55 0 1-.45 1-1V4c0-.55-.45-1-1-1z'];\nexport var VolumeOffIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"volume-off\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7 1.86c-.28 0-.53.11-.71.29l-2.7 2.71H1c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1h2.59l2.71 2.71a1.003 1.003 0 001.71-.71v-10c-.01-.55-.46-1-1.01-1zm6.74-.99l-1.58 1.22A9.985 9.985 0 0114 7.86c0 2.16-.69 4.15-1.85 5.78l1.58 1.22c1.42-1.97 2.26-4.38 2.26-7 .01-2.61-.84-5.02-2.25-6.99zM8.98 4.52C9.62 5.48 10 6.63 10 7.86s-.38 2.39-1.02 3.34l1.59 1.22c.9-1.29 1.43-2.86 1.43-4.56 0-1.7-.53-3.27-1.43-4.56L8.98 4.52z'];\nvar svgPaths20 = ['M9 3.43c-.28 0-.53.11-.71.29l-2.7 2.71H1c-.55 0-1 .45-1 1v6c0 .55.45 1 1 1h4.59l2.71 2.71a1.003 1.003 0 001.71-.71v-12c-.01-.55-.46-1-1.01-1zm8.31-1.56l-1.62 1.2C17.14 5.16 18 7.69 18 10.43s-.86 5.27-2.31 7.37l1.62 1.2C19 16.57 20 13.62 20 10.43c0-3.18-1-6.13-2.69-8.56zm-3.39 2.49l-1.6 1.18A7.948 7.948 0 0114 10.43c0 1.84-.63 3.54-1.68 4.89l1.6 1.18A9.94 9.94 0 0016 10.43c0-2.28-.78-4.38-2.08-6.07z'];\nexport var VolumeUpIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"volume-up\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 8h-2c-.16 0-.31-.05-.44-.11v.01l-1.02-.51-.37 1.86 1.38.92-.01.02c.27.17.46.46.46.81v4c0 .55-.45 1-1 1s-1-.45-1-1v-3.46l-1.27-.85-1.8 4.67h-.01A.98.98 0 015 16c-.55 0-1-.45-1-1 0-.13.03-.25.07-.36h-.01L7.39 6H5.62l-.73 1.45h-.01C4.72 7.77 4.39 8 4 8c-.55 0-1-.45-1-1 0-.16.05-.31.11-.44H3.1l1-2h.01c.17-.33.5-.56.89-.56h3.16l.29-.75C8.17 2.9 8 2.47 8 2c0-1.1.9-2 2-2s2 .9 2 2c0 1-.73 1.82-1.69 1.97l-.5 1.32 1.43.71H13c.55 0 1 .45 1 1s-.45 1-1 1z'];\nvar svgPaths20 = ['M16 10h-2c-.23 0-.42-.09-.59-.21l-.01.01-1.69-1.27-.63 3.14 2.62 2.62c.19.18.3.43.3.71v4c0 .55-.45 1-1 1s-1-.45-1-1v-3.59L9.39 12.8l-2.45 6.55h-.01c-.14.38-.5.65-.93.65-.55 0-1-.45-1-1 0-.12.03-.24.07-.35h-.01L9.43 7h-2.9l-1.7 2.55-.01-.01c-.18.27-.47.46-.82.46-.55 0-1-.45-1-1 0-.21.08-.39.18-.54l-.01-.01 2-3 .02.01C5.36 5.19 5.65 5 6 5h4.18l.36-.96c-.33-.43-.54-.96-.54-1.54a2.5 2.5 0 015 0A2.5 2.5 0 0112.5 5c-.06 0-.12-.01-.18-.02l-.44 1.18L14.33 8H16c.55 0 1 .45 1 1s-.45 1-1 1z'];\nexport var WalkIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"walk\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.84 13.5l.01-.01-7-12-.01.01c-.17-.3-.48-.5-.85-.5s-.67.2-.85.5l-.01-.01-7 12 .01.01c-.09.15-.15.31-.15.5 0 .55.45 1 1 1h14c.55 0 1-.45 1-1 0-.19-.06-.35-.15-.5zm-6.85-.51h-2v-2h2v2zm0-3h-2v-5h2v5z'];\nvar svgPaths20 = ['M19.86 17.52l.01-.01-9-16-.01.01C10.69 1.21 10.37 1 10 1s-.69.21-.86.52l-.01-.01-9 16 .01.01c-.08.14-.14.3-.14.48 0 .55.45 1 1 1h18c.55 0 1-.45 1-1 0-.18-.06-.34-.14-.48zM11 17H9v-2h2v2zm0-3H9V6h2v8z'];\nexport var WarningSignIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"warning-sign\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M8 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm-4 4h1c.55 0 1-.45 1-1V8c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v2c0 .55.45 1 1 1zm7-6c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1s-1 .45-1 1v1c0 .55.45 1 1 1zm4-3h-1c-.55 0-1 .45-1 1v7c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V3c0-.55-.45-1-1-1zm0 10H2V3c0-.55-.45-1-1-1s-1 .45-1 1v10c0 .55.45 1 1 1h14c.55 0 1-.45 1-1s-.45-1-1-1z'];\nvar svgPaths20 = ['M13 7h2c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1h-2c-.55 0-1 .45-1 1v1c0 .55.45 1 1 1zm-9 8h1c.55 0 1-.45 1-1v-4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v4c0 .55.45 1 1 1zm4-6h2c.55 0 1-.45 1-1s-.45-1-1-1H8c-.55 0-1 .45-1 1s.45 1 1 1zm11-5h-1c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm0 12H2V3c0-.55-.45-1-1-1s-1 .45-1 1v14a.998.998 0 001 1h18c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var WaterfallChartIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"waterfall-chart\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M13 11h2V5h-2v6zM3 5H1v6h2V5zm11-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 3h6V1H5v2zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3 15h6v-2H5v2z'];\nvar svgPaths20 = ['M18 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM2 16c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm15-1h2V5h-2v10zM3 5H1v10h2V5zM2 0C.9 0 0 .9 0 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm3 3h10V1H5v2zm13 13c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM5 19h10v-2H5v2z'];\nexport var WidgetIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"widget\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M1 3h14c.55 0 1 .45 1 1v8c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1zm1 2v6h12V5H2zm3 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nvar svgPaths20 = ['M1 4h18c.55 0 1 .45 1 1v10c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V5c0-.55.45-1 1-1zm1 2v8h16V6H2zm4 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z'];\nexport var WidgetButtonIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"widget-button\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 0H2c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H3v-3h10v3zm0-4H3V2h10v8z'];\nvar svgPaths20 = ['M17 0H3c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H4v-4h12v4zm0-5H4V2h12v11z'];\nexport var WidgetFooterIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"widget-footer\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M14 0H2c-.55 0-1 .45-1 1v14c0 .55.45 1 1 1h12c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 14H3V6h10v8zm0-9H3V2h10v3z'];\nvar svgPaths20 = ['M17 0H3c-.55 0-1 .45-1 1v18c0 .55.45 1 1 1h14c.55 0 1-.45 1-1V1c0-.55-.45-1-1-1zm-1 18H4V7h12v11zm0-12H4V2h12v4z'];\nexport var WidgetHeaderIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"widget-header\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M15.83 3.7l-3.06 3.05-2.84-.7-.7-2.83L12.29.17a5.004 5.004 0 00-4.83 1.29 4.967 4.967 0 00-1.12 5.36L.58 12.58c-.36.36-.58.86-.58 1.41 0 1.1.9 2 2 2 .55 0 1.05-.22 1.41-.59l5.77-5.77c1.79.69 3.91.33 5.35-1.12 1.32-1.3 1.74-3.15 1.3-4.81z'];\nvar svgPaths20 = ['M19.8 4.44L16.13 8.1l-3.55-.71-.71-3.53L15.54.21c-2.01-.53-4.23-.03-5.8 1.53-1.86 1.85-2.23 4.6-1.14 6.83L.59 16.59C.22 16.95 0 17.45 0 18a2 2 0 002 2c.55 0 1.05-.22 1.41-.59l8.03-8.04c2.23 1.05 4.97.67 6.82-1.16 1.57-1.56 2.07-3.77 1.54-5.77z'];\nexport var WrenchIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"wrench\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M7.99 5.99v-2c0-.55-.45-1-1-1s-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1v-2h2c.55 0 1-.45 1-1s-.45-1-1-1h-2zm7.56 7.44l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nvar svgPaths20 = ['M19.56 17.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm3-7H9V5c0-.55-.45-1-1-1s-1 .45-1 1v2H5c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V9h2c.55 0 1-.45 1-1s-.45-1-1-1z'];\nexport var ZoomInIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"zoom-in\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M3.99 5.99c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1h-6zm11.56 7.44l-2.67-2.68a6.94 6.94 0 001.11-3.76c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7c1.39 0 2.68-.42 3.76-1.11l2.68 2.67a1.498 1.498 0 102.12-2.12zm-8.56-1.44c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z'];\nvar svgPaths20 = ['M11 7H5c-.55 0-1 .45-1 1s.45 1 1 1h6c.55 0 1-.45 1-1s-.45-1-1-1zm8.56 10.44l-4.94-4.94A8.004 8.004 0 0016 8c0-4.42-3.58-8-8-8S0 3.58 0 8s3.58 8 8 8c1.67 0 3.21-.51 4.5-1.38l4.94 4.94a1.498 1.498 0 102.12-2.12zM8 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z'];\nexport var ZoomOutIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"zoom-out\"\n }, props));\n}));","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M11 10a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42L12.59 8 11.3 9.29c-.19.18-.3.43-.3.71zM1 5c.55 0 1-.45 1-1V2h2c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v3c0 .55.45 1 1 1zm4 1a1.003 1.003 0 00-1.71-.71l-2 2C1.11 7.47 1 7.72 1 8c0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L3.41 8 4.7 6.71c.19-.18.3-.43.3-.71zm1-1c.28 0 .53-.11.71-.29L8 3.41 9.29 4.7c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C8.53 1.11 8.28 1 8 1s-.53.11-.71.29l-2 2A1.003 1.003 0 006 5zm9 6c-.55 0-1 .45-1 1v2h-2c-.55 0-1 .45-1 1s.45 1 1 1h3c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm0-11h-3c-.55 0-1 .45-1 1s.45 1 1 1h2v2c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zM4 14H2v-2c0-.55-.45-1-1-1s-1 .45-1 1v3c0 .55.45 1 1 1h3c.55 0 1-.45 1-1s-.45-1-1-1zm6-3c-.28 0-.53.11-.71.29L8 12.59 6.71 11.3A.965.965 0 006 11a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0010 11z'];\nvar svgPaths20 = ['M1 7c.55 0 1-.45 1-1V2h4c.55 0 1-.45 1-1s-.45-1-1-1H1C.45 0 0 .45 0 1v5c0 .55.45 1 1 1zm5 1a1.003 1.003 0 00-1.71-.71l-2 2c-.18.18-.29.43-.29.71 0 .28.11.53.29.71l2 2a1.003 1.003 0 001.42-1.42L4.41 10 5.7 8.71c.19-.18.3-.43.3-.71zm2-2c.28 0 .53-.11.71-.29L10 4.41l1.29 1.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71l-2-2C10.53 2.11 10.28 2 10 2s-.53.11-.71.29l-2 2A1.003 1.003 0 008 6zM6 18H2v-4c0-.55-.45-1-1-1s-1 .45-1 1v5c0 .55.45 1 1 1h5c.55 0 1-.45 1-1s-.45-1-1-1zm8-6a1.003 1.003 0 001.71.71l2-2c.18-.18.29-.43.29-.71 0-.28-.11-.53-.29-.71l-2-2a1.003 1.003 0 00-1.42 1.42l1.3 1.29-1.29 1.29c-.19.18-.3.43-.3.71zm5-12h-5c-.55 0-1 .45-1 1s.45 1 1 1h4v4c0 .55.45 1 1 1s1-.45 1-1V1c0-.55-.45-1-1-1zm-7 14c-.28 0-.53.11-.71.29L10 15.59 8.71 14.3A.965.965 0 008 14a1.003 1.003 0 00-.71 1.71l2 2c.18.18.43.29.71.29s.53-.11.71-.29l2-2A1.003 1.003 0 0012 14zm7-1c-.55 0-1 .45-1 1v4h-4c-.55 0-1 .45-1 1s.45 1 1 1h5c.55 0 1-.45 1-1v-5c0-.55-.45-1-1-1z'];\nexport var ZoomToFitIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"zoom-to-fit\"\n }, props));\n}));","// This is a generated file. DO NOT modify directly.\nimport * as IconNames from './generated/IconNames';\nexport { IconNames };\nexport { IconNameMapper } from './generated/IconNameMapper';\nexport { AddIcon } from './generated/AddIcon';\nexport { AddColumnLeftIcon } from './generated/AddColumnLeftIcon';\nexport { AddColumnRightIcon } from './generated/AddColumnRightIcon';\nexport { AddRowBottomIcon } from './generated/AddRowBottomIcon';\nexport { AddRowTopIcon } from './generated/AddRowTopIcon';\nexport { AddToArtifactIcon } from './generated/AddToArtifactIcon';\nexport { AddToFolderIcon } from './generated/AddToFolderIcon';\nexport { AirplaneIcon } from './generated/AirplaneIcon';\nexport { AlignCenterIcon } from './generated/AlignCenterIcon';\nexport { AlignJustifyIcon } from './generated/AlignJustifyIcon';\nexport { AlignLeftIcon } from './generated/AlignLeftIcon';\nexport { AlignRightIcon } from './generated/AlignRightIcon';\nexport { AlignmentBottomIcon } from './generated/AlignmentBottomIcon';\nexport { AlignmentHorizontalCenterIcon } from './generated/AlignmentHorizontalCenterIcon';\nexport { AlignmentLeftIcon } from './generated/AlignmentLeftIcon';\nexport { AlignmentRightIcon } from './generated/AlignmentRightIcon';\nexport { AlignmentTopIcon } from './generated/AlignmentTopIcon';\nexport { AlignmentVerticalCenterIcon } from './generated/AlignmentVerticalCenterIcon';\nexport { AnnotationIcon } from './generated/AnnotationIcon';\nexport { ApplicationIcon } from './generated/ApplicationIcon';\nexport { ApplicationsIcon } from './generated/ApplicationsIcon';\nexport { ArchiveIcon } from './generated/ArchiveIcon';\nexport { ArrowBottomLeftIcon } from './generated/ArrowBottomLeftIcon';\nexport { ArrowBottomRightIcon } from './generated/ArrowBottomRightIcon';\nexport { ArrowDownIcon } from './generated/ArrowDownIcon';\nexport { ArrowLeftIcon } from './generated/ArrowLeftIcon';\nexport { ArrowRightIcon } from './generated/ArrowRightIcon';\nexport { ArrowTopLeftIcon } from './generated/ArrowTopLeftIcon';\nexport { ArrowTopRightIcon } from './generated/ArrowTopRightIcon';\nexport { ArrowUpIcon } from './generated/ArrowUpIcon';\nexport { ArrowsHorizontalIcon } from './generated/ArrowsHorizontalIcon';\nexport { ArrowsVerticalIcon } from './generated/ArrowsVerticalIcon';\nexport { AsteriskIcon } from './generated/AsteriskIcon';\nexport { AutomaticUpdatesIcon } from './generated/AutomaticUpdatesIcon';\nexport { BadgeIcon } from './generated/BadgeIcon';\nexport { BanCircleIcon } from './generated/BanCircleIcon';\nexport { BankAccountIcon } from './generated/BankAccountIcon';\nexport { BarcodeIcon } from './generated/BarcodeIcon';\nexport { BlankIcon } from './generated/BlankIcon';\nexport { BlockedPersonIcon } from './generated/BlockedPersonIcon';\nexport { BoldIcon } from './generated/BoldIcon';\nexport { BookIcon } from './generated/BookIcon';\nexport { BookmarkIcon } from './generated/BookmarkIcon';\nexport { BoxIcon } from './generated/BoxIcon';\nexport { BriefcaseIcon } from './generated/BriefcaseIcon';\nexport { BringDataIcon } from './generated/BringDataIcon';\nexport { BuildIcon } from './generated/BuildIcon';\nexport { CalculatorIcon } from './generated/CalculatorIcon';\nexport { CalendarIcon } from './generated/CalendarIcon';\nexport { CameraIcon } from './generated/CameraIcon';\nexport { CaretDownIcon } from './generated/CaretDownIcon';\nexport { CaretLeftIcon } from './generated/CaretLeftIcon';\nexport { CaretRightIcon } from './generated/CaretRightIcon';\nexport { CaretUpIcon } from './generated/CaretUpIcon';\nexport { CellTowerIcon } from './generated/CellTowerIcon';\nexport { ChangesIcon } from './generated/ChangesIcon';\nexport { ChartIcon } from './generated/ChartIcon';\nexport { ChatIcon } from './generated/ChatIcon';\nexport { ChevronBackwardIcon } from './generated/ChevronBackwardIcon';\nexport { ChevronDownIcon } from './generated/ChevronDownIcon';\nexport { ChevronForwardIcon } from './generated/ChevronForwardIcon';\nexport { ChevronLeftIcon } from './generated/ChevronLeftIcon';\nexport { ChevronRightIcon } from './generated/ChevronRightIcon';\nexport { ChevronUpIcon } from './generated/ChevronUpIcon';\nexport { CircleIcon } from './generated/CircleIcon';\nexport { CircleArrowDownIcon } from './generated/CircleArrowDownIcon';\nexport { CircleArrowLeftIcon } from './generated/CircleArrowLeftIcon';\nexport { CircleArrowRightIcon } from './generated/CircleArrowRightIcon';\nexport { CircleArrowUpIcon } from './generated/CircleArrowUpIcon';\nexport { CitationIcon } from './generated/CitationIcon';\nexport { CleanIcon } from './generated/CleanIcon';\nexport { ClipboardIcon } from './generated/ClipboardIcon';\nexport { CloudIcon } from './generated/CloudIcon';\nexport { CloudDownloadIcon } from './generated/CloudDownloadIcon';\nexport { CloudUploadIcon } from './generated/CloudUploadIcon';\nexport { CodeIcon } from './generated/CodeIcon';\nexport { CodeBlockIcon } from './generated/CodeBlockIcon';\nexport { CogIcon } from './generated/CogIcon';\nexport { CollapseAllIcon } from './generated/CollapseAllIcon';\nexport { ColumnLayoutIcon } from './generated/ColumnLayoutIcon';\nexport { CommentIcon } from './generated/CommentIcon';\nexport { ComparisonIcon } from './generated/ComparisonIcon';\nexport { CompassIcon } from './generated/CompassIcon';\nexport { CompressedIcon } from './generated/CompressedIcon';\nexport { ConfirmIcon } from './generated/ConfirmIcon';\nexport { ConsoleIcon } from './generated/ConsoleIcon';\nexport { ContrastIcon } from './generated/ContrastIcon';\nexport { ControlIcon } from './generated/ControlIcon';\nexport { CreditCardIcon } from './generated/CreditCardIcon';\nexport { CrossIcon } from './generated/CrossIcon';\nexport { CrownIcon } from './generated/CrownIcon';\nexport { CubeIcon } from './generated/CubeIcon';\nexport { CubeAddIcon } from './generated/CubeAddIcon';\nexport { CubeRemoveIcon } from './generated/CubeRemoveIcon';\nexport { CurvedRangeChartIcon } from './generated/CurvedRangeChartIcon';\nexport { CutIcon } from './generated/CutIcon';\nexport { DashboardIcon } from './generated/DashboardIcon';\nexport { DataLineageIcon } from './generated/DataLineageIcon';\nexport { DatabaseIcon } from './generated/DatabaseIcon';\nexport { DeleteIcon } from './generated/DeleteIcon';\nexport { DeltaIcon } from './generated/DeltaIcon';\nexport { DeriveColumnIcon } from './generated/DeriveColumnIcon';\nexport { DesktopIcon } from './generated/DesktopIcon';\nexport { DiagramTreeIcon } from './generated/DiagramTreeIcon';\nexport { DirectionLeftIcon } from './generated/DirectionLeftIcon';\nexport { DirectionRightIcon } from './generated/DirectionRightIcon';\nexport { DisableIcon } from './generated/DisableIcon';\nexport { DocumentIcon } from './generated/DocumentIcon';\nexport { DocumentOpenIcon } from './generated/DocumentOpenIcon';\nexport { DocumentShareIcon } from './generated/DocumentShareIcon';\nexport { DollarIcon } from './generated/DollarIcon';\nexport { DotIcon } from './generated/DotIcon';\nexport { DoubleCaretHorizontalIcon } from './generated/DoubleCaretHorizontalIcon';\nexport { DoubleCaretVerticalIcon } from './generated/DoubleCaretVerticalIcon';\nexport { DoubleChevronDownIcon } from './generated/DoubleChevronDownIcon';\nexport { DoubleChevronLeftIcon } from './generated/DoubleChevronLeftIcon';\nexport { DoubleChevronRightIcon } from './generated/DoubleChevronRightIcon';\nexport { DoubleChevronUpIcon } from './generated/DoubleChevronUpIcon';\nexport { DoughnutChartIcon } from './generated/DoughnutChartIcon';\nexport { DownloadIcon } from './generated/DownloadIcon';\nexport { DragHandleHorizontalIcon } from './generated/DragHandleHorizontalIcon';\nexport { DragHandleVerticalIcon } from './generated/DragHandleVerticalIcon';\nexport { DrawIcon } from './generated/DrawIcon';\nexport { DriveTimeIcon } from './generated/DriveTimeIcon';\nexport { DuplicateIcon } from './generated/DuplicateIcon';\nexport { EditIcon } from './generated/EditIcon';\nexport { EjectIcon } from './generated/EjectIcon';\nexport { EndorsedIcon } from './generated/EndorsedIcon';\nexport { EnvelopeIcon } from './generated/EnvelopeIcon';\nexport { EqualsIcon } from './generated/EqualsIcon';\nexport { EraserIcon } from './generated/EraserIcon';\nexport { ErrorIcon } from './generated/ErrorIcon';\nexport { EuroIcon } from './generated/EuroIcon';\nexport { ExchangeIcon } from './generated/ExchangeIcon';\nexport { ExcludeRowIcon } from './generated/ExcludeRowIcon';\nexport { ExpandAllIcon } from './generated/ExpandAllIcon';\nexport { ExportIcon } from './generated/ExportIcon';\nexport { EyeOffIcon } from './generated/EyeOffIcon';\nexport { EyeOnIcon } from './generated/EyeOnIcon';\nexport { EyeOpenIcon } from './generated/EyeOpenIcon';\nexport { FastBackwardIcon } from './generated/FastBackwardIcon';\nexport { FastForwardIcon } from './generated/FastForwardIcon';\nexport { FeedIcon } from './generated/FeedIcon';\nexport { FeedSubscribedIcon } from './generated/FeedSubscribedIcon';\nexport { FilmIcon } from './generated/FilmIcon';\nexport { FilterIcon } from './generated/FilterIcon';\nexport { FilterKeepIcon } from './generated/FilterKeepIcon';\nexport { FilterListIcon } from './generated/FilterListIcon';\nexport { FilterOpenIcon } from './generated/FilterOpenIcon';\nexport { FilterRemoveIcon } from './generated/FilterRemoveIcon';\nexport { FlagIcon } from './generated/FlagIcon';\nexport { FlameIcon } from './generated/FlameIcon';\nexport { FlashIcon } from './generated/FlashIcon';\nexport { FloppyDiskIcon } from './generated/FloppyDiskIcon';\nexport { FlowBranchIcon } from './generated/FlowBranchIcon';\nexport { FlowEndIcon } from './generated/FlowEndIcon';\nexport { FlowLinearIcon } from './generated/FlowLinearIcon';\nexport { FlowReviewIcon } from './generated/FlowReviewIcon';\nexport { FlowReviewBranchIcon } from './generated/FlowReviewBranchIcon';\nexport { FlowsIcon } from './generated/FlowsIcon';\nexport { FolderCloseIcon } from './generated/FolderCloseIcon';\nexport { FolderNewIcon } from './generated/FolderNewIcon';\nexport { FolderOpenIcon } from './generated/FolderOpenIcon';\nexport { FolderSharedIcon } from './generated/FolderSharedIcon';\nexport { FolderSharedOpenIcon } from './generated/FolderSharedOpenIcon';\nexport { FollowerIcon } from './generated/FollowerIcon';\nexport { FollowingIcon } from './generated/FollowingIcon';\nexport { FontIcon } from './generated/FontIcon';\nexport { ForkIcon } from './generated/ForkIcon';\nexport { FormIcon } from './generated/FormIcon';\nexport { FullCircleIcon } from './generated/FullCircleIcon';\nexport { FullStackedChartIcon } from './generated/FullStackedChartIcon';\nexport { FullscreenIcon } from './generated/FullscreenIcon';\nexport { FunctionIcon } from './generated/FunctionIcon';\nexport { GanttChartIcon } from './generated/GanttChartIcon';\nexport { GeolocationIcon } from './generated/GeolocationIcon';\nexport { GeosearchIcon } from './generated/GeosearchIcon';\nexport { GitBranchIcon } from './generated/GitBranchIcon';\nexport { GitCommitIcon } from './generated/GitCommitIcon';\nexport { GitMergeIcon } from './generated/GitMergeIcon';\nexport { GitNewBranchIcon } from './generated/GitNewBranchIcon';\nexport { GitPullIcon } from './generated/GitPullIcon';\nexport { GitPushIcon } from './generated/GitPushIcon';\nexport { GitRepoIcon } from './generated/GitRepoIcon';\nexport { GlassIcon } from './generated/GlassIcon';\nexport { GlobeIcon } from './generated/GlobeIcon';\nexport { GlobeNetworkIcon } from './generated/GlobeNetworkIcon';\nexport { GraphIcon } from './generated/GraphIcon';\nexport { GraphRemoveIcon } from './generated/GraphRemoveIcon';\nexport { GreaterThanIcon } from './generated/GreaterThanIcon';\nexport { GreaterThanOrEqualToIcon } from './generated/GreaterThanOrEqualToIcon';\nexport { GridIcon } from './generated/GridIcon';\nexport { GridViewIcon } from './generated/GridViewIcon';\nexport { GroupObjectsIcon } from './generated/GroupObjectsIcon';\nexport { GroupedBarChartIcon } from './generated/GroupedBarChartIcon';\nexport { HandIcon } from './generated/HandIcon';\nexport { HandDownIcon } from './generated/HandDownIcon';\nexport { HandLeftIcon } from './generated/HandLeftIcon';\nexport { HandRightIcon } from './generated/HandRightIcon';\nexport { HandUpIcon } from './generated/HandUpIcon';\nexport { HeaderIcon } from './generated/HeaderIcon';\nexport { HeaderOneIcon } from './generated/HeaderOneIcon';\nexport { HeaderTwoIcon } from './generated/HeaderTwoIcon';\nexport { HeadsetIcon } from './generated/HeadsetIcon';\nexport { HeartIcon } from './generated/HeartIcon';\nexport { HeartBrokenIcon } from './generated/HeartBrokenIcon';\nexport { HeatGridIcon } from './generated/HeatGridIcon';\nexport { HeatmapIcon } from './generated/HeatmapIcon';\nexport { HelpIcon } from './generated/HelpIcon';\nexport { HelperManagementIcon } from './generated/HelperManagementIcon';\nexport { HighlightIcon } from './generated/HighlightIcon';\nexport { HistoryIcon } from './generated/HistoryIcon';\nexport { HomeIcon } from './generated/HomeIcon';\nexport { HorizontalBarChartIcon } from './generated/HorizontalBarChartIcon';\nexport { HorizontalBarChartAscIcon } from './generated/HorizontalBarChartAscIcon';\nexport { HorizontalBarChartDescIcon } from './generated/HorizontalBarChartDescIcon';\nexport { HorizontalDistributionIcon } from './generated/HorizontalDistributionIcon';\nexport { IdNumberIcon } from './generated/IdNumberIcon';\nexport { ImageRotateLeftIcon } from './generated/ImageRotateLeftIcon';\nexport { ImageRotateRightIcon } from './generated/ImageRotateRightIcon';\nexport { ImportIcon } from './generated/ImportIcon';\nexport { InboxIcon } from './generated/InboxIcon';\nexport { InboxFilteredIcon } from './generated/InboxFilteredIcon';\nexport { InboxGeoIcon } from './generated/InboxGeoIcon';\nexport { InboxSearchIcon } from './generated/InboxSearchIcon';\nexport { InboxUpdateIcon } from './generated/InboxUpdateIcon';\nexport { InfoSignIcon } from './generated/InfoSignIcon';\nexport { InheritanceIcon } from './generated/InheritanceIcon';\nexport { InnerJoinIcon } from './generated/InnerJoinIcon';\nexport { InsertIcon } from './generated/InsertIcon';\nexport { IntersectionIcon } from './generated/IntersectionIcon';\nexport { IpAddressIcon } from './generated/IpAddressIcon';\nexport { IssueIcon } from './generated/IssueIcon';\nexport { IssueClosedIcon } from './generated/IssueClosedIcon';\nexport { IssueNewIcon } from './generated/IssueNewIcon';\nexport { ItalicIcon } from './generated/ItalicIcon';\nexport { JoinTableIcon } from './generated/JoinTableIcon';\nexport { KeyIcon } from './generated/KeyIcon';\nexport { KeyBackspaceIcon } from './generated/KeyBackspaceIcon';\nexport { KeyCommandIcon } from './generated/KeyCommandIcon';\nexport { KeyControlIcon } from './generated/KeyControlIcon';\nexport { KeyDeleteIcon } from './generated/KeyDeleteIcon';\nexport { KeyEnterIcon } from './generated/KeyEnterIcon';\nexport { KeyEscapeIcon } from './generated/KeyEscapeIcon';\nexport { KeyOptionIcon } from './generated/KeyOptionIcon';\nexport { KeyShiftIcon } from './generated/KeyShiftIcon';\nexport { KeyTabIcon } from './generated/KeyTabIcon';\nexport { KnownVehicleIcon } from './generated/KnownVehicleIcon';\nexport { LabelIcon } from './generated/LabelIcon';\nexport { LayerIcon } from './generated/LayerIcon';\nexport { LayersIcon } from './generated/LayersIcon';\nexport { LayoutIcon } from './generated/LayoutIcon';\nexport { LayoutAutoIcon } from './generated/LayoutAutoIcon';\nexport { LayoutBalloonIcon } from './generated/LayoutBalloonIcon';\nexport { LayoutCircleIcon } from './generated/LayoutCircleIcon';\nexport { LayoutGridIcon } from './generated/LayoutGridIcon';\nexport { LayoutGroupByIcon } from './generated/LayoutGroupByIcon';\nexport { LayoutHierarchyIcon } from './generated/LayoutHierarchyIcon';\nexport { LayoutLinearIcon } from './generated/LayoutLinearIcon';\nexport { LayoutSkewGridIcon } from './generated/LayoutSkewGridIcon';\nexport { LayoutSortedClustersIcon } from './generated/LayoutSortedClustersIcon';\nexport { LearningIcon } from './generated/LearningIcon';\nexport { LeftJoinIcon } from './generated/LeftJoinIcon';\nexport { LessThanIcon } from './generated/LessThanIcon';\nexport { LessThanOrEqualToIcon } from './generated/LessThanOrEqualToIcon';\nexport { LifesaverIcon } from './generated/LifesaverIcon';\nexport { LightbulbIcon } from './generated/LightbulbIcon';\nexport { LinkIcon } from './generated/LinkIcon';\nexport { ListIcon } from './generated/ListIcon';\nexport { ListColumnsIcon } from './generated/ListColumnsIcon';\nexport { ListDetailViewIcon } from './generated/ListDetailViewIcon';\nexport { LocateIcon } from './generated/LocateIcon';\nexport { LockIcon } from './generated/LockIcon';\nexport { LogInIcon } from './generated/LogInIcon';\nexport { LogOutIcon } from './generated/LogOutIcon';\nexport { ManualIcon } from './generated/ManualIcon';\nexport { ManuallyEnteredDataIcon } from './generated/ManuallyEnteredDataIcon';\nexport { MapIcon } from './generated/MapIcon';\nexport { MapCreateIcon } from './generated/MapCreateIcon';\nexport { MapMarkerIcon } from './generated/MapMarkerIcon';\nexport { MaximizeIcon } from './generated/MaximizeIcon';\nexport { MediaIcon } from './generated/MediaIcon';\nexport { MenuIcon } from './generated/MenuIcon';\nexport { MenuClosedIcon } from './generated/MenuClosedIcon';\nexport { MenuOpenIcon } from './generated/MenuOpenIcon';\nexport { MergeColumnsIcon } from './generated/MergeColumnsIcon';\nexport { MergeLinksIcon } from './generated/MergeLinksIcon';\nexport { MinimizeIcon } from './generated/MinimizeIcon';\nexport { MinusIcon } from './generated/MinusIcon';\nexport { MobilePhoneIcon } from './generated/MobilePhoneIcon';\nexport { MobileVideoIcon } from './generated/MobileVideoIcon';\nexport { MoonIcon } from './generated/MoonIcon';\nexport { MoreIcon } from './generated/MoreIcon';\nexport { MountainIcon } from './generated/MountainIcon';\nexport { MoveIcon } from './generated/MoveIcon';\nexport { MugshotIcon } from './generated/MugshotIcon';\nexport { MultiSelectIcon } from './generated/MultiSelectIcon';\nexport { MusicIcon } from './generated/MusicIcon';\nexport { NewDrawingIcon } from './generated/NewDrawingIcon';\nexport { NewGridItemIcon } from './generated/NewGridItemIcon';\nexport { NewLayerIcon } from './generated/NewLayerIcon';\nexport { NewLayersIcon } from './generated/NewLayersIcon';\nexport { NewLinkIcon } from './generated/NewLinkIcon';\nexport { NewObjectIcon } from './generated/NewObjectIcon';\nexport { NewPersonIcon } from './generated/NewPersonIcon';\nexport { NewPrescriptionIcon } from './generated/NewPrescriptionIcon';\nexport { NewTextBoxIcon } from './generated/NewTextBoxIcon';\nexport { NinjaIcon } from './generated/NinjaIcon';\nexport { NotEqualToIcon } from './generated/NotEqualToIcon';\nexport { NotificationsIcon } from './generated/NotificationsIcon';\nexport { NotificationsUpdatedIcon } from './generated/NotificationsUpdatedIcon';\nexport { NumberedListIcon } from './generated/NumberedListIcon';\nexport { NumericalIcon } from './generated/NumericalIcon';\nexport { OfficeIcon } from './generated/OfficeIcon';\nexport { OfflineIcon } from './generated/OfflineIcon';\nexport { OilFieldIcon } from './generated/OilFieldIcon';\nexport { OneColumnIcon } from './generated/OneColumnIcon';\nexport { OutdatedIcon } from './generated/OutdatedIcon';\nexport { PageLayoutIcon } from './generated/PageLayoutIcon';\nexport { PanelStatsIcon } from './generated/PanelStatsIcon';\nexport { PanelTableIcon } from './generated/PanelTableIcon';\nexport { PaperclipIcon } from './generated/PaperclipIcon';\nexport { ParagraphIcon } from './generated/ParagraphIcon';\nexport { PathIcon } from './generated/PathIcon';\nexport { PathSearchIcon } from './generated/PathSearchIcon';\nexport { PauseIcon } from './generated/PauseIcon';\nexport { PeopleIcon } from './generated/PeopleIcon';\nexport { PercentageIcon } from './generated/PercentageIcon';\nexport { PersonIcon } from './generated/PersonIcon';\nexport { PhoneIcon } from './generated/PhoneIcon';\nexport { PieChartIcon } from './generated/PieChartIcon';\nexport { PinIcon } from './generated/PinIcon';\nexport { PivotIcon } from './generated/PivotIcon';\nexport { PivotTableIcon } from './generated/PivotTableIcon';\nexport { PlayIcon } from './generated/PlayIcon';\nexport { PlusIcon } from './generated/PlusIcon';\nexport { PolygonFilterIcon } from './generated/PolygonFilterIcon';\nexport { PowerIcon } from './generated/PowerIcon';\nexport { PredictiveAnalysisIcon } from './generated/PredictiveAnalysisIcon';\nexport { PrescriptionIcon } from './generated/PrescriptionIcon';\nexport { PresentationIcon } from './generated/PresentationIcon';\nexport { PrintIcon } from './generated/PrintIcon';\nexport { ProjectsIcon } from './generated/ProjectsIcon';\nexport { PropertiesIcon } from './generated/PropertiesIcon';\nexport { PropertyIcon } from './generated/PropertyIcon';\nexport { PublishFunctionIcon } from './generated/PublishFunctionIcon';\nexport { PulseIcon } from './generated/PulseIcon';\nexport { RandomIcon } from './generated/RandomIcon';\nexport { RecordIcon } from './generated/RecordIcon';\nexport { RedoIcon } from './generated/RedoIcon';\nexport { RefreshIcon } from './generated/RefreshIcon';\nexport { RegressionChartIcon } from './generated/RegressionChartIcon';\nexport { RemoveIcon } from './generated/RemoveIcon';\nexport { RemoveColumnIcon } from './generated/RemoveColumnIcon';\nexport { RemoveColumnLeftIcon } from './generated/RemoveColumnLeftIcon';\nexport { RemoveColumnRightIcon } from './generated/RemoveColumnRightIcon';\nexport { RemoveRowBottomIcon } from './generated/RemoveRowBottomIcon';\nexport { RemoveRowTopIcon } from './generated/RemoveRowTopIcon';\nexport { RepeatIcon } from './generated/RepeatIcon';\nexport { ResetIcon } from './generated/ResetIcon';\nexport { ResolveIcon } from './generated/ResolveIcon';\nexport { RigIcon } from './generated/RigIcon';\nexport { RightJoinIcon } from './generated/RightJoinIcon';\nexport { RingIcon } from './generated/RingIcon';\nexport { RotateDocumentIcon } from './generated/RotateDocumentIcon';\nexport { RotatePageIcon } from './generated/RotatePageIcon';\nexport { SatelliteIcon } from './generated/SatelliteIcon';\nexport { SavedIcon } from './generated/SavedIcon';\nexport { ScatterPlotIcon } from './generated/ScatterPlotIcon';\nexport { SearchIcon } from './generated/SearchIcon';\nexport { SearchAroundIcon } from './generated/SearchAroundIcon';\nexport { SearchTemplateIcon } from './generated/SearchTemplateIcon';\nexport { SearchTextIcon } from './generated/SearchTextIcon';\nexport { SegmentedControlIcon } from './generated/SegmentedControlIcon';\nexport { SelectIcon } from './generated/SelectIcon';\nexport { SelectionIcon } from './generated/SelectionIcon';\nexport { SendToIcon } from './generated/SendToIcon';\nexport { SendToGraphIcon } from './generated/SendToGraphIcon';\nexport { SendToMapIcon } from './generated/SendToMapIcon';\nexport { SeriesAddIcon } from './generated/SeriesAddIcon';\nexport { SeriesConfigurationIcon } from './generated/SeriesConfigurationIcon';\nexport { SeriesDerivedIcon } from './generated/SeriesDerivedIcon';\nexport { SeriesFilteredIcon } from './generated/SeriesFilteredIcon';\nexport { SeriesSearchIcon } from './generated/SeriesSearchIcon';\nexport { SettingsIcon } from './generated/SettingsIcon';\nexport { ShareIcon } from './generated/ShareIcon';\nexport { ShieldIcon } from './generated/ShieldIcon';\nexport { ShopIcon } from './generated/ShopIcon';\nexport { ShoppingCartIcon } from './generated/ShoppingCartIcon';\nexport { SignalSearchIcon } from './generated/SignalSearchIcon';\nexport { SimCardIcon } from './generated/SimCardIcon';\nexport { SlashIcon } from './generated/SlashIcon';\nexport { SmallCrossIcon } from './generated/SmallCrossIcon';\nexport { SmallMinusIcon } from './generated/SmallMinusIcon';\nexport { SmallPlusIcon } from './generated/SmallPlusIcon';\nexport { SmallTickIcon } from './generated/SmallTickIcon';\nexport { SnowflakeIcon } from './generated/SnowflakeIcon';\nexport { SocialMediaIcon } from './generated/SocialMediaIcon';\nexport { SortIcon } from './generated/SortIcon';\nexport { SortAlphabeticalIcon } from './generated/SortAlphabeticalIcon';\nexport { SortAlphabeticalDescIcon } from './generated/SortAlphabeticalDescIcon';\nexport { SortAscIcon } from './generated/SortAscIcon';\nexport { SortDescIcon } from './generated/SortDescIcon';\nexport { SortNumericalIcon } from './generated/SortNumericalIcon';\nexport { SortNumericalDescIcon } from './generated/SortNumericalDescIcon';\nexport { SplitColumnsIcon } from './generated/SplitColumnsIcon';\nexport { SquareIcon } from './generated/SquareIcon';\nexport { StackedChartIcon } from './generated/StackedChartIcon';\nexport { StarIcon } from './generated/StarIcon';\nexport { StarEmptyIcon } from './generated/StarEmptyIcon';\nexport { StepBackwardIcon } from './generated/StepBackwardIcon';\nexport { StepChartIcon } from './generated/StepChartIcon';\nexport { StepForwardIcon } from './generated/StepForwardIcon';\nexport { StopIcon } from './generated/StopIcon';\nexport { StopwatchIcon } from './generated/StopwatchIcon';\nexport { StrikethroughIcon } from './generated/StrikethroughIcon';\nexport { StyleIcon } from './generated/StyleIcon';\nexport { SwapHorizontalIcon } from './generated/SwapHorizontalIcon';\nexport { SwapVerticalIcon } from './generated/SwapVerticalIcon';\nexport { SymbolCircleIcon } from './generated/SymbolCircleIcon';\nexport { SymbolCrossIcon } from './generated/SymbolCrossIcon';\nexport { SymbolDiamondIcon } from './generated/SymbolDiamondIcon';\nexport { SymbolSquareIcon } from './generated/SymbolSquareIcon';\nexport { SymbolTriangleDownIcon } from './generated/SymbolTriangleDownIcon';\nexport { SymbolTriangleUpIcon } from './generated/SymbolTriangleUpIcon';\nexport { TagIcon } from './generated/TagIcon';\nexport { TakeActionIcon } from './generated/TakeActionIcon';\nexport { TaxiIcon } from './generated/TaxiIcon';\nexport { TextHighlightIcon } from './generated/TextHighlightIcon';\nexport { ThIcon } from './generated/ThIcon';\nexport { ThDerivedIcon } from './generated/ThDerivedIcon';\nexport { ThDisconnectIcon } from './generated/ThDisconnectIcon';\nexport { ThFilteredIcon } from './generated/ThFilteredIcon';\nexport { ThListIcon } from './generated/ThListIcon';\nexport { ThumbsDownIcon } from './generated/ThumbsDownIcon';\nexport { ThumbsUpIcon } from './generated/ThumbsUpIcon';\nexport { TickIcon } from './generated/TickIcon';\nexport { TickCircleIcon } from './generated/TickCircleIcon';\nexport { TimeIcon } from './generated/TimeIcon';\nexport { TimelineAreaChartIcon } from './generated/TimelineAreaChartIcon';\nexport { TimelineBarChartIcon } from './generated/TimelineBarChartIcon';\nexport { TimelineEventsIcon } from './generated/TimelineEventsIcon';\nexport { TimelineLineChartIcon } from './generated/TimelineLineChartIcon';\nexport { TintIcon } from './generated/TintIcon';\nexport { TorchIcon } from './generated/TorchIcon';\nexport { TractorIcon } from './generated/TractorIcon';\nexport { TrainIcon } from './generated/TrainIcon';\nexport { TranslateIcon } from './generated/TranslateIcon';\nexport { TrashIcon } from './generated/TrashIcon';\nexport { TreeIcon } from './generated/TreeIcon';\nexport { TrendingDownIcon } from './generated/TrendingDownIcon';\nexport { TrendingUpIcon } from './generated/TrendingUpIcon';\nexport { TruckIcon } from './generated/TruckIcon';\nexport { TwoColumnsIcon } from './generated/TwoColumnsIcon';\nexport { UnarchiveIcon } from './generated/UnarchiveIcon';\nexport { UnderlineIcon } from './generated/UnderlineIcon';\nexport { UndoIcon } from './generated/UndoIcon';\nexport { UngroupObjectsIcon } from './generated/UngroupObjectsIcon';\nexport { UnknownVehicleIcon } from './generated/UnknownVehicleIcon';\nexport { UnlockIcon } from './generated/UnlockIcon';\nexport { UnpinIcon } from './generated/UnpinIcon';\nexport { UnresolveIcon } from './generated/UnresolveIcon';\nexport { UpdatedIcon } from './generated/UpdatedIcon';\nexport { UploadIcon } from './generated/UploadIcon';\nexport { UserIcon } from './generated/UserIcon';\nexport { VariableIcon } from './generated/VariableIcon';\nexport { VerticalBarChartAscIcon } from './generated/VerticalBarChartAscIcon';\nexport { VerticalBarChartDescIcon } from './generated/VerticalBarChartDescIcon';\nexport { VerticalDistributionIcon } from './generated/VerticalDistributionIcon';\nexport { VideoIcon } from './generated/VideoIcon';\nexport { VolumeDownIcon } from './generated/VolumeDownIcon';\nexport { VolumeOffIcon } from './generated/VolumeOffIcon';\nexport { VolumeUpIcon } from './generated/VolumeUpIcon';\nexport { WalkIcon } from './generated/WalkIcon';\nexport { WarningSignIcon } from './generated/WarningSignIcon';\nexport { WaterfallChartIcon } from './generated/WaterfallChartIcon';\nexport { WidgetIcon } from './generated/WidgetIcon';\nexport { WidgetButtonIcon } from './generated/WidgetButtonIcon';\nexport { WidgetFooterIcon } from './generated/WidgetFooterIcon';\nexport { WidgetHeaderIcon } from './generated/WidgetHeaderIcon';\nexport { WrenchIcon } from './generated/WrenchIcon';\nexport { ZoomInIcon } from './generated/ZoomInIcon';\nexport { ZoomOutIcon } from './generated/ZoomOutIcon';\nexport { ZoomToFitIcon } from './generated/ZoomToFitIcon';","'use strict';\n\nvar reactIs = require('react-is');\n\n/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\nvar REACT_STATICS = {\n childContextTypes: true,\n contextType: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n getDerivedStateFromError: true,\n getDerivedStateFromProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n callee: true,\n arguments: true,\n arity: true\n};\nvar FORWARD_REF_STATICS = {\n '$$typeof': true,\n render: true,\n defaultProps: true,\n displayName: true,\n propTypes: true\n};\nvar MEMO_STATICS = {\n '$$typeof': true,\n compare: true,\n defaultProps: true,\n displayName: true,\n propTypes: true,\n type: true\n};\nvar TYPE_STATICS = {};\nTYPE_STATICS[reactIs.ForwardRef] = FORWARD_REF_STATICS;\nTYPE_STATICS[reactIs.Memo] = MEMO_STATICS;\nfunction getStatics(component) {\n // React v16.11 and below\n if (reactIs.isMemo(component)) {\n return MEMO_STATICS;\n } // React v16.12 and above\n\n return TYPE_STATICS[component['$$typeof']] || REACT_STATICS;\n}\nvar defineProperty = Object.defineProperty;\nvar getOwnPropertyNames = Object.getOwnPropertyNames;\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar getPrototypeOf = Object.getPrototypeOf;\nvar objectPrototype = Object.prototype;\nfunction hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {\n if (typeof sourceComponent !== 'string') {\n // don't hoist over string (html) components\n if (objectPrototype) {\n var inheritedComponent = getPrototypeOf(sourceComponent);\n if (inheritedComponent && inheritedComponent !== objectPrototype) {\n hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);\n }\n }\n var keys = getOwnPropertyNames(sourceComponent);\n if (getOwnPropertySymbols) {\n keys = keys.concat(getOwnPropertySymbols(sourceComponent));\n }\n var targetStatics = getStatics(targetComponent);\n var sourceStatics = getStatics(sourceComponent);\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {\n var descriptor = getOwnPropertyDescriptor(sourceComponent, key);\n try {\n // Avoid failures from read-only properties\n defineProperty(targetComponent, key, descriptor);\n } catch (e) {}\n }\n }\n }\n return targetComponent;\n}\nmodule.exports = hoistNonReactStatics;","function _arrayLikeToArray(r, a) {\n (null == a || a > r.length) && (a = r.length);\n for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e];\n return n;\n}\nexport { _arrayLikeToArray as default };","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.spacesOutsideParentheses = / (?=([^()]*\\([^()]*\\))*[^()]*$)/g;\nexports.unsafeClassNameCharacters = /[^_a-zA-Z0-9-]/g;","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}","function _setPrototypeOf(t, e) {\n return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {\n return t.__proto__ = e, t;\n }, _setPrototypeOf(t, e);\n}\nexport { _setPrototypeOf as default };","import arrayLikeToArray from \"./arrayLikeToArray.js\";\nfunction _unsupportedIterableToArray(r, a) {\n if (r) {\n if (\"string\" == typeof r) return arrayLikeToArray(r, a);\n var t = {}.toString.call(r).slice(8, -1);\n return \"Object\" === t && r.constructor && (t = r.constructor.name), \"Map\" === t || \"Set\" === t ? Array.from(r) : \"Arguments\" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? arrayLikeToArray(r, a) : void 0;\n }\n}\nexport { _unsupportedIterableToArray as default };","\"use strict\";\n\nexports.__esModule = true;\nexports.default = exports.EXITING = exports.ENTERED = exports.ENTERING = exports.EXITED = exports.UNMOUNTED = void 0;\nvar PropTypes = _interopRequireWildcard(require(\"prop-types\"));\nvar _react = _interopRequireDefault(require(\"react\"));\nvar _reactDom = _interopRequireDefault(require(\"react-dom\"));\nvar _reactLifecyclesCompat = require(\"react-lifecycles-compat\");\nvar _PropTypes = require(\"./utils/PropTypes\");\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nfunction _interopRequireWildcard(obj) {\n if (obj && obj.__esModule) {\n return obj;\n } else {\n var newObj = {};\n if (obj != null) {\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};\n if (desc.get || desc.set) {\n Object.defineProperty(newObj, key, desc);\n } else {\n newObj[key] = obj[key];\n }\n }\n }\n }\n newObj.default = obj;\n return newObj;\n }\n}\nfunction _objectWithoutPropertiesLoose(source, excluded) {\n if (source == null) return {};\n var target = {};\n var sourceKeys = Object.keys(source);\n var key, i;\n for (i = 0; i < sourceKeys.length; i++) {\n key = sourceKeys[i];\n if (excluded.indexOf(key) >= 0) continue;\n target[key] = source[key];\n }\n return target;\n}\nfunction _inheritsLoose(subClass, superClass) {\n subClass.prototype = Object.create(superClass.prototype);\n subClass.prototype.constructor = subClass;\n subClass.__proto__ = superClass;\n}\nvar UNMOUNTED = 'unmounted';\nexports.UNMOUNTED = UNMOUNTED;\nvar EXITED = 'exited';\nexports.EXITED = EXITED;\nvar ENTERING = 'entering';\nexports.ENTERING = ENTERING;\nvar ENTERED = 'entered';\nexports.ENTERED = ENTERED;\nvar EXITING = 'exiting';\n/**\n * The Transition component lets you describe a transition from one component\n * state to another _over time_ with a simple declarative API. Most commonly\n * it's used to animate the mounting and unmounting of a component, but can also\n * be used to describe in-place transition states as well.\n *\n * ---\n *\n * **Note**: `Transition` is a platform-agnostic base component. If you're using\n * transitions in CSS, you'll probably want to use\n * [`CSSTransition`](https://reactcommunity.org/react-transition-group/css-transition)\n * instead. It inherits all the features of `Transition`, but contains\n * additional features necessary to play nice with CSS transitions (hence the\n * name of the component).\n *\n * ---\n *\n * By default the `Transition` component does not alter the behavior of the\n * component it renders, it only tracks \"enter\" and \"exit\" states for the\n * components. It's up to you to give meaning and effect to those states. For\n * example we can add styles to a component when it enters or exits:\n *\n * ```jsx\n * import { Transition } from 'react-transition-group';\n *\n * const duration = 300;\n *\n * const defaultStyle = {\n * transition: `opacity ${duration}ms ease-in-out`,\n * opacity: 0,\n * }\n *\n * const transitionStyles = {\n * entering: { opacity: 0 },\n * entered: { opacity: 1 },\n * };\n *\n * const Fade = ({ in: inProp }) => (\n * \n * {state => (\n * \n * I'm a fade Transition!\n *
\n * )}\n * \n * );\n * ```\n *\n * There are 4 main states a Transition can be in:\n * - `'entering'`\n * - `'entered'`\n * - `'exiting'`\n * - `'exited'`\n *\n * Transition state is toggled via the `in` prop. When `true` the component\n * begins the \"Enter\" stage. During this stage, the component will shift from\n * its current transition state, to `'entering'` for the duration of the\n * transition and then to the `'entered'` stage once it's complete. Let's take\n * the following example (we'll use the\n * [useState](https://reactjs.org/docs/hooks-reference.html#usestate) hook):\n *\n * ```jsx\n * function App() {\n * const [inProp, setInProp] = useState(false);\n * return (\n * \n * \n * {state => (\n * // ...\n * )}\n * \n * \n *
\n * );\n * }\n * ```\n *\n * When the button is clicked the component will shift to the `'entering'` state\n * and stay there for 500ms (the value of `timeout`) before it finally switches\n * to `'entered'`.\n *\n * When `in` is `false` the same thing happens except the state moves from\n * `'exiting'` to `'exited'`.\n */\n\nexports.EXITING = EXITING;\nvar Transition = /*#__PURE__*/\nfunction (_React$Component) {\n _inheritsLoose(Transition, _React$Component);\n function Transition(props, context) {\n var _this;\n _this = _React$Component.call(this, props, context) || this;\n var parentGroup = context.transitionGroup; // In the context of a TransitionGroup all enters are really appears\n\n var appear = parentGroup && !parentGroup.isMounting ? props.enter : props.appear;\n var initialStatus;\n _this.appearStatus = null;\n if (props.in) {\n if (appear) {\n initialStatus = EXITED;\n _this.appearStatus = ENTERING;\n } else {\n initialStatus = ENTERED;\n }\n } else {\n if (props.unmountOnExit || props.mountOnEnter) {\n initialStatus = UNMOUNTED;\n } else {\n initialStatus = EXITED;\n }\n }\n _this.state = {\n status: initialStatus\n };\n _this.nextCallback = null;\n return _this;\n }\n var _proto = Transition.prototype;\n _proto.getChildContext = function getChildContext() {\n return {\n transitionGroup: null // allows for nested Transitions\n };\n };\n Transition.getDerivedStateFromProps = function getDerivedStateFromProps(_ref, prevState) {\n var nextIn = _ref.in;\n if (nextIn && prevState.status === UNMOUNTED) {\n return {\n status: EXITED\n };\n }\n return null;\n }; // getSnapshotBeforeUpdate(prevProps) {\n // let nextStatus = null\n // if (prevProps !== this.props) {\n // const { status } = this.state\n // if (this.props.in) {\n // if (status !== ENTERING && status !== ENTERED) {\n // nextStatus = ENTERING\n // }\n // } else {\n // if (status === ENTERING || status === ENTERED) {\n // nextStatus = EXITING\n // }\n // }\n // }\n // return { nextStatus }\n // }\n\n _proto.componentDidMount = function componentDidMount() {\n this.updateStatus(true, this.appearStatus);\n };\n _proto.componentDidUpdate = function componentDidUpdate(prevProps) {\n var nextStatus = null;\n if (prevProps !== this.props) {\n var status = this.state.status;\n if (this.props.in) {\n if (status !== ENTERING && status !== ENTERED) {\n nextStatus = ENTERING;\n }\n } else {\n if (status === ENTERING || status === ENTERED) {\n nextStatus = EXITING;\n }\n }\n }\n this.updateStatus(false, nextStatus);\n };\n _proto.componentWillUnmount = function componentWillUnmount() {\n this.cancelNextCallback();\n };\n _proto.getTimeouts = function getTimeouts() {\n var timeout = this.props.timeout;\n var exit, enter, appear;\n exit = enter = appear = timeout;\n if (timeout != null && typeof timeout !== 'number') {\n exit = timeout.exit;\n enter = timeout.enter; // TODO: remove fallback for next major\n\n appear = timeout.appear !== undefined ? timeout.appear : enter;\n }\n return {\n exit: exit,\n enter: enter,\n appear: appear\n };\n };\n _proto.updateStatus = function updateStatus(mounting, nextStatus) {\n if (mounting === void 0) {\n mounting = false;\n }\n if (nextStatus !== null) {\n // nextStatus will always be ENTERING or EXITING.\n this.cancelNextCallback();\n var node = _reactDom.default.findDOMNode(this);\n if (nextStatus === ENTERING) {\n this.performEnter(node, mounting);\n } else {\n this.performExit(node);\n }\n } else if (this.props.unmountOnExit && this.state.status === EXITED) {\n this.setState({\n status: UNMOUNTED\n });\n }\n };\n _proto.performEnter = function performEnter(node, mounting) {\n var _this2 = this;\n var enter = this.props.enter;\n var appearing = this.context.transitionGroup ? this.context.transitionGroup.isMounting : mounting;\n var timeouts = this.getTimeouts();\n var enterTimeout = appearing ? timeouts.appear : timeouts.enter; // no enter animation skip right to ENTERED\n // if we are mounting and running this it means appear _must_ be set\n\n if (!mounting && !enter) {\n this.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(node);\n });\n return;\n }\n this.props.onEnter(node, appearing);\n this.safeSetState({\n status: ENTERING\n }, function () {\n _this2.props.onEntering(node, appearing);\n _this2.onTransitionEnd(node, enterTimeout, function () {\n _this2.safeSetState({\n status: ENTERED\n }, function () {\n _this2.props.onEntered(node, appearing);\n });\n });\n });\n };\n _proto.performExit = function performExit(node) {\n var _this3 = this;\n var exit = this.props.exit;\n var timeouts = this.getTimeouts(); // no exit animation skip right to EXITED\n\n if (!exit) {\n this.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(node);\n });\n return;\n }\n this.props.onExit(node);\n this.safeSetState({\n status: EXITING\n }, function () {\n _this3.props.onExiting(node);\n _this3.onTransitionEnd(node, timeouts.exit, function () {\n _this3.safeSetState({\n status: EXITED\n }, function () {\n _this3.props.onExited(node);\n });\n });\n });\n };\n _proto.cancelNextCallback = function cancelNextCallback() {\n if (this.nextCallback !== null) {\n this.nextCallback.cancel();\n this.nextCallback = null;\n }\n };\n _proto.safeSetState = function safeSetState(nextState, callback) {\n // This shouldn't be necessary, but there are weird race conditions with\n // setState callbacks and unmounting in testing, so always make sure that\n // we can cancel any pending setState callbacks after we unmount.\n callback = this.setNextCallback(callback);\n this.setState(nextState, callback);\n };\n _proto.setNextCallback = function setNextCallback(callback) {\n var _this4 = this;\n var active = true;\n this.nextCallback = function (event) {\n if (active) {\n active = false;\n _this4.nextCallback = null;\n callback(event);\n }\n };\n this.nextCallback.cancel = function () {\n active = false;\n };\n return this.nextCallback;\n };\n _proto.onTransitionEnd = function onTransitionEnd(node, timeout, handler) {\n this.setNextCallback(handler);\n var doesNotHaveTimeoutOrListener = timeout == null && !this.props.addEndListener;\n if (!node || doesNotHaveTimeoutOrListener) {\n setTimeout(this.nextCallback, 0);\n return;\n }\n if (this.props.addEndListener) {\n this.props.addEndListener(node, this.nextCallback);\n }\n if (timeout != null) {\n setTimeout(this.nextCallback, timeout);\n }\n };\n _proto.render = function render() {\n var status = this.state.status;\n if (status === UNMOUNTED) {\n return null;\n }\n var _this$props = this.props,\n children = _this$props.children,\n childProps = _objectWithoutPropertiesLoose(_this$props, [\"children\"]); // filter props for Transtition\n\n delete childProps.in;\n delete childProps.mountOnEnter;\n delete childProps.unmountOnExit;\n delete childProps.appear;\n delete childProps.enter;\n delete childProps.exit;\n delete childProps.timeout;\n delete childProps.addEndListener;\n delete childProps.onEnter;\n delete childProps.onEntering;\n delete childProps.onEntered;\n delete childProps.onExit;\n delete childProps.onExiting;\n delete childProps.onExited;\n if (typeof children === 'function') {\n return children(status, childProps);\n }\n var child = _react.default.Children.only(children);\n return _react.default.cloneElement(child, childProps);\n };\n return Transition;\n}(_react.default.Component);\nTransition.contextTypes = {\n transitionGroup: PropTypes.object\n};\nTransition.childContextTypes = {\n transitionGroup: function transitionGroup() {}\n};\nTransition.propTypes = process.env.NODE_ENV !== \"production\" ? {\n /**\n * A `function` child can be used instead of a React element. This function is\n * called with the current transition status (`'entering'`, `'entered'`,\n * `'exiting'`, `'exited'`, `'unmounted'`), which can be used to apply context\n * specific props to a component.\n *\n * ```jsx\n * \n * {state => (\n * \n * )}\n * \n * ```\n */\n children: PropTypes.oneOfType([PropTypes.func.isRequired, PropTypes.element.isRequired]).isRequired,\n /**\n * Show the component; triggers the enter or exit states\n */\n in: PropTypes.bool,\n /**\n * By default the child component is mounted immediately along with\n * the parent `Transition` component. If you want to \"lazy mount\" the component on the\n * first `in={true}` you can set `mountOnEnter`. After the first enter transition the component will stay\n * mounted, even on \"exited\", unless you also specify `unmountOnExit`.\n */\n mountOnEnter: PropTypes.bool,\n /**\n * By default the child component stays mounted after it reaches the `'exited'` state.\n * Set `unmountOnExit` if you'd prefer to unmount the component after it finishes exiting.\n */\n unmountOnExit: PropTypes.bool,\n /**\n * Normally a component is not transitioned if it is shown when the `` component mounts.\n * If you want to transition on the first mount set `appear` to `true`, and the\n * component will transition in as soon as the `` mounts.\n *\n * > Note: there are no specific \"appear\" states. `appear` only adds an additional `enter` transition.\n */\n appear: PropTypes.bool,\n /**\n * Enable or disable enter transitions.\n */\n enter: PropTypes.bool,\n /**\n * Enable or disable exit transitions.\n */\n exit: PropTypes.bool,\n /**\n * The duration of the transition, in milliseconds.\n * Required unless `addEndListener` is provided.\n *\n * You may specify a single timeout for all transitions:\n *\n * ```jsx\n * timeout={500}\n * ```\n *\n * or individually:\n *\n * ```jsx\n * timeout={{\n * appear: 500,\n * enter: 300,\n * exit: 500,\n * }}\n * ```\n *\n * - `appear` defaults to the value of `enter`\n * - `enter` defaults to `0`\n * - `exit` defaults to `0`\n *\n * @type {number | { enter?: number, exit?: number, appear?: number }}\n */\n timeout: function timeout(props) {\n var pt = _PropTypes.timeoutsShape;\n if (!props.addEndListener) pt = pt.isRequired;\n for (var _len = arguments.length, args = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n return pt.apply(void 0, [props].concat(args));\n },\n /**\n * Add a custom transition end trigger. Called with the transitioning\n * DOM node and a `done` callback. Allows for more fine grained transition end\n * logic. **Note:** Timeouts are still used as a fallback if provided.\n *\n * ```jsx\n * addEndListener={(node, done) => {\n * // use the css transitionend event to mark the finish of a transition\n * node.addEventListener('transitionend', done, false);\n * }}\n * ```\n */\n addEndListener: PropTypes.func,\n /**\n * Callback fired before the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEnter: PropTypes.func,\n /**\n * Callback fired after the \"entering\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool)\n */\n onEntering: PropTypes.func,\n /**\n * Callback fired after the \"entered\" status is applied. An extra parameter\n * `isAppearing` is supplied to indicate if the enter stage is occurring on the initial mount\n *\n * @type Function(node: HtmlElement, isAppearing: bool) -> void\n */\n onEntered: PropTypes.func,\n /**\n * Callback fired before the \"exiting\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExit: PropTypes.func,\n /**\n * Callback fired after the \"exiting\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExiting: PropTypes.func,\n /**\n * Callback fired after the \"exited\" status is applied.\n *\n * @type Function(node: HtmlElement) -> void\n */\n onExited: PropTypes.func // Name the function so it is clearer in the documentation\n} : {};\nfunction noop() {}\nTransition.defaultProps = {\n in: false,\n mountOnEnter: false,\n unmountOnExit: false,\n appear: false,\n enter: true,\n exit: true,\n onEnter: noop,\n onEntering: noop,\n onEntered: noop,\n onExit: noop,\n onExiting: noop,\n onExited: noop\n};\nTransition.UNMOUNTED = 0;\nTransition.EXITED = 1;\nTransition.ENTERING = 2;\nTransition.ENTERED = 3;\nTransition.EXITING = 4;\nvar _default = (0, _reactLifecyclesCompat.polyfill)(Transition);\nexports.default = _default;","/**\n * Neutrals and Blue are special.\n * They need more variations to properly express all of our UI.\n */\nexport default {\n neutral: {\n N1: '#F9F9FB',\n N2: '#F5F6F7',\n N3: '#EDF0F2',\n N4: '#E4E7EB',\n N5: '#C7CED4',\n N6: '#A6B1BB',\n N7: '#7B8B9A',\n // Large Text AA\n N8: '#66788A',\n // Normal Text AA\n N9: '#425A70',\n // Normal Text AAA\n N10: '#234361',\n // Normal Text AAA\n // Transparent variants.\n N1A: 'rgba(67, 90, 111, 0.04)',\n N2A: 'rgba(67, 90, 111, 0.06)',\n N3A: 'rgba(67, 90, 111, 0.09)',\n N4A: 'rgba(67, 90, 111, 0.14)',\n N5A: 'rgba(67, 90, 111, 0.3)',\n N6A: 'rgba(67, 90, 111, 0.47)',\n N7A: 'rgba(67, 90, 111, 0.7)',\n N8A: 'rgba(67, 90, 111, 0.81)'\n },\n blue: {\n B1: '#f7f9fd',\n B2: '#f1f7fc',\n B3: '#e9f2fa',\n B4: '#ddebf7',\n B5: '#b7d4ef',\n B6: '#8fbce6',\n B7: '#579ad9',\n // Large Text AA\n B8: '#3d8bd4',\n // Normal Text AA\n B9: '#1070ca',\n // Normal Text AAA\n B10: '#084b8a',\n // Normal Text AAA\n // Transparent variants.\n B1A: 'rgba(16, 112, 202, 0.04)',\n B2A: 'rgba(16, 112, 202, 0.06)',\n B3A: 'rgba(16, 112, 202, 0.09)',\n B4A: 'rgba(16, 112, 202, 0.14)',\n B5A: 'rgba(16, 112, 202, 0.3)',\n B6A: 'rgba(16, 112, 202, 0.47)',\n B7A: 'rgba(16, 112, 202, 0.7)',\n B8A: 'rgba(16, 112, 202, 0.81)'\n }\n};","import scales from './scales';\nexport default {\n neutral: {\n lightest: scales.neutral.N1,\n light: scales.neutral.N4,\n base: scales.neutral.N9,\n dark: scales.neutral.N10\n },\n blue: {\n lightest: scales.blue.B1,\n light: scales.blue.B4,\n base: scales.blue.B9,\n dark: scales.blue.B10\n },\n red: {\n lightest: '#fef6f6',\n light: '#fae2e2',\n base: '#ec4c47',\n dark: '#bf0e08'\n },\n orange: {\n lightest: '#fdf8f3',\n light: '#fae3cd',\n base: '#d9822b',\n dark: '#95591e'\n },\n yellow: {\n lightest: '#fef8e7',\n light: '#fbe6a2',\n base: '#f7d154',\n dark: '#7e6514'\n },\n green: {\n lightest: '#f1faf5',\n light: '#d4eee2',\n base: '#47b881',\n dark: '#00783e'\n },\n teal: {\n lightest: '#f1fbfc',\n light: '#d2eef3',\n base: '#14b5d0',\n dark: '#007489'\n },\n purple: {\n lightest: '#f8f7fc',\n light: '#eae7f8',\n base: '#735dd0',\n dark: '#37248f'\n }\n};","import palette from './palette';\nimport scales from './scales';\n/**\n * This object are functional colors being used the default theme.\n * A required property is required by the default theme NOT by Evergreen itself.\n */\n\nexport default {\n /**\n * Available on Pane as ``\n * @property {string} background.tint1 - Lightest tinted background color. Required property.\n * @property {string} background.tint2 - Slightly darker tinted background color. Required property.\n * @property {string} background.overlay - color used for the overlay\n */\n background: {\n tint1: scales.neutral.N1,\n tint2: scales.neutral.N2,\n overlay: scales.neutral.N7A,\n // Non required.\n yellowTint: palette.yellow.lightest,\n greenTint: palette.green.lightest,\n orangeTint: palette.orange.lightest,\n redTint: palette.red.lightest,\n blueTint: palette.blue.lightest,\n purpleTint: palette.purple.lightest,\n tealTint: palette.teal.lightest\n },\n /**\n * Available on Pane as ``\n * @property {string} text.default - Required property.\n * @property {string} text.muted - Slightly lighter color than default. Required property.\n */\n border: {\n \"default\": scales.neutral.N4,\n // Was BorderColors.muted in v3 and under.\n muted: scales.neutral.N3 // Was BorderColors.extraMuted in v3 and under\n },\n /**\n * Text colors available on Text as ``.\n * @property {string} text.muted - Required property.\n * @property {string} text.default - Required property. Default for text.\n * @property {string} text.dark - Required property. Default for headings.\n */\n text: {\n muted: scales.neutral.N8,\n \"default\": scales.neutral.N9,\n dark: scales.neutral.N10,\n selected: palette.blue.base,\n // Intent.\n success: palette.green.dark,\n info: palette.blue.dark,\n danger: palette.red.dark,\n warning: palette.orange.dark\n },\n /**\n * Icon colors available on Icon.\n * @property {string} icon.default - Required property.\n * @property {string} icon.muted - Required property.\n * @property {string} icon.selected - Required property.\n */\n icon: {\n \"default\": scales.neutral.N8,\n muted: scales.neutral.N7,\n disabled: scales.neutral.N5A,\n selected: palette.blue.base,\n // Intent.\n success: palette.green.base,\n info: palette.blue.base,\n danger: palette.red.base,\n warning: palette.orange.base\n },\n /**\n * Used for Alerts and other (future) componentes that express intent.\n * @property {string} intent.none - Required property.\n * @property {string} intent.success - Required property.\n * @property {string} intent.danger - Required property.\n * @property {string} intent.warning - Required property.\n */\n intent: {\n none: palette.blue.base,\n success: palette.green.base,\n danger: palette.red.base,\n warning: palette.orange.base\n }\n};","import scales from './scales';\nvar borderShadowColor = scales.neutral.N5A; // Used to be colors.neutral['80A'] in v3 and down.\n\nvar blurryShadowColor = scales.neutral.N6A; // Used to be colors.neutral['50A'] in v3 and down.\n\n/**\n * Elevation styles are applied as box shadows.\n * Available levels: 0, 1, 2, 3, 4.\n */\n\nexport default [\"0 0 1px \".concat(borderShadowColor), \"0 0 1px \".concat(borderShadowColor, \", 0 2px 4px -2px \").concat(blurryShadowColor), \"0 0 1px \".concat(borderShadowColor, \", 0 5px 8px -4px \").concat(blurryShadowColor), \"0 0 1px \".concat(borderShadowColor, \", 0 8px 10px -4px \").concat(blurryShadowColor), \"0 0 1px \".concat(borderShadowColor, \", 0 16px 24px -8px \").concat(blurryShadowColor)];","import palette from './palette';\nimport colors from './colors';\n/**\n * Fills are used in Avatars and Badges.\n */\n\nvar fills = {};\nfills.solid = {\n neutral: {\n color: 'white',\n backgroundColor: palette.neutral.base\n },\n blue: {\n color: 'white',\n backgroundColor: palette.blue.base\n },\n red: {\n color: 'white',\n backgroundColor: palette.red.base\n },\n orange: {\n color: 'white',\n backgroundColor: palette.orange.base\n },\n yellow: {\n color: palette.yellow.dark,\n backgroundColor: palette.yellow.base\n },\n green: {\n color: 'white',\n backgroundColor: palette.green.base\n },\n teal: {\n color: 'white',\n backgroundColor: palette.teal.base\n },\n purple: {\n color: 'white',\n backgroundColor: palette.purple.base\n }\n};\nfills.subtle = {\n neutral: {\n color: colors.text[\"default\"],\n backgroundColor: palette.neutral.light\n },\n blue: {\n color: palette.blue.dark,\n backgroundColor: palette.blue.light\n },\n red: {\n color: palette.red.dark,\n backgroundColor: palette.red.light\n },\n orange: {\n color: palette.orange.dark,\n backgroundColor: palette.orange.light\n },\n yellow: {\n color: palette.yellow.dark,\n backgroundColor: palette.yellow.light\n },\n green: {\n color: palette.green.dark,\n backgroundColor: palette.green.light\n },\n teal: {\n color: palette.teal.dark,\n backgroundColor: palette.teal.light\n },\n purple: {\n color: palette.purple.dark,\n backgroundColor: palette.purple.light\n }\n};\nfills.options = Object.keys(fills.solid);\nexport default fills;","export default {\n /**\n * @property {string} display - Used for headings larger than 20px.\n */\n display: \"\\\"SF UI Display\\\", -apple-system, BlinkMacSystemFont, \\\"Segoe UI\\\", Roboto, Helvetica, Arial, sans-serif, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\", \\\"Segoe UI Symbol\\\"\",\n /**\n * @property {string} ui - Used for text and UI (which includes almost anything).\n */\n ui: \"\\\"SF UI Text\\\", -apple-system, BlinkMacSystemFont, \\\"Segoe UI\\\", Roboto, Helvetica, Arial, sans-serif, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\", \\\"Segoe UI Symbol\\\"\",\n /**\n * @property {string} mono - Used for code and sometimes numbers in tables.\n */\n mono: \"\\\"SF Mono\\\", \\\"Monaco\\\", \\\"Inconsolata\\\", \\\"Fira Mono\\\", \\\"Droid Sans Mono\\\", \\\"Source Code Pro\\\", monospace\"\n};","import colors from '../foundational-styles/colors';\nimport fontFamilies from './fontFamilies';\n/**\n * Heading styles.\n * @property {Object} headings.900\n * @property {Object} headings.800\n * @property {Object} headings.700\n * @property {Object} headings.600\n * @property {Object} headings.500 - Default.\n * @property {Object} headings.400\n * @property {Object} headings.300\n * @property {Object} headings.200\n * @property {Object} headings.100\n */\n\nexport default {\n '900': {\n fontSize: '35px',\n fontWeight: 500,\n lineHeight: '40px',\n letterSpacing: '-0.2px',\n marginTop: 52,\n fontFamily: fontFamilies.display,\n color: colors.text.dark\n },\n '800': {\n fontSize: '29px',\n fontWeight: 500,\n lineHeight: '32px',\n letterSpacing: '-0.2px',\n marginTop: 40,\n fontFamily: fontFamilies.display,\n color: colors.text.dark\n },\n '700': {\n fontSize: '24px',\n fontWeight: 500,\n lineHeight: '28px',\n letterSpacing: '-0.07px',\n marginTop: 40,\n fontFamily: fontFamilies.display,\n color: colors.text.dark\n },\n '600': {\n fontSize: '20px',\n fontWeight: 500,\n lineHeight: '24px',\n letterSpacing: '-0.07px',\n marginTop: 28,\n fontFamily: fontFamilies.display,\n color: colors.text.dark\n },\n '500': {\n fontSize: '16px',\n fontWeight: 500,\n lineHeight: '20px',\n letterSpacing: '-0.05px',\n marginTop: 24,\n fontFamily: fontFamilies.ui,\n color: colors.text.dark\n },\n '400': {\n fontSize: '14px',\n fontWeight: 600,\n lineHeight: '20px',\n letterSpacing: '-0.05px',\n marginTop: 16,\n fontFamily: fontFamilies.ui,\n color: colors.text.dark\n },\n '300': {\n fontSize: '12px',\n fontWeight: 600,\n lineHeight: '16px',\n letterSpacing: '0',\n marginTop: 16,\n fontFamily: fontFamilies.ui,\n color: colors.text.dark\n },\n '200': {\n fontSize: '12px',\n fontWeight: 600,\n lineHeight: '16px',\n letterSpacing: '0',\n marginTop: 16,\n fontFamily: fontFamilies.ui,\n color: colors.text.muted\n },\n '100': {\n fontSize: '11px',\n fontWeight: 400,\n textTransform: 'uppercase',\n lineHeight: '16px',\n letterSpacing: '0.6px',\n marginTop: 16,\n fontFamily: fontFamilies.ui,\n color: colors.text.muted\n }\n};","import fontFamilies from './fontFamilies';\n/**\n * Text styles for single line text.\n * This is used in the Text component. The Text component is used by:\n * - Small\n * - Strong\n * - Code\n * - ListItem\n * - Label\n * - Link\n * @property {Object} 600 - Required property.\n * @property {Object} 500 - Required property.\n * @property {Object} 400 - Required property. Default.\n * @property {Object} 300 - Required property.\n */\n\nexport default {\n /**\n * It's useful to have 600 because `Link` uses the `Text` component.\n * A `Link` could be used as 600 in the context of a breadcrumb.\n */\n '600': {\n fontSize: '20px',\n fontWeight: 400,\n lineHeight: '24px',\n letterSpacing: '-0.07px',\n marginTop: 28,\n /**\n * Use font family display because the font-size is 20px.\n */\n fontFamily: fontFamilies.display\n },\n '500': {\n fontSize: '16px',\n fontWeight: 400,\n lineHeight: '20px',\n letterSpacing: '-0.05px',\n marginTop: 16\n },\n '400': {\n // Default\n fontSize: '14px',\n fontWeight: 400,\n lineHeight: '20px',\n letterSpacing: '-0.05px',\n marginTop: 12\n },\n '300': {\n fontSize: '12px',\n fontWeight: 400,\n lineHeight: '16px',\n letterSpacing: '0',\n marginTop: 12\n }\n};","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport text from './text';\n/**\n * Text styles for paragraphs (multi line text).\n * This is used in the Paragraph.\n * @property {Object} text.500 - Required property.\n * @property {Object} text.400 - Required property. Default.\n * @property {Object} text.300 - Required property.\n */\n\nexport default {\n '500': _objectSpread({}, text['500'], {\n lineHeight: '24px'\n }),\n '400': _objectSpread({}, text['400'], {\n lineHeight: '21px'\n }),\n '300': _objectSpread({}, text['300'], {\n lineHeight: '18px'\n })\n};","import fills from '../foundational-styles/fills';\nvar avatarColors = fills.options;\nexport default avatarColors;","import fills from '../foundational-styles/fills';\nvar badgeColors = fills.options;\nexport default badgeColors;","import scales from '../foundational-styles/scales';\nvar spinnerColor = scales.neutral.N6A;\nexport default spinnerColor;","import scales from '../foundational-styles/scales';\nvar overlayBackgroundColor = scales.neutral.N7A;\nexport default overlayBackgroundColor;","import isDev from './isDev';\nvar allowedProperties = ['background', 'backgroundColor', 'backgroundImage', 'borderRadius', 'transition', 'boxShadow', 'opacity', 'color', 'textShadow', 'outline',\n// Not sure if cursor should be configurable\n'cursor',\n// Added to prevent pointer events on disabled tab\n'pointerEvents'];\n/**\n * @param {object?} obj - input object that will be filtered against the allowed properties.\n * @return {object} the result will always be a object\n */\n\nfunction createAppearance() {\n var obj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n var result = {};\n Object.keys(obj).forEach(function (key) {\n if (allowedProperties.includes(key)) {\n if (typeof obj[key] === 'string' || typeof obj[key] === 'number') {\n result[key] = obj[key];\n } else if (isDev) {\n console.error(\"createAppearance() only accepts strings as properties, key '\".concat(key, \"' with value '\").concat(obj[key], \"' is not a string\"));\n }\n } else if (isDev) {\n console.error(\"key '\".concat(key, \"' is not in the allowed properties for createAppearance():\"), allowedProperties);\n }\n });\n return result;\n}\nexport default createAppearance;","import isDev from './isDev';\nimport hasOwnProperty from './hasOwnProperty';\nfunction missingStateWarning(_ref) {\n var items = _ref.items,\n props = _ref.props,\n cb = _ref.cb;\n if (!isDev) return;\n props.forEach(function (prop) {\n if (!hasOwnProperty(items, prop)) {\n cb(prop);\n }\n });\n}\nexport default missingStateWarning;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar hoverState = '&:hover';\nvar baseStyle = {\n cursor: 'pointer'\n};\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createBadgeAppearance = function createBadgeAppearance() {\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover'],\n cb: function cb(prop) {\n console.error(\"Themer.createBadgeAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), _defineProperty({}, hoverState, createAppearance(items.hover)));\n};\nexport default createBadgeAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { StackingOrder } from '../../constants';\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar baseStyle = {\n WebkitFontSmoothing: 'antialiased',\n WebkitAppearance: 'none',\n MozAppearance: 'none',\n verticalAlign: 'middle',\n textDecoration: 'none',\n border: 'none',\n outline: 'none',\n cursor: 'pointer',\n '&::-moz-focus-inner ': {\n border: 0\n }\n};\nvar disabledState = \"[disabled], [data-disabled]\";\nvar hoverState = '&:not([disabled]):not([data-disabled]):hover';\nvar focusState = '&:not([disabled]):not([data-disabled]):focus';\nvar focusAndActiveState = '&:not([disabled]):not([data-disabled]):focus:active, &:not([disabled]):not([data-disabled])[aria-expanded=\"true\"]:focus, &:not([disabled]):not([data-disabled])[data-active]:focus';\nvar activeState = '&:not([disabled]):not([data-disabled]):active, &:not([disabled]):not([data-disabled])[aria-expanded=\"true\"], &:not([disabled]):not([data-disabled])[data-active]';\n/**\n * @param {object} items - object with a set of items.\n * @return {object} the final appearance.\n */\n\nvar createButtonAppearance = function createButtonAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'focus', 'active', 'focusAndActive', 'disabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createButtonAppearance() is missing a \".concat(prop, \" state in items:\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, _objectSpread({\n zIndex: StackingOrder.FOCUSED\n }, createAppearance(items.focus))), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, focusAndActiveState, createAppearance(items.focusAndActive)), _objectSpread2));\n};\nexport default createButtonAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar defaultState = '& + div';\nvar disabledState = '&[disabled] + div';\nvar hoverState = '&:not([disabled]):hover + div';\nvar focusState = '&:not([disabled]):focus + div';\nvar activeState = '&:not([disabled]):active + div';\nvar checkedState = '&:checked + div, &[type=checkbox]:indeterminate + div';\nvar checkedHoverState = '&:not([disabled]):checked:hover + div, &[type=checkbox]:not([disabled]):indeterminate:hover + div';\nvar checkedActiveState = '&:not([disabled]):checked:active + div, &[type=checkbox]:not([disabled]):indeterminate:active + div';\nvar checkedDisabledState = '&[disabled]:checked + div, &[type=checkbox][disabled]:indeterminate + div';\nvar hiddenCheckboxStyle = {\n border: '0',\n clip: 'rect(1px, 1px, 1px, 1px)',\n height: '1',\n overflow: 'hidden',\n padding: '0',\n position: 'absolute',\n whiteSpace: 'nowrap',\n width: '1',\n opacity: '0'\n};\nvar baseStyle = {\n WebkitFontSmoothing: 'antialiased',\n textDecoration: 'none',\n WebkitAppearance: 'none',\n MozAppearance: 'none',\n border: 'none',\n outline: 'none',\n cursor: 'pointer'\n};\nvar checkedStyles = {\n '& > svg': {\n display: 'block'\n }\n};\n/**\n * @param {object} items - object with a set of items.\n * @return {object} the final appearance.\n */\n\nvar createCheckboxAppearance = function createCheckboxAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'focus', 'active', 'disabled', 'checked', 'checkedDisabled', 'checkedHover', 'checkedActive'],\n cb: function cb(prop) {\n console.error(\"Themer.createCheckboxAppearance() is missing a \".concat(prop, \" state in items:\"), items);\n }\n });\n return _objectSpread({}, hiddenCheckboxStyle, (_objectSpread2 = {\n '& + div > svg': {\n display: 'none'\n }\n }, _defineProperty(_objectSpread2, defaultState, _objectSpread({}, baseStyle, {}, createAppearance(items.base))), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, disabledState, createAppearance(items.disabled)), _defineProperty(_objectSpread2, checkedState, _objectSpread({}, checkedStyles, {}, createAppearance(items.checked))), _defineProperty(_objectSpread2, checkedHoverState, _objectSpread({}, checkedStyles, {}, createAppearance(items.checkedHover))), _defineProperty(_objectSpread2, checkedDisabledState, _objectSpread({}, checkedStyles, {}, createAppearance(items.checkedDisabled))), _defineProperty(_objectSpread2, checkedActiveState, _objectSpread({}, checkedStyles, {}, createAppearance(items.checkedActive))), _objectSpread2));\n};\nexport default createCheckboxAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { StackingOrder } from '../../constants';\nimport missingStateWarning from './missingStateWarning';\nimport createAppearance from './createAppearance';\nvar baseStyle = {\n WebkitAppearance: 'none',\n MozAppearance: 'none',\n border: 'none'\n};\nvar invalidState = '&[aria-invalid=\"true\"]';\nvar placeholder = '&::placeholder';\nvar focusState = '&:focus';\nvar disabledState = '&:disabled';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createInputAppearance = function createInputAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'invalid', 'placeholder', 'focus', 'disabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createInputAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, invalidState, createAppearance(items.invalid)), _defineProperty(_objectSpread2, placeholder, createAppearance(items.placeholder)), _defineProperty(_objectSpread2, focusState, _objectSpread({\n zIndex: StackingOrder.FOCUSED\n }, createAppearance(items.focus))), _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _objectSpread2));\n};\nexport default createInputAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { StackingOrder } from '../../constants';\nimport missingStateWarning from './missingStateWarning';\nimport createAppearance from './createAppearance';\nvar baseStyle = {\n alignItems: 'center',\n display: 'inline-flex',\n flexWrap: 'wrap'\n};\nvar focusState = '&[aria-activedescendant]';\nvar disabledState = '&[aria-disabled=\"true\"]';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createTagInputAppearance = function createTagInputAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'focus', 'disabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createTagInputAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, focusState, _objectSpread({\n zIndex: StackingOrder.FOCUSED\n }, createAppearance(items.focus))), _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _objectSpread2));\n};\nexport default createTagInputAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar baseStyle = {\n WebkitAppearance: 'none',\n MozAppearance: 'none',\n border: 'none',\n flex: 1,\n background: 'none',\n width: '100%',\n WebkitFontSmoothing: 'antialiased',\n textDecoration: 'none',\n outline: 'none',\n cursor: 'pointer',\n ':-moz-focusring': {\n color: 'transparent',\n textShadow: '0 0 0 #000'\n }\n};\nvar disabledState = '[disabled]';\nvar invalidState = '&[aria-invalid=\"true\"]';\nvar hoverState = '&:not([disabled]):hover';\nvar focusState = '&:not([disabled]):focus';\nvar activeState = '&:not([disabled]):active';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createSelectAppearance = function createSelectAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'disabled', 'invalid', 'hover', 'active', 'focus'],\n cb: function cb(prop) {\n console.error(\"Themer.createSelectAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _defineProperty(_objectSpread2, invalidState, createAppearance(items.invalid)), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _objectSpread2));\n};\nexport default createSelectAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport missingStateWarning from './missingStateWarning';\nimport createAppearance from './createAppearance';\nvar hoverState = '&:hover';\nvar activeState = '&:active';\nvar focusState = '&:focus';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createLinkAppearance = function createLinkAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'active', 'focus'],\n cb: function cb(prop) {\n console.error(\"Themer.createLinkAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, items.base, (_objectSpread2 = {}, _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _objectSpread2));\n};\nexport default createLinkAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar hoverState = '&:hover';\nvar selectedState = '&[aria-current=\"page\"], &[aria-selected=\"true\"], &:active';\nvar currentState = '&[aria-current=\"page\"], &[aria-selected=\"true\"]';\nvar focusState = '&:focus';\nvar disabledState = '&[aria-disabled=\"true\"]';\nvar baseStyle = {\n cursor: 'pointer',\n outline: 'none'\n};\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createTabAppearance = function createTabAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'active', 'focus', 'current', 'disabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createTabAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _defineProperty(_objectSpread2, selectedState, createAppearance(items.active)), _defineProperty(_objectSpread2, currentState, _objectSpread({\n cursor: 'default'\n }, createAppearance(items.current))), _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _objectSpread2));\n};\nexport default createTabAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { StackingOrder } from '../../constants';\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar baseStyle = {\n WebkitFontSmoothing: 'antialiased',\n WebkitAppearance: 'none',\n MozAppearance: 'none',\n verticalAlign: 'middle',\n textDecoration: 'none',\n border: 'none',\n outline: 'none',\n cursor: 'pointer',\n background: 'none'\n};\nvar disabledState = \"[disabled], [data-disabled]\";\nvar hoverState = '&:not([disabled]):not([data-disabled]):hover';\nvar focusState = '&:not([disabled]):not([data-disabled]):focus';\nvar activeState = '&:not([disabled]):not([data-disabled]):active, &:not([disabled]):not([data-disabled])[aria-expanded=\"true\"], &:not([disabled]):not([data-disabled])[data-active]';\n/**\n * @param {object} items - object with a set of items.\n * @return {object} the final appearance.\n */\n\nvar createButtonAppearance = function createButtonAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'focus', 'active', 'disabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createTextDropdownButtonAppearance() is missing a \".concat(prop, \" state in items:\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, disabledState, createAppearance(items.disabled)), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, _objectSpread({\n zIndex: StackingOrder.FOCUSED\n }, createAppearance(items.focus))), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _objectSpread2));\n};\nexport default createButtonAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar hoverState = '&[data-isselectable=\"true\"]:hover';\nvar focusState = '&[data-isselectable=\"true\"]:focus, &[aria-selected=\"true\"]';\nvar activeState = '&[aria-current=\"true\"], &[data-isselectable=\"true\"]:active';\nvar currentState = '&[aria-current=\"true\"]';\nvar baseStyle = {\n '&[data-isselectable=\"true\"]': {\n cursor: 'pointer'\n },\n outline: 'none',\n textDecoration: 'none'\n};\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createRowAppearance = function createRowAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'active', 'focus', 'current'],\n cb: function cb(prop) {\n console.error(\"Themer.createRowAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, currentState, createAppearance(items.current)), _objectSpread2));\n};\nexport default createRowAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { StackingOrder } from '../../constants';\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar baseStyle = {\n WebkitFontSmoothing: 'antialiased',\n boxSizing: 'border-box',\n textDecoration: 'none',\n transition: 'box-shadow 80ms ease-in-out',\n WebkitAppearance: 'none',\n border: 'none',\n outline: 'none',\n cursor: 'pointer'\n};\nvar disabledState = '[disabled=\"true\"], [data-disabled=\"true\"]';\nvar hoverState = '&:not([disabled=\"true\"]):not([data-disabled=\"true\"]):hover';\nvar activeState = '&:not([disabled=\"true\"]):not([data-disabled=\"true\"]):active, &:not([disabled=\"true\"]):not([data-disabled=\"true\"])[data-popover-opened=\"true\"], &:not([disabled=\"true\"]):not([data-disabled=\"true\"])[data-active=\"true\"]';\nvar focusState = '& input:focus + label';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createSegmentedControlRadioAppearance = function createSegmentedControlRadioAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'hover', 'disabled', 'active', 'focus'],\n cb: function cb(prop) {\n console.error(\"Themer.createSegmentedControlRadioAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, baseStyle, {}, createAppearance(items.base), (_objectSpread2 = {}, _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, _objectSpread({\n zIndex: StackingOrder.FOCUSED\n }, createAppearance(items.focus))), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, '&[data-active=\"true\"]', {\n cursor: 'default'\n }), _objectSpread2));\n};\nexport default createSegmentedControlRadioAppearance;","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar disabledState = '&[disabled] + div';\nvar hoverState = '&:not([disabled]):hover + div';\nvar focusState = '&:not([disabled]):focus + div';\nvar activeState = '&:not([disabled]):active + div';\nvar checkedState = '&:checked + div';\nvar checkedHoverState = '&:checked:hover + div';\nvar checkedActiveState = '&:not([disabled]):checked:active + div';\nvar checkedDisabledState = '&[disabled]:checked + div';\nvar hiddenCheckboxStyle = {\n border: '0',\n clip: 'rect(1px, 1px, 1px, 1px)',\n height: '1',\n overflow: 'hidden',\n padding: '0',\n position: 'absolute',\n whiteSpace: 'nowrap',\n width: '1',\n opacity: '0'\n};\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createSwitchAppearance = function createSwitchAppearance() {\n var _objectSpread2;\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['base', 'disabled', 'hover', 'active', 'focus', 'checked', 'checkedActive', 'checkedDisabled'],\n cb: function cb(prop) {\n console.error(\"Themer.createSwitchAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _objectSpread({}, hiddenCheckboxStyle, (_objectSpread2 = {\n '& + div > svg': {\n display: 'none'\n },\n '& + div': _objectSpread({\n cursor: 'pointer'\n }, createAppearance(items.base))\n }, _defineProperty(_objectSpread2, disabledState, _objectSpread({\n cursor: 'not-allowed'\n }, createAppearance(items.disabled))), _defineProperty(_objectSpread2, hoverState, createAppearance(items.hover)), _defineProperty(_objectSpread2, focusState, createAppearance(items.focus)), _defineProperty(_objectSpread2, activeState, createAppearance(items.active)), _defineProperty(_objectSpread2, checkedState, _objectSpread({}, createAppearance(items.checked), {\n '& > svg': {\n display: 'block'\n }\n })), _defineProperty(_objectSpread2, checkedHoverState, _objectSpread({}, createAppearance(items.checkedHover), {\n '& > svg': {\n display: 'block'\n }\n })), _defineProperty(_objectSpread2, checkedActiveState, _objectSpread({}, createAppearance(items.checkedActive), {\n '& > svg': {\n display: 'block'\n }\n })), _defineProperty(_objectSpread2, checkedDisabledState, _objectSpread({}, createAppearance(items.checkedDisabled), {\n '& > svg': {\n display: 'block'\n }\n })), _objectSpread2));\n};\nexport default createSwitchAppearance;","import createBadgeAppearance from './createBadgeAppearance';\nimport createButtonAppearance from './createButtonAppearance';\nimport createCheckboxAppearance from './createCheckboxAppearance';\nimport createInputAppearance from './createInputAppearance';\nimport createTagInputAppearance from './createTagInputAppearance';\nimport createSelectAppearance from './createSelectAppearance';\nimport createLinkAppearance from './createLinkAppearance';\nimport createTabAppearance from './createTabAppearance';\nimport createTextDropdownButtonAppearance from './createTextDropdownButtonAppearance';\nimport createRowAppearance from './createRowAppearance';\nimport createSegmentedControlRadioAppearance from './createSegmentedControlRadioAppearance';\nimport createSwitchAppearance from './createSwitchAppearance';\nimport createTableCellAppearance from './createTableCellAppearance';\n/**\n * Themer is an object with a set of functions for creating custom themes.\n */\n\nexport default {\n createBadgeAppearance: createBadgeAppearance,\n createButtonAppearance: createButtonAppearance,\n createCheckboxAppearance: createCheckboxAppearance,\n createInputAppearance: createInputAppearance,\n createTagInputAppearance: createTagInputAppearance,\n createSelectAppearance: createSelectAppearance,\n createLinkAppearance: createLinkAppearance,\n createTabAppearance: createTabAppearance,\n createTextDropdownButtonAppearance: createTextDropdownButtonAppearance,\n createRowAppearance: createRowAppearance,\n createSegmentedControlRadioAppearance: createSegmentedControlRadioAppearance,\n createSwitchAppearance: createSwitchAppearance,\n createTableCellAppearance: createTableCellAppearance\n};","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport createAppearance from './createAppearance';\nimport missingStateWarning from './missingStateWarning';\nvar focusState = '&[data-isselectable=\"true\"]:focus, &[aria-expanded=\"true\"][aria-haspopup=\"true\"]';\n/**\n * @param {object} items - object with a set of states.\n * @return {object} the final appearance.\n */\n\nvar createTableCellAppearance = function createTableCellAppearance() {\n var items = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n missingStateWarning({\n items: items,\n props: ['focus'],\n cb: function cb(prop) {\n console.error(\"Themer.createTableCellAppearance() is missing a \".concat(prop, \" item\"), items);\n }\n });\n return _defineProperty({}, focusState, createAppearance(items.focus));\n};\nexport default createTableCellAppearance;","import { css } from 'glamor';\n/**\n * Memoize a function that takes N number of strings as arguments and returns\n * a CSS-in-JS object.\n *\n * The key of the cache will be the concatenated string arguments,\n * For example: `primary_success` or `regular`\n *\n * The CSS-in-JS object will be passed to `glamor` and the generated className\n * will be used as the value in the cache.\n *\n * Why?\n * Glamor, or any CSS-in-JS solution wil have a build-in cache.\n * However, to get the hash/key of this build-in cache a relatively expensive\n * hashing function needs to run on the CSS-in-JS object.\n * This function removes the need for the build-in cache and acts as much\n * faster alternative.\n *\n * @param {function} fn — function that return an appearance (object).\n * @return {string} a class name.\n */\n\nvar memoizeClassName = function memoizeClassName(fn) {\n // Memo will hold a list of string keys with string values (classNames).\n var memo = {}; // Return the wrapped function.\n\n return function () {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n // Create a key by joining all args.\n var key = args.join('_') || '__no_args__'; // Check if is already memoized, if so return the result.\n\n if (memo[key]) return memo[key]; // Create a new entry in the memo with the generated className.\n\n memo[key] = css(fn.apply(void 0, args)).toString(); // Return the newly generated className.\n\n return memo[key];\n };\n};\nexport default memoizeClassName;","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nvar interactiveAppearance = Themer.createBadgeAppearance({\n base: {},\n hover: {\n opacity: 0.8\n }\n});\n/**\n * Get the appearance of an interactive `Badge`.\n * @param {string} appearance - the appearance name\n * @return {string} the appearance object.\n */\n\nvar getBadgeAppearance = function getBadgeAppearance(appearance) {\n switch (appearance) {\n case 'interactive':\n return interactiveAppearance;\n default:\n return undefined;\n }\n};\n/**\n * Get the className of a `Badge`.\n * @param {string} appearance - the appearance name\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getBadgeAppearance);","export default {\n NONE: 'none',\n SUCCESS: 'success',\n WARNING: 'warning',\n DANGER: 'danger'\n};","import tinycolor from 'tinycolor2';\nimport { Intent } from '../../../constants';\nimport colors from './foundational-styles/colors';\n/**\n * @param {String} top - color.\n * @param {String} bottom - color.\n * @return {String} CSS background propery.\n */\n\nvar linearGradient = function linearGradient(top, bottom) {\n return \"linear-gradient(to bottom, \".concat(top, \", \").concat(bottom, \")\");\n};\n/**\n * @param {Intent} intent\n * @return {String} color\n */\n\nvar getTextColorForIntent = function getTextColorForIntent(intent, defaultColor) {\n switch (intent) {\n case Intent.SUCCESS:\n return colors.text.success;\n case Intent.DANGER:\n return colors.text.danger;\n case Intent.WARNING:\n return colors.text.warning;\n default:\n return defaultColor || colors.text[\"default\"];\n }\n};\n/**\n * @param {String} startColor\n * @param {String} endColor\n * @param {Number} intensityMultiplier - Some colors need more darkening.\n */\n\nvar getLinearGradientWithStates = function getLinearGradientWithStates(startColor, endColor) {\n var intensityMultiplier = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 1;\n return {\n base: linearGradient(startColor, endColor),\n hover: linearGradient(tinycolor(startColor).darken(5 * intensityMultiplier).toString(), tinycolor(endColor).darken(5 * intensityMultiplier).toString()),\n active: linearGradient(tinycolor(endColor).darken(5 * intensityMultiplier).toString(), tinycolor(endColor).darken(5 * intensityMultiplier).toString())\n };\n};\n/**\n * Gradients in the default theme have a intentional hue shift.\n * @param {Intent} intent - intent of the gradient.\n * @return {Object} { base, hover, active }\n */\n\nvar getPrimaryButtonStylesForIntent = function getPrimaryButtonStylesForIntent(intent) {\n switch (intent) {\n case Intent.SUCCESS:\n {\n var startColor = '#23C277';\n var endColor = '#399D6C';\n return {\n linearGradient: getLinearGradientWithStates(startColor, endColor),\n focusColor: tinycolor(startColor).setAlpha(0.4).toString()\n };\n }\n case Intent.WARNING:\n {\n var _startColor = '#EE9913';\n var _endColor = '#D9822B';\n return {\n linearGradient: getLinearGradientWithStates(_startColor, _endColor),\n focusColor: tinycolor(_startColor).setAlpha(0.4).toString()\n };\n }\n case Intent.DANGER:\n {\n var _startColor2 = '#EC4C47';\n var _endColor2 = '#D64540';\n return {\n linearGradient: getLinearGradientWithStates(_startColor2, _endColor2),\n focusColor: tinycolor(_startColor2).setAlpha(0.4).toString()\n };\n }\n default:\n {\n var _startColor3 = '#0788DE';\n var _endColor3 = '#116AB8';\n return {\n linearGradient: getLinearGradientWithStates(_startColor3, _endColor3),\n focusColor: tinycolor(_startColor3).setAlpha(0.4).toString()\n };\n }\n }\n};\nexport { linearGradient, getTextColorForIntent, getLinearGradientWithStates, getPrimaryButtonStylesForIntent };","import { linearGradient } from './helpers';\nimport scales from './foundational-styles/scales';\nvar defaultControlStyles = {\n disabled: {\n opacity: 0.8,\n backgroundImage: 'none',\n backgroundColor: scales.neutral.N2A,\n boxShadow: 'none',\n color: scales.neutral.N7A,\n pointerEvents: 'none'\n },\n base: {\n backgroundColor: 'white',\n backgroundImage: linearGradient('#FFFFFF', '#F4F5F7'),\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n hover: {\n backgroundImage: linearGradient('#FAFBFB', '#EAECEE')\n },\n focus: {\n boxShadow: \"0 0 0 3px \".concat(scales.blue.B4A, \", inset 0 0 0 1px \").concat(scales.neutral.N5A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N4A)\n },\n active: {\n backgroundImage: 'none',\n backgroundColor: scales.blue.B3A,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 1px 1px 0 \").concat(scales.neutral.N2A)\n },\n focusAndActive: {\n boxShadow: \"0 0 0 3px \".concat(scales.blue.B4A, \", inset 0 0 0 1px \").concat(scales.neutral.N5A, \", inset 0 1px 1px 0 \").concat(scales.neutral.N2A)\n }\n}; // Can't figure out to disable rule for xo linter.\n\nvar ignore = null;\nexport { defaultControlStyles, ignore };","import _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport { getTextColorForIntent, getPrimaryButtonStylesForIntent } from '../helpers';\nimport { defaultControlStyles } from '../shared';\n/**\n * Disabled styles are all the same for all buttons.\n */\n\nvar disabled = defaultControlStyles.disabled;\n/**\n * Get button appearance.\n * @param {string} appearance - default, primary, minimal.\n * @param {string} intent - none, success, warning, danger.\n * @return {Object} the appearance of the button.\n */\n\nvar getButtonAppearance = function getButtonAppearance(appearance, intent) {\n switch (appearance) {\n case 'primary':\n {\n var _getPrimaryButtonStyl = getPrimaryButtonStylesForIntent(intent),\n linearGradient = _getPrimaryButtonStyl.linearGradient,\n focusColor = _getPrimaryButtonStyl.focusColor;\n return Themer.createButtonAppearance({\n disabled: disabled,\n base: {\n color: 'white',\n backgroundColor: 'white',\n backgroundImage: linearGradient.base,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n hover: {\n backgroundImage: linearGradient.hover\n },\n focus: {\n boxShadow: \"0 0 0 3px \".concat(focusColor, \", inset 0 0 0 1px \").concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N5A)\n },\n active: {\n backgroundImage: linearGradient.active,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 1px 1px 0 \").concat(scales.neutral.N2A)\n },\n focusAndActive: {\n boxShadow: \"0 0 0 3px \".concat(focusColor, \", inset 0 0 0 1px \").concat(scales.neutral.N4A, \", inset 0 1px 1px 0 \").concat(scales.neutral.N2A)\n }\n });\n }\n case 'minimal':\n {\n var intentTextColor = getTextColorForIntent(intent, scales.blue.B9);\n return Themer.createButtonAppearance({\n disabled: disabled,\n base: {\n color: intentTextColor,\n backgroundColor: 'transparent'\n },\n hover: {\n backgroundColor: scales.neutral.N2A\n },\n focus: {\n boxShadow: \"0 0 0 3px \".concat(scales.blue.B5A)\n },\n active: {\n backgroundImage: 'none',\n backgroundColor: scales.blue.B3A\n },\n focusAndActive: {}\n });\n }\n case 'default':\n default:\n {\n var _intentTextColor = getTextColorForIntent(intent);\n return Themer.createButtonAppearance({\n disabled: disabled,\n base: _objectSpread({\n color: _intentTextColor\n }, defaultControlStyles.base),\n hover: defaultControlStyles.hover,\n focus: defaultControlStyles.focus,\n active: defaultControlStyles.active,\n focusAndActive: defaultControlStyles.focusAndActive\n });\n }\n }\n};\n/**\n * Get the className of a `Button`|`IconButton`.\n * @param {string} appearance - default, primary, minimal.\n * @param {Intent} intent - none, success, warning, danger.\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getButtonAppearance);","import tinycolor from 'tinycolor2';\nimport { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport palette from '../foundational-styles/palette';\n/**\n * The link appearance unlike the Button is based on the color property.\n * Currently the Link does not support the Intent or the appearance interface.\n * @param {string} color\n * @return {Object} appearance of the link.\n */\n\nvar getLinkAppearance = function getLinkAppearance(color) {\n switch (color) {\n case 'neutral':\n return Themer.createLinkAppearance({\n base: {\n color: palette.neutral.base\n },\n hover: {\n color: tinycolor(palette.neutral.base).lighten(10).toString()\n },\n active: {\n color: tinycolor(palette.neutral.base).darken(10).toString()\n },\n focus: {\n boxShadow: \"0 0 0 2px \".concat(tinycolor(palette.neutral.base).setAlpha(0.4).toString())\n }\n });\n case 'green':\n return Themer.createLinkAppearance({\n base: {\n color: palette.green.base\n },\n hover: {\n color: tinycolor(palette.green.base).lighten(10).toString()\n },\n active: {\n color: tinycolor(palette.green.base).darken(10).toString()\n },\n focus: {\n boxShadow: \"0 0 0 2px \".concat(tinycolor(palette.green.base).setAlpha(0.4).toString())\n }\n });\n case 'default':\n case 'blue':\n default:\n return Themer.createLinkAppearance({\n base: {\n color: palette.blue.base\n },\n hover: {\n color: tinycolor(palette.blue.base).lighten(10).toString()\n },\n active: {\n color: tinycolor(palette.blue.base).darken(10).toString()\n },\n focus: {\n boxShadow: \"0 0 0 2px \".concat(tinycolor(palette.blue.base).setAlpha(0.4).toString())\n }\n });\n }\n};\n/**\n * Get the className of a `Link` component.\n * @param {string} color\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getLinkAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport { getPrimaryButtonStylesForIntent } from '../helpers';\nvar primaryStyle = getPrimaryButtonStylesForIntent();\nvar defaultAppearance = Themer.createCheckboxAppearance({\n base: {\n color: 'white',\n backgroundColor: 'white',\n backgroundImage: \"linear-gradient(to top, \".concat(scales.neutral.N2A, \", white)\"),\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N3A)\n },\n disabled: {\n cursor: 'not-allowed',\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2A,\n backgroundImage: 'none'\n },\n hover: {\n backgroundImage: \"linear-gradient(to top, \".concat(scales.neutral.N2A, \", \").concat(scales.neutral.N1A, \")\"),\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n focus: {\n boxShadow: \"0 0 0 2px \".concat(scales.blue.B4A, \", inset 0 0 0 1px \").concat(scales.neutral.N5A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N3A)\n },\n active: {\n backgroundImage: 'none',\n backgroundColor: scales.blue.B3A,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.blue.B5A)\n },\n checked: {\n color: 'white',\n backgroundImage: primaryStyle.linearGradient.base,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n checkedHover: {\n color: 'white',\n backgroundImage: primaryStyle.linearGradient.hover,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n checkedDisabled: {\n color: scales.neutral.N6A,\n backgroundImage: \"linear-gradient(to top, \".concat(scales.neutral.N2A, \", \").concat(scales.neutral.N1A, \")\"),\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n },\n checkedActive: {\n color: 'white',\n backgroundImage: primaryStyle.linearGradient.active,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A, \", inset 0 -1px 1px 0 \").concat(scales.neutral.N2A)\n }\n});\n/**\n * There is only a single appearance in the default theme.\n * @param {String} appearance.\n * @return {Object} the appearance of the checkbox.\n */\n\nvar getCheckboxAppearance = function getCheckboxAppearance() {\n return defaultAppearance;\n};\n/**\n * Get the className of a `Checkbox`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getCheckboxAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport palette from '../foundational-styles/palette';\nvar TagInputAppearances = {};\nTagInputAppearances[\"default\"] = Themer.createTagInputAppearance({\n base: {\n backgroundColor: 'white',\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n focus: {\n boxShadow: \"inset 0 0 2px \".concat(scales.neutral.N4A, \", inset 0 0 0 1px \").concat(scales.blue.B7, \", 0 0 0 3px \").concat(scales.blue.B4A)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\n/**\n * Get the appearance of a `TagInput`.\n * @param {string} appearance - the appearance name\n * @return {Object} the appearance object.\n */\n\nvar getTextInputAppearance = function getTextInputAppearance() {\n return TagInputAppearances[\"default\"];\n};\n/**\n * Get the className of a `TagInput`.\n * @param {string} appearance - the appearance name\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getTextInputAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport palette from '../foundational-styles/palette';\nvar InputAppearances = {};\nInputAppearances[\"default\"] = Themer.createInputAppearance({\n base: {\n backgroundColor: 'white',\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none',\n boxShadow: \"inset 0 0 2px \".concat(scales.neutral.N4A, \", inset 0 0 0 1px \").concat(scales.blue.B7, \", 0 0 0 3px \").concat(scales.blue.B4A)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\nInputAppearances.neutral = Themer.createInputAppearance({\n base: {\n backgroundColor: scales.neutral.N2A\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base)\n },\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none',\n backgroundColor: 'white',\n boxShadow: \"0 0 0 2px \".concat(scales.blue.B6A)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\nInputAppearances.none = Themer.createInputAppearance({\n base: {\n backgroundColor: 'white'\n },\n invalid: {},\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none'\n },\n disabled: {\n backgroundColor: scales.neutral.N2\n }\n});\n/**\n * Get the appearance of a `TextInput`.\n * @param {string} appearance - the appearance name\n * @return {Object} the appearance object.\n */\n\nvar getTextInputAppearance = function getTextInputAppearance(appearance) {\n switch (appearance) {\n case 'neutral':\n return InputAppearances.neutral;\n case 'none':\n return InputAppearances.none;\n default:\n return InputAppearances[\"default\"];\n }\n};\n/**\n * Get the className of a `TextInput`.\n * @param {string} appearance - the appearance name\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getTextInputAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport palette from '../foundational-styles/palette';\nvar Appearances = {};\nAppearances[\"default\"] = Themer.createInputAppearance({\n base: {\n backgroundColor: 'white',\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N5A, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none',\n boxShadow: \"inset 0 0 2px \".concat(scales.neutral.N4A, \", inset 0 0 0 1px \").concat(scales.blue.B7, \", 0 0 0 3px \").concat(scales.blue.B4A)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\nAppearances.neutral = Themer.createInputAppearance({\n base: {\n backgroundColor: scales.neutral.N2A\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base)\n },\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none',\n backgroundColor: 'white',\n boxShadow: \"0 0 0 2px \".concat(scales.blue.B6A)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\nAppearances.editableCell = Themer.createInputAppearance({\n base: {\n backgroundColor: scales.neutral.N2A\n },\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base)\n },\n placeholder: {\n color: scales.neutral.N6A\n },\n focus: {\n outline: 'none',\n backgroundColor: 'white',\n boxShadow: \"0 0 0 2px \".concat(scales.blue.B7)\n },\n disabled: {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n backgroundColor: scales.neutral.N2\n }\n});\n/**\n * Get the appearance of a `TextInput`.\n * @param {string} appearance\n * @return {Object} the appearance object.\n */\n\nvar getTextareaAppearance = function getTextareaAppearance(appearance) {\n switch (appearance) {\n case 'neutral':\n return Appearances.neutral;\n case 'editable-cell':\n return Appearances.editableCell;\n default:\n return Appearances[\"default\"];\n }\n};\n/**\n * Get the className of a `TextInput`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getTextareaAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nvar defaultAppearance = Themer.createTextDropdownButtonAppearance({\n base: {\n borderRadius: 3\n },\n hover: {},\n focus: {\n boxShadow: \"0 0 0 3px \".concat(scales.blue.B5A)\n },\n active: {},\n disabled: {\n opacity: 0.5\n }\n});\n/**\n * Get the appearance of a `TextDropdownButton`.\n */\n\nvar getTextDropdownButtonAppearance = function getTextDropdownButtonAppearance() {\n return defaultAppearance;\n};\n/**\n * Get the className of a `TextDropdownButton`.\n */\n\nexport default memoizeClassName(getTextDropdownButtonAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport { defaultControlStyles } from '../shared';\n/**\n * Disabled styles are all the same.\n */\n\nvar disabled = defaultControlStyles.disabled;\nvar defaultAppearance = Themer.createTabAppearance({\n base: {},\n hover: {\n backgroundColor: scales.neutral.N2A\n },\n focus: {\n boxShadow: \"0 0 0 2px \".concat(scales.blue.B5A)\n },\n active: {\n backgroundColor: scales.blue.B3A,\n color: scales.blue.B9\n },\n disabled: disabled,\n current: {}\n});\n/**\n * Get the appearance of a `Tab`.\n * @param {string} appearance\n * @return {string} the appearance object.\n */\n\nvar getTabAppearance = function getTabAppearance() {\n return defaultAppearance;\n};\n/**\n * Get the className of a `Tab`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getTabAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nvar Appearances = {};\nAppearances[\"default\"] = Themer.createTableCellAppearance({\n focus: {\n outline: 'none',\n backgroundColor: scales.blue.B2A,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.blue.B7A)\n }\n});\n/**\n * Get the appearance of a `TableCell`.\n * @param {string} appearance\n * @return {string} the appearance object.\n */\n\nvar getAppearance = function getAppearance() {\n return Appearances[\"default\"];\n};\n/**\n * Get the className of a `Table.EditableCell`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getAppearance);","import tinycolor from 'tinycolor2';\nimport palette from '../foundational-styles/palette';\nvar getTooltipProps = function getTooltipProps(appearance) {\n switch (appearance) {\n case 'card':\n return {\n backgroundColor: 'white',\n elevation: 3\n };\n case 'default':\n default:\n return {\n color: 'white',\n backgroundColor: tinycolor(palette.neutral.base).setAlpha(0.95).toString()\n };\n }\n};\nexport default getTooltipProps;","import tinycolor from 'tinycolor2';\nimport { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nimport palette from '../foundational-styles/palette';\nvar Appearances = {};\nAppearances[\"default\"] = Themer.createRowAppearance({\n base: {\n color: palette.neutral.base\n },\n hover: {\n backgroundColor: scales.neutral.N1A\n },\n focus: {\n backgroundColor: scales.blue.B1A\n },\n active: {\n backgroundColor: scales.blue.B2A\n },\n current: {}\n});\nAppearances.danger = Themer.createRowAppearance({\n base: {\n backgroundColor: palette.red.lightest\n },\n hover: {\n backgroundColor: tinycolor(palette.red.lightest).darken(1).toString()\n },\n focus: {\n backgroundColor: tinycolor(palette.red.lightest).darken(1.5).toString()\n },\n active: {\n backgroundColor: tinycolor(palette.red.lightest).darken(2.2).toString()\n },\n current: {}\n});\nAppearances.warning = Themer.createRowAppearance({\n base: {\n backgroundColor: palette.orange.lightest\n },\n hover: {\n backgroundColor: tinycolor(palette.orange.lightest).darken(1).toString()\n },\n focus: {\n backgroundColor: tinycolor(palette.orange.lightest).darken(1.5).toString()\n },\n active: {\n backgroundColor: tinycolor(palette.orange.lightest).darken(2.5).toString()\n },\n current: {}\n});\nAppearances.success = Themer.createRowAppearance({\n base: {\n backgroundColor: palette.green.lightest\n },\n hover: {\n backgroundColor: tinycolor(palette.green.lightest).darken(1).toString()\n },\n focus: {\n backgroundColor: tinycolor(palette.green.lightest).darken(2).toString()\n },\n active: {\n backgroundColor: tinycolor(palette.green.lightest).darken(3).toString()\n },\n current: {}\n});\n/**\n * Get the appearance of a `Row`.\n * @param {string} appearance — only one default appearance.\n * @param {string} intent - none, info, success, warning, danger.\n * @return {string} the appearance object.\n */\n\nvar getRowAppearance = function getRowAppearance(appearance, intent) {\n switch (intent) {\n case 'danger':\n return Appearances.danger;\n case 'warning':\n return Appearances.warning;\n case 'success':\n return Appearances.success;\n case 'none':\n default:\n return Appearances[\"default\"];\n }\n};\n/**\n * Get the className of a `Row`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getRowAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport { defaultControlStyles } from '../shared';\nimport scales from '../foundational-styles/scales';\nimport palette from '../foundational-styles/palette';\nvar SelectAppearances = {};\nSelectAppearances[\"default\"] = Themer.createSelectAppearance({\n base: defaultControlStyles.base,\n disabled: defaultControlStyles.disabled,\n invalid: {\n boxShadow: \"inset 0 0 0 1px \".concat(palette.red.base, \", inset 0 1px 2px \").concat(scales.neutral.N4A)\n },\n hover: defaultControlStyles.hover,\n focus: defaultControlStyles.focus,\n active: defaultControlStyles.active\n});\n/**\n * Get the appearance of a `Select`.\n * @param {string} appearance\n * @return {string} the appearance object.\n */\n\nvar getSelectAppearance = function getSelectAppearance() {\n return SelectAppearances[\"default\"];\n};\n/**\n * Get the className of a `Select`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getSelectAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport { defaultControlStyles } from '../shared';\nvar defaultAppearance = Themer.createSegmentedControlRadioAppearance({\n base: defaultControlStyles.base,\n disabled: defaultControlStyles.disabled,\n hover: defaultControlStyles.hover,\n active: defaultControlStyles.active,\n focus: defaultControlStyles.focus\n});\n/**\n * Get the appearanece of a `SegmentedControlRadio`.\n * @param {string} appearance\n * @return {string} the appearance object.\n */\n\nvar getSegmentedControlRadioAppearance = function getSegmentedControlRadioAppearance() {\n return defaultAppearance;\n};\n/**\n * Get the className of a `SegmentedControlRadio`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getSegmentedControlRadioAppearance);","import { Themer } from '../../../../themer';\nimport memoizeClassName from '../utils/memoizeClassName';\nimport scales from '../foundational-styles/scales';\nvar defaultAppearance = Themer.createSwitchAppearance({\n base: {\n transition: 'all 120ms ease-in-out',\n cursor: 'pointer',\n color: 'white',\n backgroundColor: scales.neutral.N5A,\n borderRadius: 9999\n },\n disabled: {\n opacity: 0.5,\n backgroundImage: 'none'\n },\n hover: {\n backgroundColor: scales.neutral.N5A\n },\n active: {\n backgroundColor: scales.neutral.N6A\n },\n focus: {\n boxShadow: \"0 0 0 3px \".concat(scales.blue.B6A)\n },\n checked: {\n backgroundColor: scales.blue.B8,\n color: 'white'\n },\n checkedHover: {\n backgroundColor: scales.blue.B8,\n color: 'white'\n },\n checkedActive: {\n backgroundColor: scales.blue.B9,\n color: 'white'\n },\n checkedDisabled: {}\n});\n/**\n * Get the className of a `Switch`.\n * @param {string} appearance\n * @return {Object} the appearance object.\n */\n\nvar getSwitchAppearance = function getSwitchAppearance() {\n return defaultAppearance;\n};\n/**\n * Get the className of a `Switch`.\n * @param {string} appearance\n * @return {string} the appearance class name.\n */\n\nexport default memoizeClassName(getSwitchAppearance);","import fills from '../foundational-styles/fills';\n/**\n * @param {boolean} isSolid\n * @param {string} color — automatic or actual color\n * @param {number} hashValue\n * @return {Object} { color, backgroundColor }\n */\n\nvar getAvatarProps = function getAvatarProps(_ref) {\n var isSolid = _ref.isSolid,\n color = _ref.color,\n hashValue = _ref.hashValue;\n var appearances = fills[isSolid ? 'solid' : 'subtle'];\n if (color === 'automatic') {\n var keys = Object.keys(appearances);\n var key = keys[hashValue % keys.length];\n return appearances[key];\n }\n return appearances[color];\n};\nexport default getAvatarProps;","/**\n * Helper function for theming.\n * @param {Object} object - an object with theme presets.\n * @param {Object} keyOrValue - the key for the object, or an actual value.\n * @return {*} the value of the object, or the `keyOrValue` itself.\n */\nvar themedProperty = function themedProperty(object, keyOrValue) {\n // Check if there is a preset in the collection for the property.\n if (Object.prototype.hasOwnProperty.call(object, keyOrValue)) {\n return object[keyOrValue];\n } // If there is no preset, simply return the property as is.\n\n return keyOrValue;\n};\nexport default themedProperty;","import { Intent } from '../../../../constants';\nimport themedProperty from '../utils/themedProperty';\nimport { colors, elevations } from '../foundational-styles';\nimport { fontFamilies, headings, paragraph, text } from '../typography';\n/**\n * Controls include:\n * - Button\n * - IconButton\n * - TextInput\n * @param {number} height\n * @return {number} border radius\n */\n\nvar getBorderRadiusForControlHeight = function getBorderRadiusForControlHeight(height) {\n if (height <= 40) return 3;\n return 4;\n};\n/**\n * Get the text size for a control with a certain height.\n * @param {number} height\n * @return {number} text size of the control height.\n */\n\nvar getTextSizeForControlHeight = function getTextSizeForControlHeight(height) {\n if (height <= 24) return 300;\n if (height <= 28) return 300;\n if (height <= 32) return 300;\n if (height <= 36) return 400;\n if (height <= 40) return 400;\n return 500;\n};\n/**\n * Get the size for a icon in a Button with a certain height.\n * @param {number} height\n * @return {number} icon size\n */\n\nvar getIconSizeForButton = function getIconSizeForButton(height) {\n if (height <= 28) return 12;\n if (height <= 32) return 12;\n if (height <= 40) return 16;\n if (height <= 48) return 18;\n return 20;\n}; // Use the same for input components.\n\nvar getIconSizeForInput = getIconSizeForButton;\nvar getIconSizeForSelect = getIconSizeForButton;\n/**\n * Get the size for a icon in a IconButton with a certain height.\n * @param {number} height\n * @return {number} icon size\n */\n\nvar getIconSizeForIconButton = function getIconSizeForIconButton(height) {\n if (height <= 28) return 12;\n if (height <= 32) return 14; // Slightly bigger than getIconSizeForButton\n\n if (height <= 40) return 16;\n if (height <= 48) return 18;\n return 20;\n};\n/**\n * Get background property.\n * @param {string} background\n * @return {string} background property.\n */\n\nvar getBackground = function getBackground(background) {\n /**\n * Return one of theme presets or the original value.\n */\n return themedProperty(colors.background, background);\n};\n/**\n * Get box-shadow (elevation).\n * @param {string} level — level of elevation.\n * @return {string} elevation box-shadow.\n */\n\nvar getElevation = function getElevation(level) {\n /**\n * There is no fallback, undefined will be returned.\n */\n return elevations[level];\n};\n/**\n * Get the color for an icon.\n * @param {string} color\n * @return {string} color of the icon\n */\n\nvar getIconColor = function getIconColor(color) {\n /**\n * Check if there is a preset in the theme for the icon color.\n */\n return themedProperty(colors.icon, color);\n};\n/**\n * Get the properties for an icon based on the intent.\n * @param {Intent} intent\n * @return {Object} properties\n */\n\nvar getIconForIntent = function getIconForIntent(intent) {\n switch (intent) {\n case Intent.SUCCESS:\n return {\n icon: 'tick-circle',\n color: 'success'\n };\n case Intent.DANGER:\n return {\n icon: 'error',\n color: 'danger'\n };\n case Intent.WARNING:\n return {\n icon: 'warning-sign',\n color: 'warning'\n };\n case Intent.NONE:\n default:\n return {\n icon: 'info-sign',\n color: 'info'\n };\n }\n};\n/**\n * Heading styles.\n * @param {number} size - 100–900. 500 is default.\n * @return {Object} heading style.\n */\n\nvar getHeadingStyle = function getHeadingStyle(size) {\n return themedProperty(headings, String(size));\n};\n/**\n * Text styles for single line text.\n * This is used in the Text component. The Text component is used by:\n * - Small\n * - Strong\n * - Code\n * - ListItem\n * - Label\n * @param {number} size - 300–500. 400 is default.\n * @return {Object} text style.\n */\n\nvar getTextStyle = function getTextStyle(size) {\n return themedProperty(text, String(size));\n};\n/**\n * Text styles for paragraphs (multi line text).\n * This is used in the Paragraph.\n * @param {number} size - 300–500. 400 is default.\n * @return {Object} text style.\n */\n\nvar getParagraphStyle = function getParagraphStyle(size) {\n return themedProperty(paragraph, String(size));\n};\n/**\n * Get the font family. This is used to override the font family.\n * @param {string} fontFamily\n * @return {string} font family\n */\n\nvar getFontFamily = function getFontFamily(fontFamily) {\n /**\n * Allow for passing in a custom fontFamily not in the theme.\n */\n return themedProperty(fontFamilies, fontFamily);\n};\n/**\n * Get the text color. This is used to override the color.\n * @param {string} fontFamily\n * @return {string} font family\n */\n\nvar getTextColor = function getTextColor(color) {\n /**\n * Allow for passing in a custom text color not in the theme.\n */\n return themedProperty(colors.text, color);\n};\nexport { getBorderRadiusForControlHeight, getTextSizeForControlHeight, getIconSizeForButton, getIconSizeForInput, getIconSizeForSelect, getIconSizeForIconButton, getBackground, getElevation, getIconColor, getIconForIntent, getHeadingStyle, getTextStyle, getParagraphStyle, getFontFamily, getTextColor };","/**\n * Theme\n * ---\n * The theme object is used to style Evergreen.\n * It is passed into the ``.\n * ----\n * You can use this as a template for your own themes.\n */\n\n/**\n * Foundational Styles.\n * ---\n * The following properties are NOT REQUIRED by Evergreen.\n * It's exposed for convenience and documentation.\n */\nimport { colors, elevations, fills, palette, scales } from './foundational-styles';\n/**\n * Typography.\n * ---\n * The following properties are NOT REQUIRED by Evergreen.\n * It's exposed for convenience and documentation.\n */\n\nimport { headings, text, fontFamilies, paragraph } from './typography';\n/**\n * Component Specific.\n * ---\n * These ARE REQUIRED for Evergreen to work.\n */\n\nimport { avatarColors, badgeColors, spinnerColor, overlayBackgroundColor, getBadgeClassName, getButtonClassName, getLinkClassName, getCheckboxClassName, getRadioClassName, getTagInputClassName, getTextInputClassName, getTextareaClassName, getTextDropdownButtonClassName, getTabClassName, getTableCellClassName, getTooltipProps, getRowClassName, getMenuItemClassName, getSelectClassName, getSegmentedControlRadioClassName, getSwitchClassName, getAlertProps, getCodeProps, getAvatarProps, getBadgeProps, getAvatarInitialsFontSize } from './component-specific';\n/**\n * Theme Helpers.\n * ---\n * These ARE REQUIRED for Evergreen to work.\n */\n\nimport { getBorderRadiusForControlHeight, getTextSizeForControlHeight, getIconSizeForButton, getIconSizeForInput, getIconSizeForSelect, getIconSizeForIconButton, getBackground, getElevation, getIconColor, getIconForIntent, getHeadingStyle, getTextStyle, getParagraphStyle, getFontFamily, getTextColor } from './theme-helpers';\nexport default {\n // Foundational Styles.\n colors: colors,\n elevations: elevations,\n fills: fills,\n palette: palette,\n scales: scales,\n // Component Specific.\n avatarColors: avatarColors,\n badgeColors: badgeColors,\n spinnerColor: spinnerColor,\n overlayBackgroundColor: overlayBackgroundColor,\n getBadgeClassName: getBadgeClassName,\n getButtonClassName: getButtonClassName,\n getLinkClassName: getLinkClassName,\n getCheckboxClassName: getCheckboxClassName,\n getRadioClassName: getRadioClassName,\n getTagInputClassName: getTagInputClassName,\n getTextInputClassName: getTextInputClassName,\n getTextareaClassName: getTextareaClassName,\n getTextDropdownButtonClassName: getTextDropdownButtonClassName,\n getTabClassName: getTabClassName,\n getTableCellClassName: getTableCellClassName,\n getTooltipProps: getTooltipProps,\n getRowClassName: getRowClassName,\n getMenuItemClassName: getMenuItemClassName,\n getSelectClassName: getSelectClassName,\n getSegmentedControlRadioClassName: getSegmentedControlRadioClassName,\n getSwitchClassName: getSwitchClassName,\n getAlertProps: getAlertProps,\n getCodeProps: getCodeProps,\n getAvatarProps: getAvatarProps,\n getBadgeProps: getBadgeProps,\n getAvatarInitialsFontSize: getAvatarInitialsFontSize,\n // Theme Helpers.\n getBorderRadiusForControlHeight: getBorderRadiusForControlHeight,\n getTextSizeForControlHeight: getTextSizeForControlHeight,\n getIconSizeForButton: getIconSizeForButton,\n getIconSizeForInput: getIconSizeForInput,\n getIconSizeForSelect: getIconSizeForSelect,\n getIconSizeForIconButton: getIconSizeForIconButton,\n getBackground: getBackground,\n getElevation: getElevation,\n getIconColor: getIconColor,\n getIconForIntent: getIconForIntent,\n getHeadingStyle: getHeadingStyle,\n getTextStyle: getTextStyle,\n getParagraphStyle: getParagraphStyle,\n getFontFamily: getFontFamily,\n getTextColor: getTextColor,\n typography: {\n headings: headings,\n text: text,\n fontFamilies: fontFamilies,\n paragraph: paragraph\n }\n};","import { css } from 'glamor';\nimport scales from '../foundational-styles/scales';\nimport colors from '../foundational-styles/colors';\nvar getTrimStyle = function getTrimStyle(intent) {\n return {\n '&:before': {\n content: '\"\"',\n width: 3,\n height: '100%',\n position: 'absolute',\n top: 0,\n left: 0,\n backgroundColor: colors.intent[intent]\n }\n };\n};\n/**\n * Get the themed props for the Alert component.\n * @param {Object} props\n * @param {string} props.appearance - default theme supports `default` and `card`.\n * @param {Intent} props.intent - intent of the alert. May be `none`.\n * @param {boolean} props.hasTrim - when true, the alert has a trim.\n * @return {Object} { className, ...themedProps }\n */\n\nvar getAlertProps = function getAlertProps(_ref) {\n var appearance = _ref.appearance,\n intent = _ref.intent,\n hasTrim = _ref.hasTrim;\n var trimClassName = hasTrim ? css(getTrimStyle(intent)).toString() : '';\n switch (appearance) {\n case 'card':\n return {\n elevation: 1,\n borderRadius: 3,\n className: trimClassName\n };\n case 'default':\n default:\n return {\n boxShadow: \"inset 0 0 0 1px \".concat(scales.neutral.N4A),\n className: trimClassName\n };\n }\n};\nexport default getAlertProps;","import scales from '../foundational-styles/scales';\n/**\n * Get the themed properties for a `Code` text component.\n * @param {string} appearance - default, minimal.\n * @return {string} the themd properties.\n */\n\nvar getCodeProps = function getCodeProps(appearance) {\n switch (appearance) {\n case 'minimal':\n return {};\n case 'default':\n default:\n // Passing padding and border radius is non-ideal here.\n return {\n backgroundColor: scales.blue.B2A,\n boxShadow: \"inset 0 0 0 1px \".concat(scales.blue.B4A),\n paddingLeft: 6,\n paddingRight: 6,\n paddingTop: 3,\n paddingBottom: 3,\n borderRadius: 2\n };\n }\n};\nexport default getCodeProps;","/**\n * @param {number} size\n * @param {number} sizeLimitOneCharacter\n * @return {number} font size\n */\nvar getAvatarInitialsFontSize = function getAvatarInitialsFontSize(size, sizeLimitOneCharacter) {\n if (size <= sizeLimitOneCharacter) {\n return Math.ceil(size / 2.2);\n }\n return Math.ceil(size / 2.6);\n};\nexport default getAvatarInitialsFontSize;","import React from 'react';\nimport defaultTheme from './default-theme';\n/**\n * Use React 16.3+ createContext API.\n */\n\nvar ThemeContext = React.createContext(defaultTheme);\nvar ThemeProvider = ThemeContext.Provider,\n ThemeConsumer = ThemeContext.Consumer;\nexport default ThemeContext;\nexport { ThemeProvider, ThemeConsumer };","import _typeof from \"./typeof.js\";\nimport toPrimitive from \"./toPrimitive.js\";\nfunction toPropertyKey(t) {\n var i = toPrimitive(t, \"string\");\n return \"symbol\" == _typeof(i) ? i : i + \"\";\n}\nexport { toPropertyKey as default };","import _typeof from \"./typeof.js\";\nfunction toPrimitive(t, r) {\n if (\"object\" != _typeof(t) || !t) return t;\n var e = t[Symbol.toPrimitive];\n if (void 0 !== e) {\n var i = e.call(t, r || \"default\");\n if (\"object\" != _typeof(i)) return i;\n throw new TypeError(\"@@toPrimitive must return a primitive value.\");\n }\n return (\"string\" === r ? String : Number)(t);\n}\nexport { toPrimitive as default };","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport _classCallCheck from \"@babel/runtime/helpers/esm/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/esm/createClass\";\nimport _possibleConstructorReturn from \"@babel/runtime/helpers/esm/possibleConstructorReturn\";\nimport _getPrototypeOf from \"@babel/runtime/helpers/esm/getPrototypeOf\";\nimport _inherits from \"@babel/runtime/helpers/esm/inherits\";\nimport _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n if (enumerableOnly) symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n keys.push.apply(keys, symbols);\n }\n return keys;\n}\nfunction _objectSpread(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n return target;\n}\nimport React, { PureComponent } from 'react';\nimport PropTypes from 'prop-types';\nimport cx from 'classnames';\nimport { dimensions, spacing, position, layout } from 'ui-box';\nimport { Text } from '../../typography';\nimport { Icon } from '../../icon';\nimport { Spinner } from '../../spinner';\nimport { withTheme } from '../../theme';\nvar Button = /*#__PURE__*/\nfunction (_PureComponent) {\n _inherits(Button, _PureComponent);\n function Button() {\n _classCallCheck(this, Button);\n return _possibleConstructorReturn(this, _getPrototypeOf(Button).apply(this, arguments));\n }\n _createClass(Button, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n theme = _this$props.theme,\n className = _this$props.className,\n intent = _this$props.intent,\n height = _this$props.height,\n isActive = _this$props.isActive,\n children = _this$props.children,\n disabled = _this$props.disabled,\n appearance = _this$props.appearance,\n isLoading = _this$props.isLoading,\n paddingRight = _this$props.paddingRight,\n paddingLeft = _this$props.paddingLeft,\n paddingTop = _this$props.paddingTop,\n paddingBottom = _this$props.paddingBottom,\n iconBeforeKey = _this$props.iconBefore,\n iconAfterKey = _this$props.iconAfter,\n props = _objectWithoutProperties(_this$props, [\"theme\", \"className\", \"intent\", \"height\", \"isActive\", \"children\", \"disabled\", \"appearance\", \"isLoading\", \"paddingRight\", \"paddingLeft\", \"paddingTop\", \"paddingBottom\", \"iconBefore\", \"iconAfter\"]);\n var themedClassName = theme.getButtonClassName(appearance, intent);\n var textSize = theme.getTextSizeForControlHeight(height);\n var borderRadius = theme.getBorderRadiusForControlHeight(height);\n var iconSize = theme.getIconSizeForButton(height);\n var pr = paddingRight !== undefined ? paddingRight : Math.round(height / 2); // eslint-disable-line no-negated-condition\n\n var pl = paddingLeft !== undefined ? paddingLeft : Math.round(height / 2); // eslint-disable-line no-negated-condition\n\n var iconBefore;\n if (iconBeforeKey) {\n iconBefore = React.createElement(Icon, {\n icon: iconBeforeKey,\n size: iconSize,\n marginLeft: -Math.round(pl * 0.2),\n marginRight: Math.round(iconSize * 0.7)\n });\n }\n var iconAfter;\n if (iconAfterKey) {\n iconAfter = React.createElement(Icon, {\n icon: iconAfterKey,\n size: iconSize,\n marginRight: -Math.round(pl * 0.2),\n marginLeft: Math.round(iconSize * 0.7)\n });\n }\n return React.createElement(Text, _extends({\n is: \"button\",\n className: cx(themedClassName, className),\n borderTopRightRadius: borderRadius,\n borderBottomRightRadius: borderRadius,\n borderTopLeftRadius: borderRadius,\n borderBottomLeftRadius: borderRadius,\n paddingTop: paddingTop,\n paddingBottom: paddingBottom,\n paddingRight: pr,\n paddingLeft: pl,\n marginLeft: 0 // Removes weird margins in Safari\n ,\n\n marginRight: 0 // Removes weird margins in Safari\n ,\n\n marginTop: 0 // Removes weird margins in Safari\n ,\n\n marginBottom: 0 // Removes weird margins in Safari\n ,\n\n size: textSize,\n color: null // Prevent the Text color overriding the glamor appearanceStyle color\n ,\n\n height: height,\n lineHeight: \"\".concat(height, \"px\")\n }, isActive ? {\n 'data-active': true\n } : {}, Button.styles, props, {\n disabled: disabled || isLoading\n }), isLoading && React.createElement(Spinner, {\n marginLeft: -Math.round(height / 8),\n marginRight: Math.round(height / 4),\n size: Math.round(height / 2)\n }), iconBefore || null, children, iconAfter || null);\n }\n }]);\n return Button;\n}(PureComponent);\nButton.displayName = \"Button\";\n_defineProperty(Button, \"propTypes\", _objectSpread({}, dimensions.propTypes, {}, spacing.propTypes, {}, position.propTypes, {}, layout.propTypes, {\n /**\n * The intent of the button.\n */\n intent: PropTypes.oneOf(['none', 'success', 'warning', 'danger']),\n /**\n * The appearance of the button.\n */\n appearance: PropTypes.oneOf(['default', 'minimal', 'primary']).isRequired,\n /**\n * When true, show a loading spinner before the children.\n * This also disables the button.\n */\n isLoading: PropTypes.bool,\n /**\n * Forcefully set the active state of a button.\n * Useful in conjuction with a Popover.\n */\n isActive: PropTypes.bool,\n /**\n * Sets an icon before the text. Can be any icon from Evergreen or a custom element.\n */\n iconBefore: PropTypes.oneOfType([PropTypes.elementType, PropTypes.element, PropTypes.string]),\n /**\n * Sets an icon after the text. Can be any icon from Evergreen or a custom element.\n */\n iconAfter: PropTypes.oneOfType([PropTypes.elementType, PropTypes.element, PropTypes.string]),\n /**\n * When true, the button is disabled.\n * isLoading also sets the button to disabled.\n */\n disabled: PropTypes.bool,\n /**\n * Theme provided by ThemeProvider.\n */\n theme: PropTypes.object.isRequired,\n /**\n * Class name passed to the button.\n * Only use if you know what you are doing.\n */\n className: PropTypes.string\n}));\n_defineProperty(Button, \"defaultProps\", {\n appearance: 'default',\n height: 32,\n intent: 'none',\n isActive: false,\n paddingBottom: 0,\n paddingTop: 0\n});\n_defineProperty(Button, \"styles\", {\n position: 'relative',\n fontFamily: 'ui',\n fontWeight: 500,\n display: 'inline-flex',\n alignItems: 'center',\n flexWrap: 'nowrap'\n});\nexport default withTheme(Button);","\"use strict\";\n\nvar __importDefault = this && this.__importDefault || function (mod) {\n return mod && mod.__esModule ? mod : {\n \"default\": mod\n };\n};\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nconst hash_1 = __importDefault(require(\"@emotion/hash\"));\nconst get_safe_value_1 = __importDefault(require(\"./get-safe-value\"));\nlet PREFIX = 'ub-';\nfunction getClassNamePrefix() {\n return PREFIX;\n}\nexports.getClassNamePrefix = getClassNamePrefix;\nfunction setClassNamePrefix(prefix) {\n PREFIX = prefix;\n}\nexports.setClassNamePrefix = setClassNamePrefix;\n/**\n * Generates the class name.\n */\nfunction getClassName(propertyInfo, value) {\n const {\n className,\n safeValue = false,\n // Value never contains unsafe characters. e.g: 10, hidden, border-box\n complexValue = false // Complex values that are best hashed. e.g: background-image\n } = propertyInfo;\n let valueKey;\n // Shortcut the global keywords\n if (value === 'inherit' || value === 'initial' || value === 'unset') {\n valueKey = value;\n /* Always hash values that contain a calc() because the operators get\n stripped which can result in class name collisions\n */\n } else if (complexValue || value.includes('calc(')) {\n valueKey = hash_1.default(value);\n } else if (safeValue) {\n valueKey = value;\n } else {\n valueKey = get_safe_value_1.default(value);\n }\n return \"\".concat(PREFIX).concat(className, \"_\").concat(valueKey);\n}\nexports.default = getClassName;","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\nvar enhanceError = require('./core/enhanceError');\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\nfunction stringifySafely(rawValue, parser, encoder) {\n if (utils.isString(rawValue)) {\n try {\n (parser || JSON.parse)(rawValue);\n return utils.trim(rawValue);\n } catch (e) {\n if (e.name !== 'SyntaxError') {\n throw e;\n }\n }\n }\n return (encoder || JSON.stringify)(rawValue);\n}\nvar defaults = {\n transitional: {\n silentJSONParsing: true,\n forcedJSONParsing: true,\n clarifyTimeoutError: false\n },\n adapter: getDefaultAdapter(),\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) || utils.isArrayBuffer(data) || utils.isBuffer(data) || utils.isStream(data) || utils.isFile(data) || utils.isBlob(data)) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data) || headers && headers['Content-Type'] === 'application/json') {\n setContentTypeIfUnset(headers, 'application/json');\n return stringifySafely(data);\n }\n return data;\n }],\n transformResponse: [function transformResponse(data) {\n var transitional = this.transitional;\n var silentJSONParsing = transitional && transitional.silentJSONParsing;\n var forcedJSONParsing = transitional && transitional.forcedJSONParsing;\n var strictJSONParsing = !silentJSONParsing && this.responseType === 'json';\n if (strictJSONParsing || forcedJSONParsing && utils.isString(data) && data.length) {\n try {\n return JSON.parse(data);\n } catch (e) {\n if (strictJSONParsing) {\n if (e.name === 'SyntaxError') {\n throw enhanceError(e, this, 'E_JSON_PARSE');\n }\n throw e;\n }\n }\n }\n return data;\n }],\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n maxContentLength: -1,\n maxBodyLength: -1,\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\nmodule.exports = defaults;","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = hyphenateProperty;\nvar _hyphenateStyleName = require('hyphenate-style-name');\nvar _hyphenateStyleName2 = _interopRequireDefault(_hyphenateStyleName);\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nfunction hyphenateProperty(property) {\n return (0, _hyphenateStyleName2.default)(property);\n}\nmodule.exports = exports['default'];","// This is a generated file. DO NOT modify directly.\nexport var IconNameMapper = {\n add: 'AddIcon',\n 'add-column-left': 'AddColumnLeftIcon',\n 'add-column-right': 'AddColumnRightIcon',\n 'add-row-bottom': 'AddRowBottomIcon',\n 'add-row-top': 'AddRowTopIcon',\n 'add-to-artifact': 'AddToArtifactIcon',\n 'add-to-folder': 'AddToFolderIcon',\n airplane: 'AirplaneIcon',\n 'align-center': 'AlignCenterIcon',\n 'align-justify': 'AlignJustifyIcon',\n 'align-left': 'AlignLeftIcon',\n 'align-right': 'AlignRightIcon',\n 'alignment-bottom': 'AlignmentBottomIcon',\n 'alignment-horizontal-center': 'AlignmentHorizontalCenterIcon',\n 'alignment-left': 'AlignmentLeftIcon',\n 'alignment-right': 'AlignmentRightIcon',\n 'alignment-top': 'AlignmentTopIcon',\n 'alignment-vertical-center': 'AlignmentVerticalCenterIcon',\n annotation: 'AnnotationIcon',\n application: 'ApplicationIcon',\n applications: 'ApplicationsIcon',\n archive: 'ArchiveIcon',\n 'arrow-bottom-left': 'ArrowBottomLeftIcon',\n 'arrow-bottom-right': 'ArrowBottomRightIcon',\n 'arrow-down': 'ArrowDownIcon',\n 'arrow-left': 'ArrowLeftIcon',\n 'arrow-right': 'ArrowRightIcon',\n 'arrow-top-left': 'ArrowTopLeftIcon',\n 'arrow-top-right': 'ArrowTopRightIcon',\n 'arrow-up': 'ArrowUpIcon',\n 'arrows-horizontal': 'ArrowsHorizontalIcon',\n 'arrows-vertical': 'ArrowsVerticalIcon',\n asterisk: 'AsteriskIcon',\n 'automatic-updates': 'AutomaticUpdatesIcon',\n badge: 'BadgeIcon',\n 'ban-circle': 'BanCircleIcon',\n 'bank-account': 'BankAccountIcon',\n barcode: 'BarcodeIcon',\n blank: 'BlankIcon',\n 'blocked-person': 'BlockedPersonIcon',\n bold: 'BoldIcon',\n book: 'BookIcon',\n bookmark: 'BookmarkIcon',\n box: 'BoxIcon',\n briefcase: 'BriefcaseIcon',\n 'bring-data': 'BringDataIcon',\n build: 'BuildIcon',\n calculator: 'CalculatorIcon',\n calendar: 'CalendarIcon',\n camera: 'CameraIcon',\n 'caret-down': 'CaretDownIcon',\n 'caret-left': 'CaretLeftIcon',\n 'caret-right': 'CaretRightIcon',\n 'caret-up': 'CaretUpIcon',\n 'cell-tower': 'CellTowerIcon',\n changes: 'ChangesIcon',\n chart: 'ChartIcon',\n chat: 'ChatIcon',\n 'chevron-backward': 'ChevronBackwardIcon',\n 'chevron-down': 'ChevronDownIcon',\n 'chevron-forward': 'ChevronForwardIcon',\n 'chevron-left': 'ChevronLeftIcon',\n 'chevron-right': 'ChevronRightIcon',\n 'chevron-up': 'ChevronUpIcon',\n circle: 'CircleIcon',\n 'circle-arrow-down': 'CircleArrowDownIcon',\n 'circle-arrow-left': 'CircleArrowLeftIcon',\n 'circle-arrow-right': 'CircleArrowRightIcon',\n 'circle-arrow-up': 'CircleArrowUpIcon',\n citation: 'CitationIcon',\n clean: 'CleanIcon',\n clipboard: 'ClipboardIcon',\n cloud: 'CloudIcon',\n 'cloud-download': 'CloudDownloadIcon',\n 'cloud-upload': 'CloudUploadIcon',\n code: 'CodeIcon',\n 'code-block': 'CodeBlockIcon',\n cog: 'CogIcon',\n 'collapse-all': 'CollapseAllIcon',\n 'column-layout': 'ColumnLayoutIcon',\n comment: 'CommentIcon',\n comparison: 'ComparisonIcon',\n compass: 'CompassIcon',\n compressed: 'CompressedIcon',\n confirm: 'ConfirmIcon',\n console: 'ConsoleIcon',\n contrast: 'ContrastIcon',\n control: 'ControlIcon',\n 'credit-card': 'CreditCardIcon',\n cross: 'CrossIcon',\n crown: 'CrownIcon',\n cube: 'CubeIcon',\n 'cube-add': 'CubeAddIcon',\n 'cube-remove': 'CubeRemoveIcon',\n 'curved-range-chart': 'CurvedRangeChartIcon',\n cut: 'CutIcon',\n dashboard: 'DashboardIcon',\n 'data-lineage': 'DataLineageIcon',\n database: 'DatabaseIcon',\n \"delete\": 'DeleteIcon',\n delta: 'DeltaIcon',\n 'derive-column': 'DeriveColumnIcon',\n desktop: 'DesktopIcon',\n 'diagram-tree': 'DiagramTreeIcon',\n 'direction-left': 'DirectionLeftIcon',\n 'direction-right': 'DirectionRightIcon',\n disable: 'DisableIcon',\n document: 'DocumentIcon',\n 'document-open': 'DocumentOpenIcon',\n 'document-share': 'DocumentShareIcon',\n dollar: 'DollarIcon',\n dot: 'DotIcon',\n 'double-caret-horizontal': 'DoubleCaretHorizontalIcon',\n 'double-caret-vertical': 'DoubleCaretVerticalIcon',\n 'double-chevron-down': 'DoubleChevronDownIcon',\n 'double-chevron-left': 'DoubleChevronLeftIcon',\n 'double-chevron-right': 'DoubleChevronRightIcon',\n 'double-chevron-up': 'DoubleChevronUpIcon',\n 'doughnut-chart': 'DoughnutChartIcon',\n download: 'DownloadIcon',\n 'drag-handle-horizontal': 'DragHandleHorizontalIcon',\n 'drag-handle-vertical': 'DragHandleVerticalIcon',\n draw: 'DrawIcon',\n 'drive-time': 'DriveTimeIcon',\n duplicate: 'DuplicateIcon',\n edit: 'EditIcon',\n eject: 'EjectIcon',\n endorsed: 'EndorsedIcon',\n envelope: 'EnvelopeIcon',\n equals: 'EqualsIcon',\n eraser: 'EraserIcon',\n error: 'ErrorIcon',\n euro: 'EuroIcon',\n exchange: 'ExchangeIcon',\n 'exclude-row': 'ExcludeRowIcon',\n 'expand-all': 'ExpandAllIcon',\n \"export\": 'ExportIcon',\n 'eye-off': 'EyeOffIcon',\n 'eye-on': 'EyeOnIcon',\n 'eye-open': 'EyeOpenIcon',\n 'fast-backward': 'FastBackwardIcon',\n 'fast-forward': 'FastForwardIcon',\n feed: 'FeedIcon',\n 'feed-subscribed': 'FeedSubscribedIcon',\n film: 'FilmIcon',\n filter: 'FilterIcon',\n 'filter-keep': 'FilterKeepIcon',\n 'filter-list': 'FilterListIcon',\n 'filter-open': 'FilterOpenIcon',\n 'filter-remove': 'FilterRemoveIcon',\n flag: 'FlagIcon',\n flame: 'FlameIcon',\n flash: 'FlashIcon',\n 'floppy-disk': 'FloppyDiskIcon',\n 'flow-branch': 'FlowBranchIcon',\n 'flow-end': 'FlowEndIcon',\n 'flow-linear': 'FlowLinearIcon',\n 'flow-review': 'FlowReviewIcon',\n 'flow-review-branch': 'FlowReviewBranchIcon',\n flows: 'FlowsIcon',\n 'folder-close': 'FolderCloseIcon',\n 'folder-new': 'FolderNewIcon',\n 'folder-open': 'FolderOpenIcon',\n 'folder-shared': 'FolderSharedIcon',\n 'folder-shared-open': 'FolderSharedOpenIcon',\n follower: 'FollowerIcon',\n following: 'FollowingIcon',\n font: 'FontIcon',\n fork: 'ForkIcon',\n form: 'FormIcon',\n 'full-circle': 'FullCircleIcon',\n 'full-stacked-chart': 'FullStackedChartIcon',\n fullscreen: 'FullscreenIcon',\n \"function\": 'FunctionIcon',\n 'gantt-chart': 'GanttChartIcon',\n geolocation: 'GeolocationIcon',\n geosearch: 'GeosearchIcon',\n 'git-branch': 'GitBranchIcon',\n 'git-commit': 'GitCommitIcon',\n 'git-merge': 'GitMergeIcon',\n 'git-new-branch': 'GitNewBranchIcon',\n 'git-pull': 'GitPullIcon',\n 'git-push': 'GitPushIcon',\n 'git-repo': 'GitRepoIcon',\n glass: 'GlassIcon',\n globe: 'GlobeIcon',\n 'globe-network': 'GlobeNetworkIcon',\n graph: 'GraphIcon',\n 'graph-remove': 'GraphRemoveIcon',\n 'greater-than': 'GreaterThanIcon',\n 'greater-than-or-equal-to': 'GreaterThanOrEqualToIcon',\n grid: 'GridIcon',\n 'grid-view': 'GridViewIcon',\n 'group-objects': 'GroupObjectsIcon',\n 'grouped-bar-chart': 'GroupedBarChartIcon',\n hand: 'HandIcon',\n 'hand-down': 'HandDownIcon',\n 'hand-left': 'HandLeftIcon',\n 'hand-right': 'HandRightIcon',\n 'hand-up': 'HandUpIcon',\n header: 'HeaderIcon',\n 'header-one': 'HeaderOneIcon',\n 'header-two': 'HeaderTwoIcon',\n headset: 'HeadsetIcon',\n heart: 'HeartIcon',\n 'heart-broken': 'HeartBrokenIcon',\n 'heat-grid': 'HeatGridIcon',\n heatmap: 'HeatmapIcon',\n help: 'HelpIcon',\n 'helper-management': 'HelperManagementIcon',\n highlight: 'HighlightIcon',\n history: 'HistoryIcon',\n home: 'HomeIcon',\n 'horizontal-bar-chart': 'HorizontalBarChartIcon',\n 'horizontal-bar-chart-asc': 'HorizontalBarChartAscIcon',\n 'horizontal-bar-chart-desc': 'HorizontalBarChartDescIcon',\n 'horizontal-distribution': 'HorizontalDistributionIcon',\n 'id-number': 'IdNumberIcon',\n 'image-rotate-left': 'ImageRotateLeftIcon',\n 'image-rotate-right': 'ImageRotateRightIcon',\n \"import\": 'ImportIcon',\n inbox: 'InboxIcon',\n 'inbox-filtered': 'InboxFilteredIcon',\n 'inbox-geo': 'InboxGeoIcon',\n 'inbox-search': 'InboxSearchIcon',\n 'inbox-update': 'InboxUpdateIcon',\n 'info-sign': 'InfoSignIcon',\n inheritance: 'InheritanceIcon',\n 'inner-join': 'InnerJoinIcon',\n insert: 'InsertIcon',\n intersection: 'IntersectionIcon',\n 'ip-address': 'IpAddressIcon',\n issue: 'IssueIcon',\n 'issue-closed': 'IssueClosedIcon',\n 'issue-new': 'IssueNewIcon',\n italic: 'ItalicIcon',\n 'join-table': 'JoinTableIcon',\n key: 'KeyIcon',\n 'key-backspace': 'KeyBackspaceIcon',\n 'key-command': 'KeyCommandIcon',\n 'key-control': 'KeyControlIcon',\n 'key-delete': 'KeyDeleteIcon',\n 'key-enter': 'KeyEnterIcon',\n 'key-escape': 'KeyEscapeIcon',\n 'key-option': 'KeyOptionIcon',\n 'key-shift': 'KeyShiftIcon',\n 'key-tab': 'KeyTabIcon',\n 'known-vehicle': 'KnownVehicleIcon',\n label: 'LabelIcon',\n layer: 'LayerIcon',\n layers: 'LayersIcon',\n layout: 'LayoutIcon',\n 'layout-auto': 'LayoutAutoIcon',\n 'layout-balloon': 'LayoutBalloonIcon',\n 'layout-circle': 'LayoutCircleIcon',\n 'layout-grid': 'LayoutGridIcon',\n 'layout-group-by': 'LayoutGroupByIcon',\n 'layout-hierarchy': 'LayoutHierarchyIcon',\n 'layout-linear': 'LayoutLinearIcon',\n 'layout-skew-grid': 'LayoutSkewGridIcon',\n 'layout-sorted-clusters': 'LayoutSortedClustersIcon',\n learning: 'LearningIcon',\n 'left-join': 'LeftJoinIcon',\n 'less-than': 'LessThanIcon',\n 'less-than-or-equal-to': 'LessThanOrEqualToIcon',\n lifesaver: 'LifesaverIcon',\n lightbulb: 'LightbulbIcon',\n link: 'LinkIcon',\n list: 'ListIcon',\n 'list-columns': 'ListColumnsIcon',\n 'list-detail-view': 'ListDetailViewIcon',\n locate: 'LocateIcon',\n lock: 'LockIcon',\n 'log-in': 'LogInIcon',\n 'log-out': 'LogOutIcon',\n manual: 'ManualIcon',\n 'manually-entered-data': 'ManuallyEnteredDataIcon',\n map: 'MapIcon',\n 'map-create': 'MapCreateIcon',\n 'map-marker': 'MapMarkerIcon',\n maximize: 'MaximizeIcon',\n media: 'MediaIcon',\n menu: 'MenuIcon',\n 'menu-closed': 'MenuClosedIcon',\n 'menu-open': 'MenuOpenIcon',\n 'merge-columns': 'MergeColumnsIcon',\n 'merge-links': 'MergeLinksIcon',\n minimize: 'MinimizeIcon',\n minus: 'MinusIcon',\n 'mobile-phone': 'MobilePhoneIcon',\n 'mobile-video': 'MobileVideoIcon',\n moon: 'MoonIcon',\n more: 'MoreIcon',\n mountain: 'MountainIcon',\n move: 'MoveIcon',\n mugshot: 'MugshotIcon',\n 'multi-select': 'MultiSelectIcon',\n music: 'MusicIcon',\n 'new-drawing': 'NewDrawingIcon',\n 'new-grid-item': 'NewGridItemIcon',\n 'new-layer': 'NewLayerIcon',\n 'new-layers': 'NewLayersIcon',\n 'new-link': 'NewLinkIcon',\n 'new-object': 'NewObjectIcon',\n 'new-person': 'NewPersonIcon',\n 'new-prescription': 'NewPrescriptionIcon',\n 'new-text-box': 'NewTextBoxIcon',\n ninja: 'NinjaIcon',\n 'not-equal-to': 'NotEqualToIcon',\n notifications: 'NotificationsIcon',\n 'notifications-updated': 'NotificationsUpdatedIcon',\n 'numbered-list': 'NumberedListIcon',\n numerical: 'NumericalIcon',\n office: 'OfficeIcon',\n offline: 'OfflineIcon',\n 'oil-field': 'OilFieldIcon',\n 'one-column': 'OneColumnIcon',\n outdated: 'OutdatedIcon',\n 'page-layout': 'PageLayoutIcon',\n 'panel-stats': 'PanelStatsIcon',\n 'panel-table': 'PanelTableIcon',\n paperclip: 'PaperclipIcon',\n paragraph: 'ParagraphIcon',\n path: 'PathIcon',\n 'path-search': 'PathSearchIcon',\n pause: 'PauseIcon',\n people: 'PeopleIcon',\n percentage: 'PercentageIcon',\n person: 'PersonIcon',\n phone: 'PhoneIcon',\n 'pie-chart': 'PieChartIcon',\n pin: 'PinIcon',\n pivot: 'PivotIcon',\n 'pivot-table': 'PivotTableIcon',\n play: 'PlayIcon',\n plus: 'PlusIcon',\n 'polygon-filter': 'PolygonFilterIcon',\n power: 'PowerIcon',\n 'predictive-analysis': 'PredictiveAnalysisIcon',\n prescription: 'PrescriptionIcon',\n presentation: 'PresentationIcon',\n print: 'PrintIcon',\n projects: 'ProjectsIcon',\n properties: 'PropertiesIcon',\n property: 'PropertyIcon',\n 'publish-function': 'PublishFunctionIcon',\n pulse: 'PulseIcon',\n random: 'RandomIcon',\n record: 'RecordIcon',\n redo: 'RedoIcon',\n refresh: 'RefreshIcon',\n 'regression-chart': 'RegressionChartIcon',\n remove: 'RemoveIcon',\n 'remove-column': 'RemoveColumnIcon',\n 'remove-column-left': 'RemoveColumnLeftIcon',\n 'remove-column-right': 'RemoveColumnRightIcon',\n 'remove-row-bottom': 'RemoveRowBottomIcon',\n 'remove-row-top': 'RemoveRowTopIcon',\n repeat: 'RepeatIcon',\n reset: 'ResetIcon',\n resolve: 'ResolveIcon',\n rig: 'RigIcon',\n 'right-join': 'RightJoinIcon',\n ring: 'RingIcon',\n 'rotate-document': 'RotateDocumentIcon',\n 'rotate-page': 'RotatePageIcon',\n satellite: 'SatelliteIcon',\n saved: 'SavedIcon',\n 'scatter-plot': 'ScatterPlotIcon',\n search: 'SearchIcon',\n 'search-around': 'SearchAroundIcon',\n 'search-template': 'SearchTemplateIcon',\n 'search-text': 'SearchTextIcon',\n 'segmented-control': 'SegmentedControlIcon',\n select: 'SelectIcon',\n selection: 'SelectionIcon',\n 'send-to': 'SendToIcon',\n 'send-to-graph': 'SendToGraphIcon',\n 'send-to-map': 'SendToMapIcon',\n 'series-add': 'SeriesAddIcon',\n 'series-configuration': 'SeriesConfigurationIcon',\n 'series-derived': 'SeriesDerivedIcon',\n 'series-filtered': 'SeriesFilteredIcon',\n 'series-search': 'SeriesSearchIcon',\n settings: 'SettingsIcon',\n share: 'ShareIcon',\n shield: 'ShieldIcon',\n shop: 'ShopIcon',\n 'shopping-cart': 'ShoppingCartIcon',\n 'signal-search': 'SignalSearchIcon',\n 'sim-card': 'SimCardIcon',\n slash: 'SlashIcon',\n 'small-cross': 'SmallCrossIcon',\n 'small-minus': 'SmallMinusIcon',\n 'small-plus': 'SmallPlusIcon',\n 'small-tick': 'SmallTickIcon',\n snowflake: 'SnowflakeIcon',\n 'social-media': 'SocialMediaIcon',\n sort: 'SortIcon',\n 'sort-alphabetical': 'SortAlphabeticalIcon',\n 'sort-alphabetical-desc': 'SortAlphabeticalDescIcon',\n 'sort-asc': 'SortAscIcon',\n 'sort-desc': 'SortDescIcon',\n 'sort-numerical': 'SortNumericalIcon',\n 'sort-numerical-desc': 'SortNumericalDescIcon',\n 'split-columns': 'SplitColumnsIcon',\n square: 'SquareIcon',\n 'stacked-chart': 'StackedChartIcon',\n star: 'StarIcon',\n 'star-empty': 'StarEmptyIcon',\n 'step-backward': 'StepBackwardIcon',\n 'step-chart': 'StepChartIcon',\n 'step-forward': 'StepForwardIcon',\n stop: 'StopIcon',\n stopwatch: 'StopwatchIcon',\n strikethrough: 'StrikethroughIcon',\n style: 'StyleIcon',\n 'swap-horizontal': 'SwapHorizontalIcon',\n 'swap-vertical': 'SwapVerticalIcon',\n 'symbol-circle': 'SymbolCircleIcon',\n 'symbol-cross': 'SymbolCrossIcon',\n 'symbol-diamond': 'SymbolDiamondIcon',\n 'symbol-square': 'SymbolSquareIcon',\n 'symbol-triangle-down': 'SymbolTriangleDownIcon',\n 'symbol-triangle-up': 'SymbolTriangleUpIcon',\n tag: 'TagIcon',\n 'take-action': 'TakeActionIcon',\n taxi: 'TaxiIcon',\n 'text-highlight': 'TextHighlightIcon',\n th: 'ThIcon',\n 'th-derived': 'ThDerivedIcon',\n 'th-disconnect': 'ThDisconnectIcon',\n 'th-filtered': 'ThFilteredIcon',\n 'th-list': 'ThListIcon',\n 'thumbs-down': 'ThumbsDownIcon',\n 'thumbs-up': 'ThumbsUpIcon',\n tick: 'TickIcon',\n 'tick-circle': 'TickCircleIcon',\n time: 'TimeIcon',\n 'timeline-area-chart': 'TimelineAreaChartIcon',\n 'timeline-bar-chart': 'TimelineBarChartIcon',\n 'timeline-events': 'TimelineEventsIcon',\n 'timeline-line-chart': 'TimelineLineChartIcon',\n tint: 'TintIcon',\n torch: 'TorchIcon',\n tractor: 'TractorIcon',\n train: 'TrainIcon',\n translate: 'TranslateIcon',\n trash: 'TrashIcon',\n tree: 'TreeIcon',\n 'trending-down': 'TrendingDownIcon',\n 'trending-up': 'TrendingUpIcon',\n truck: 'TruckIcon',\n 'two-columns': 'TwoColumnsIcon',\n unarchive: 'UnarchiveIcon',\n underline: 'UnderlineIcon',\n undo: 'UndoIcon',\n 'ungroup-objects': 'UngroupObjectsIcon',\n 'unknown-vehicle': 'UnknownVehicleIcon',\n unlock: 'UnlockIcon',\n unpin: 'UnpinIcon',\n unresolve: 'UnresolveIcon',\n updated: 'UpdatedIcon',\n upload: 'UploadIcon',\n user: 'UserIcon',\n variable: 'VariableIcon',\n 'vertical-bar-chart-asc': 'VerticalBarChartAscIcon',\n 'vertical-bar-chart-desc': 'VerticalBarChartDescIcon',\n 'vertical-distribution': 'VerticalDistributionIcon',\n video: 'VideoIcon',\n 'volume-down': 'VolumeDownIcon',\n 'volume-off': 'VolumeOffIcon',\n 'volume-up': 'VolumeUpIcon',\n walk: 'WalkIcon',\n 'warning-sign': 'WarningSignIcon',\n 'waterfall-chart': 'WaterfallChartIcon',\n widget: 'WidgetIcon',\n 'widget-button': 'WidgetButtonIcon',\n 'widget-footer': 'WidgetFooterIcon',\n 'widget-header': 'WidgetHeaderIcon',\n wrench: 'WrenchIcon',\n 'zoom-in': 'ZoomInIcon',\n 'zoom-out': 'ZoomOutIcon',\n 'zoom-to-fit': 'ZoomToFitIcon'\n};","import _extends from \"@babel/runtime/helpers/esm/extends\";\nimport React, { memo, forwardRef } from 'react';\nimport Icon from '../src/Icon';\nvar svgPaths16 = ['M9.41 8l3.29-3.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L8 6.59l-3.29-3.3a1.003 1.003 0 00-1.42 1.42L6.59 8 3.3 11.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71L8 9.41l3.29 3.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L9.41 8z'];\nvar svgPaths20 = ['M11.41 10l4.29-4.29c.19-.18.3-.43.3-.71a1.003 1.003 0 00-1.71-.71L10 8.59l-4.29-4.3a1.003 1.003 0 00-1.42 1.42L8.59 10 4.3 14.29c-.19.18-.3.43-.3.71a1.003 1.003 0 001.71.71l4.29-4.3 4.29 4.29c.18.19.43.3.71.3a1.003 1.003 0 00.71-1.71L11.41 10z'];\nexport var CrossIcon = memo(forwardRef(function (props, ref) {\n return React.createElement(Icon, _extends({\n svgPaths16: svgPaths16,\n svgPaths20: svgPaths20,\n ref: ref,\n name: \"cross\"\n }, props));\n}));","var isarray = require('isarray');\n\n/**\n * Expose `pathToRegexp`.\n */\nmodule.exports = pathToRegexp;\nmodule.exports.parse = parse;\nmodule.exports.compile = compile;\nmodule.exports.tokensToFunction = tokensToFunction;\nmodule.exports.tokensToRegExp = tokensToRegExp;\n\n/**\n * The main path matching regexp utility.\n *\n * @type {RegExp}\n */\nvar PATH_REGEXP = new RegExp([\n// Match escaped characters that would otherwise appear in future matches.\n// This allows the user to escape special characters that won't transform.\n'(\\\\\\\\.)',\n// Match Express-style parameters and un-named parameters with a prefix\n// and optional suffixes. Matches appear as:\n//\n// \"/:test(\\\\d+)?\" => [\"/\", \"test\", \"\\d+\", undefined, \"?\", undefined]\n// \"/route(\\\\d+)\" => [undefined, undefined, undefined, \"\\d+\", undefined, undefined]\n// \"/*\" => [\"/\", undefined, undefined, undefined, undefined, \"*\"]\n'([\\\\/.])?(?:(?:\\\\:(\\\\w+)(?:\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))?|\\\\(((?:\\\\\\\\.|[^\\\\\\\\()])+)\\\\))([+*?])?|(\\\\*))'].join('|'), 'g');\n\n/**\n * Parse a string for the raw tokens.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!Array}\n */\nfunction parse(str, options) {\n var tokens = [];\n var key = 0;\n var index = 0;\n var path = '';\n var defaultDelimiter = options && options.delimiter || '/';\n var res;\n while ((res = PATH_REGEXP.exec(str)) != null) {\n var m = res[0];\n var escaped = res[1];\n var offset = res.index;\n path += str.slice(index, offset);\n index = offset + m.length;\n\n // Ignore already escaped sequences.\n if (escaped) {\n path += escaped[1];\n continue;\n }\n var next = str[index];\n var prefix = res[2];\n var name = res[3];\n var capture = res[4];\n var group = res[5];\n var modifier = res[6];\n var asterisk = res[7];\n\n // Push the current path onto the tokens.\n if (path) {\n tokens.push(path);\n path = '';\n }\n var partial = prefix != null && next != null && next !== prefix;\n var repeat = modifier === '+' || modifier === '*';\n var optional = modifier === '?' || modifier === '*';\n var delimiter = prefix || defaultDelimiter;\n var pattern = capture || group;\n var prevText = prefix || (typeof tokens[tokens.length - 1] === 'string' ? tokens[tokens.length - 1] : '');\n tokens.push({\n name: name || key++,\n prefix: prefix || '',\n delimiter: delimiter,\n optional: optional,\n repeat: repeat,\n partial: partial,\n asterisk: !!asterisk,\n pattern: pattern ? escapeGroup(pattern) : asterisk ? '.*' : restrictBacktrack(delimiter, prevText)\n });\n }\n\n // Match any characters still remaining.\n if (index < str.length) {\n path += str.substr(index);\n }\n\n // If the path exists, push it onto the end.\n if (path) {\n tokens.push(path);\n }\n return tokens;\n}\nfunction restrictBacktrack(delimiter, prevText) {\n if (!prevText || prevText.indexOf(delimiter) > -1) {\n return '[^' + escapeString(delimiter) + ']+?';\n }\n return escapeString(prevText) + '|(?:(?!' + escapeString(prevText) + ')[^' + escapeString(delimiter) + '])+?';\n}\n\n/**\n * Compile a string to a template function for the path.\n *\n * @param {string} str\n * @param {Object=} options\n * @return {!function(Object=, Object=)}\n */\nfunction compile(str, options) {\n return tokensToFunction(parse(str, options), options);\n}\n\n/**\n * Prettier encoding of URI path segments.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeURIComponentPretty(str) {\n return encodeURI(str).replace(/[\\/?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\n\n/**\n * Encode the asterisk parameter. Similar to `pretty`, but allows slashes.\n *\n * @param {string}\n * @return {string}\n */\nfunction encodeAsterisk(str) {\n return encodeURI(str).replace(/[?#]/g, function (c) {\n return '%' + c.charCodeAt(0).toString(16).toUpperCase();\n });\n}\n\n/**\n * Expose a method for transforming tokens into the path function.\n */\nfunction tokensToFunction(tokens, options) {\n // Compile all the tokens into regexps.\n var matches = new Array(tokens.length);\n\n // Compile all the patterns before compilation.\n for (var i = 0; i < tokens.length; i++) {\n if (typeof tokens[i] === 'object') {\n matches[i] = new RegExp('^(?:' + tokens[i].pattern + ')$', flags(options));\n }\n }\n return function (obj, opts) {\n var path = '';\n var data = obj || {};\n var options = opts || {};\n var encode = options.pretty ? encodeURIComponentPretty : encodeURIComponent;\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n if (typeof token === 'string') {\n path += token;\n continue;\n }\n var value = data[token.name];\n var segment;\n if (value == null) {\n if (token.optional) {\n // Prepend partial segment prefixes.\n if (token.partial) {\n path += token.prefix;\n }\n continue;\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to be defined');\n }\n }\n if (isarray(value)) {\n if (!token.repeat) {\n throw new TypeError('Expected \"' + token.name + '\" to not repeat, but received `' + JSON.stringify(value) + '`');\n }\n if (value.length === 0) {\n if (token.optional) {\n continue;\n } else {\n throw new TypeError('Expected \"' + token.name + '\" to not be empty');\n }\n }\n for (var j = 0; j < value.length; j++) {\n segment = encode(value[j]);\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected all \"' + token.name + '\" to match \"' + token.pattern + '\", but received `' + JSON.stringify(segment) + '`');\n }\n path += (j === 0 ? token.prefix : token.delimiter) + segment;\n }\n continue;\n }\n segment = token.asterisk ? encodeAsterisk(value) : encode(value);\n if (!matches[i].test(segment)) {\n throw new TypeError('Expected \"' + token.name + '\" to match \"' + token.pattern + '\", but received \"' + segment + '\"');\n }\n path += token.prefix + segment;\n }\n return path;\n };\n}\n\n/**\n * Escape a regular expression string.\n *\n * @param {string} str\n * @return {string}\n */\nfunction escapeString(str) {\n return str.replace(/([.+*?=^!:${}()[\\]|\\/\\\\])/g, '\\\\$1');\n}\n\n/**\n * Escape the capturing group by escaping special characters and meaning.\n *\n * @param {string} group\n * @return {string}\n */\nfunction escapeGroup(group) {\n return group.replace(/([=!:$\\/()])/g, '\\\\$1');\n}\n\n/**\n * Attach the keys as a property of the regexp.\n *\n * @param {!RegExp} re\n * @param {Array} keys\n * @return {!RegExp}\n */\nfunction attachKeys(re, keys) {\n re.keys = keys;\n return re;\n}\n\n/**\n * Get the flags for a regexp from the options.\n *\n * @param {Object} options\n * @return {string}\n */\nfunction flags(options) {\n return options && options.sensitive ? '' : 'i';\n}\n\n/**\n * Pull out keys from a regexp.\n *\n * @param {!RegExp} path\n * @param {!Array} keys\n * @return {!RegExp}\n */\nfunction regexpToRegexp(path, keys) {\n // Use a negative lookahead to match only capturing groups.\n var groups = path.source.match(/\\((?!\\?)/g);\n if (groups) {\n for (var i = 0; i < groups.length; i++) {\n keys.push({\n name: i,\n prefix: null,\n delimiter: null,\n optional: false,\n repeat: false,\n partial: false,\n asterisk: false,\n pattern: null\n });\n }\n }\n return attachKeys(path, keys);\n}\n\n/**\n * Transform an array into a regexp.\n *\n * @param {!Array} path\n * @param {Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction arrayToRegexp(path, keys, options) {\n var parts = [];\n for (var i = 0; i < path.length; i++) {\n parts.push(pathToRegexp(path[i], keys, options).source);\n }\n var regexp = new RegExp('(?:' + parts.join('|') + ')', flags(options));\n return attachKeys(regexp, keys);\n}\n\n/**\n * Create a path regexp from string input.\n *\n * @param {string} path\n * @param {!Array} keys\n * @param {!Object} options\n * @return {!RegExp}\n */\nfunction stringToRegexp(path, keys, options) {\n return tokensToRegExp(parse(path, options), keys, options);\n}\n\n/**\n * Expose a function for taking tokens and returning a RegExp.\n *\n * @param {!Array} tokens\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction tokensToRegExp(tokens, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */keys || options;\n keys = [];\n }\n options = options || {};\n var strict = options.strict;\n var end = options.end !== false;\n var route = '';\n\n // Iterate over the tokens and create our regexp string.\n for (var i = 0; i < tokens.length; i++) {\n var token = tokens[i];\n if (typeof token === 'string') {\n route += escapeString(token);\n } else {\n var prefix = escapeString(token.prefix);\n var capture = '(?:' + token.pattern + ')';\n keys.push(token);\n if (token.repeat) {\n capture += '(?:' + prefix + capture + ')*';\n }\n if (token.optional) {\n if (!token.partial) {\n capture = '(?:' + prefix + '(' + capture + '))?';\n } else {\n capture = prefix + '(' + capture + ')?';\n }\n } else {\n capture = prefix + '(' + capture + ')';\n }\n route += capture;\n }\n }\n var delimiter = escapeString(options.delimiter || '/');\n var endsWithDelimiter = route.slice(-delimiter.length) === delimiter;\n\n // In non-strict mode we allow a slash at the end of match. If the path to\n // match already ends with a slash, we remove it for consistency. The slash\n // is valid at the end of a path match, not in the middle. This is important\n // in non-ending mode, where \"/test/\" shouldn't match \"/test//route\".\n if (!strict) {\n route = (endsWithDelimiter ? route.slice(0, -delimiter.length) : route) + '(?:' + delimiter + '(?=$))?';\n }\n if (end) {\n route += '$';\n } else {\n // In non-ending mode, we need the capturing groups to match as much as\n // possible by using a positive lookahead to the end or next path segment.\n route += strict && endsWithDelimiter ? '' : '(?=' + delimiter + '|$)';\n }\n return attachKeys(new RegExp('^' + route, flags(options)), keys);\n}\n\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n *\n * @param {(string|RegExp|Array)} path\n * @param {(Array|Object)=} keys\n * @param {Object=} options\n * @return {!RegExp}\n */\nfunction pathToRegexp(path, keys, options) {\n if (!isarray(keys)) {\n options = /** @type {!Object} */keys || options;\n keys = [];\n }\n options = options || {};\n if (path instanceof RegExp) {\n return regexpToRegexp(path, /** @type {!Array} */keys);\n }\n if (isarray(path)) {\n return arrayToRegexp(/** @type {!Array} */path, /** @type {!Array} */keys, options);\n }\n return stringToRegexp(/** @type {string} */path, /** @type {!Array} */keys, options);\n}","\"use strict\";\n\nexports.__esModule = true;\nexports.default = void 0;\nvar _default = !!(typeof window !== 'undefined' && window.document && window.document.createElement);\nexports.default = _default;\nmodule.exports = exports[\"default\"];","import _classCallCheck from \"@babel/runtime/helpers/esm/classCallCheck\";\nimport _createClass from \"@babel/runtime/helpers/esm/createClass\";\nimport _possibleConstructorReturn from \"@babel/runtime/helpers/esm/possibleConstructorReturn\";\nimport _getPrototypeOf from \"@babel/runtime/helpers/esm/getPrototypeOf\";\nimport _inherits from \"@babel/runtime/helpers/esm/inherits\";\nimport _defineProperty from \"@babel/runtime/helpers/esm/defineProperty\";\nimport _objectWithoutProperties from \"@babel/runtime/helpers/esm/objectWithoutProperties\";\nimport React, { PureComponent } from 'react';\nimport PropTypes from 'prop-types';\nimport ReactIs from 'react-is';\nimport * as IconExports from '../../icons';\nvar IconNameMapper = IconExports.IconNameMapper,\n icons = _objectWithoutProperties(IconExports, [\"IconNameMapper\"]);\nexport var Icon = /*#__PURE__*/\nfunction (_PureComponent) {\n _inherits(Icon, _PureComponent);\n function Icon() {\n _classCallCheck(this, Icon);\n return _possibleConstructorReturn(this, _getPrototypeOf(Icon).apply(this, arguments));\n }\n _createClass(Icon, [{\n key: \"render\",\n value: function render() {\n var _this$props = this.props,\n icon = _this$props.icon,\n iconProps = _objectWithoutProperties(_this$props, [\"icon\"]);\n if (!icon) {\n return null;\n }\n if (typeof icon === 'string') {\n var iconName = IconNameMapper[icon] || '';\n var Component = icons[iconName];\n if (Component) {\n return React.createElement(Component, iconProps);\n }\n }\n if (ReactIs.isValidElementType(icon)) {\n var _Component = icon;\n return React.createElement(_Component, iconProps);\n }\n if (React.isValidElement(icon)) {\n return React.cloneElement(icon, iconProps);\n }\n return icon;\n }\n }]);\n return Icon;\n}(PureComponent);\nIcon.displayName = \"Icon\";\n_defineProperty(Icon, \"SIZE_STANDARD\", 16);\n_defineProperty(Icon, \"SIZE_LARGE\", 20);\n_defineProperty(Icon, \"propTypes\", {\n /**\n * Color of icon. Equivalent to setting CSS `fill` property.\n */\n color: PropTypes.string,\n /**\n * Name of the icon, or an icon element to render.\n * This prop is required because it determines the content of the component, but it can\n * be explicitly set to falsy values to render nothing.\n *\n * - If `null` or `undefined` or `false`, this component will render nothing.\n * - If given an IconName string literal, it will render the corresponding Evergreen icon\n * - If given a valid React element reference, it will be rendered with the other icon props\n * - Any other value will be returned as a pass-through (as if you didn't use ``)\n */\n icon: PropTypes.oneOfType([PropTypes.elementType, PropTypes.element, PropTypes.string]).isRequired,\n /**\n * Size of the icon, in pixels.\n * Blueprint contains 16px and 20px SVG icon images,\n * and chooses the appropriate resolution based on this prop.\n */\n size: PropTypes.number.isRequired,\n /**\n * Description string.\n * Browsers usually render this as a tooltip on hover, whereas screen\n * readers will use it for aural feedback.\n * By default, this is set to the icon's name for accessibility.\n */\n title: PropTypes.string,\n /**\n * CSS style properties.\n */\n style: PropTypes.object\n});","'use strict';\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.processStyleName = undefined;\nexports.createMarkupForStyles = createMarkupForStyles;\nvar _camelizeStyleName = require('fbjs/lib/camelizeStyleName');\nvar _camelizeStyleName2 = _interopRequireDefault(_camelizeStyleName);\nvar _dangerousStyleValue = require('./dangerousStyleValue');\nvar _dangerousStyleValue2 = _interopRequireDefault(_dangerousStyleValue);\nvar _hyphenateStyleName = require('fbjs/lib/hyphenateStyleName');\nvar _hyphenateStyleName2 = _interopRequireDefault(_hyphenateStyleName);\nvar _memoizeStringOnly = require('fbjs/lib/memoizeStringOnly');\nvar _memoizeStringOnly2 = _interopRequireDefault(_memoizeStringOnly);\nvar _warning = require('fbjs/lib/warning');\nvar _warning2 = _interopRequireDefault(_warning);\nfunction _interopRequireDefault(obj) {\n return obj && obj.__esModule ? obj : {\n default: obj\n };\n}\nvar processStyleName = exports.processStyleName = (0, _memoizeStringOnly2.default)(_hyphenateStyleName2.default); /**\n * Copyright 2013-present, Facebook, Inc.\n * All rights reserved.\n *\n * This source code is licensed under the BSD-style license found in the\n * LICENSE file in the root directory of this source tree. An additional grant\n * of patent rights can be found in the PATENTS file in the same directory.\n *\n * @providesModule CSSPropertyOperations\n */\n\nif (process.env.NODE_ENV !== 'production') {\n // 'msTransform' is correct, but the other prefixes should be capitalized\n var badVendoredStyleNamePattern = /^(?:webkit|moz|o)[A-Z]/;\n\n // style values shouldn't contain a semicolon\n var badStyleValueWithSemicolonPattern = /;\\s*$/;\n var warnedStyleNames = {};\n var warnedStyleValues = {};\n var warnedForNaNValue = false;\n var warnHyphenatedStyleName = function warnHyphenatedStyleName(name, owner) {\n if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n return;\n }\n warnedStyleNames[name] = true;\n process.env.NODE_ENV !== 'production' ? (0, _warning2.default)(false, 'Unsupported style property %s. Did you mean %s?%s', name, (0, _camelizeStyleName2.default)(name), checkRenderMessage(owner)) : void 0;\n };\n var warnBadVendoredStyleName = function warnBadVendoredStyleName(name, owner) {\n if (warnedStyleNames.hasOwnProperty(name) && warnedStyleNames[name]) {\n return;\n }\n warnedStyleNames[name] = true;\n process.env.NODE_ENV !== 'production' ? (0, _warning2.default)(false, 'Unsupported vendor-prefixed style property %s. Did you mean %s?%s', name, name.charAt(0).toUpperCase() + name.slice(1), checkRenderMessage(owner)) : void 0;\n };\n var warnStyleValueWithSemicolon = function warnStyleValueWithSemicolon(name, value, owner) {\n if (warnedStyleValues.hasOwnProperty(value) && warnedStyleValues[value]) {\n return;\n }\n warnedStyleValues[value] = true;\n process.env.NODE_ENV !== 'production' ? (0, _warning2.default)(false, 'Style property values shouldn\\'t contain a semicolon.%s ' + 'Try \"%s: %s\" instead.', checkRenderMessage(owner), name, value.replace(badStyleValueWithSemicolonPattern, '')) : void 0;\n };\n var warnStyleValueIsNaN = function warnStyleValueIsNaN(name, value, owner) {\n if (warnedForNaNValue) {\n return;\n }\n warnedForNaNValue = true;\n process.env.NODE_ENV !== 'production' ? (0, _warning2.default)(false, '`NaN` is an invalid value for the `%s` css style property.%s', name, checkRenderMessage(owner)) : void 0;\n };\n var checkRenderMessage = function checkRenderMessage(owner) {\n if (owner) {\n var name = owner.getName();\n if (name) {\n return ' Check the render method of `' + name + '`.';\n }\n }\n return '';\n };\n\n /**\n * @param {string} name\n * @param {*} value\n * @param {ReactDOMComponent} component\n */\n var warnValidStyle = function warnValidStyle(name, value, component) {\n //eslint-disable-line no-var\n var owner = void 0;\n if (component) {\n owner = component._currentElement._owner;\n }\n if (name.indexOf('-') > -1) {\n warnHyphenatedStyleName(name, owner);\n } else if (badVendoredStyleNamePattern.test(name)) {\n warnBadVendoredStyleName(name, owner);\n } else if (badStyleValueWithSemicolonPattern.test(value)) {\n warnStyleValueWithSemicolon(name, value, owner);\n }\n if (typeof value === 'number' && isNaN(value)) {\n warnStyleValueIsNaN(name, value, owner);\n }\n };\n}\n\n/**\n * Serializes a mapping of style properties for use as inline styles:\n *\n * > createMarkupForStyles({width: '200px', height: 0})\n * \"width:200px;height:0;\"\n *\n * Undefined values are ignored so that declarative programming is easier.\n * The result should be HTML-escaped before insertion into the DOM.\n *\n * @param {object} styles\n * @param {ReactDOMComponent} component\n * @return {?string}\n */\n\nfunction createMarkupForStyles(styles, component) {\n var serialized = '';\n for (var styleName in styles) {\n var isCustomProp = styleName.indexOf('--') === 0;\n if (!styles.hasOwnProperty(styleName)) {\n continue;\n }\n if (styleName === 'label') {\n continue;\n }\n var styleValue = styles[styleName];\n if (process.env.NODE_ENV !== 'production' && !isCustomProp) {\n warnValidStyle(styleName, styleValue, component);\n }\n if (styleValue != null) {\n if (isCustomProp) {\n serialized += styleName + ':' + styleValue + ';';\n } else {\n serialized += processStyleName(styleName) + ':';\n serialized += (0, _dangerousStyleValue2.default)(styleName, styleValue, component) + ';';\n }\n }\n }\n return serialized || null;\n}","/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\n\n'use strict';\n\nvar emptyFunction = require('./emptyFunction');\n\n/**\n * Similar to invariant but only logs a warning if the condition is not met.\n * This can be used to log issues in development environments in critical\n * paths. Removing the logging code for production environments will keep the\n * same logic and follow the same code paths.\n */\n\nvar warning = emptyFunction;\nif (process.env.NODE_ENV !== 'production') {\n var printWarning = function printWarning(format) {\n for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n var argIndex = 0;\n var message = 'Warning: ' + format.replace(/%s/g, function () {\n return args[argIndex++];\n });\n if (typeof console !== 'undefined') {\n console.error(message);\n }\n try {\n // --- Welcome to debugging React ---\n // This error was thrown as a convenience so that you can use this stack\n // to find the callsite that caused this warning to fire.\n throw new Error(message);\n } catch (x) {}\n };\n warning = function warning(condition, format) {\n if (format === undefined) {\n throw new Error('`warning(condition, format, ...args)` requires a warning ' + 'message argument');\n }\n if (format.indexOf('Failed Composite propType: ') === 0) {\n return; // Ignore CompositeComponent proptype check.\n }\n if (!condition) {\n for (var _len2 = arguments.length, args = Array(_len2 > 2 ? _len2 - 2 : 0), _key2 = 2; _key2 < _len2; _key2++) {\n args[_key2 - 2] = arguments[_key2];\n }\n printWarning.apply(undefined, [format].concat(args));\n }\n };\n}\nmodule.exports = warning;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = capitalizeString;\nfunction capitalizeString(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n}\nmodule.exports = exports[\"default\"];","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nlet cache = new Map();\nfunction get(property, value) {\n return cache.get(property + value);\n}\nexports.get = get;\nfunction set(property, value, className) {\n if (process.env.NODE_ENV !== 'production') {\n const valueType = typeof value;\n if (valueType !== 'boolean' && valueType !== 'number' && valueType !== 'string') {\n const encodedValue = JSON.stringify(value);\n throw new TypeError(\"\\uD83D\\uDCE6 ui-box: invalid cache value \\u201C\".concat(encodedValue, \"\\u201D. Only booleans, numbers and strings are supported.\"));\n }\n }\n cache.set(property + value, className);\n}\nexports.set = set;\nfunction entries() {\n return [...cache];\n}\nexports.entries = entries;\nfunction hydrate(newEntries) {\n cache = new Map([...cache, ...newEntries]);\n}\nexports.hydrate = hydrate;\nfunction clear() {\n cache.clear();\n}\nexports.clear = clear;","\"use strict\";\n\nvar __importDefault = this && this.__importDefault || function (mod) {\n return mod && mod.__esModule ? mod : {\n \"default\": mod\n };\n};\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nconst style_sheet_1 = __importDefault(require(\"./utils/style-sheet\"));\nconst styleSheet = new style_sheet_1.default({});\nstyleSheet.inject();\nfunction add(styles) {\n styleSheet.insert(styles);\n}\nexports.add = add;\nfunction getAll() {\n // Convert rules array to a string\n return styleSheet.rules().reduce((combinedRules, rule) => combinedRules + rule.cssText, '');\n}\nexports.getAll = getAll;\nfunction clear() {\n styleSheet.flush();\n styleSheet.inject();\n}\nexports.clear = clear;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nconst PROTOCOL_REGEX = /^[a-z]+:/;\nconst ORIGIN_REGEX = /^(?:[a-z]+:?:)?(?:\\/\\/)?([^\\/\\?]+)/;\nlet useSafeHref = false;\nlet globalOrigin = typeof window !== 'undefined' ? window.location.origin : false;\nfunction configureSafeHref(configObject) {\n if (typeof configObject.enabled !== 'undefined') {\n useSafeHref = configObject.enabled;\n }\n if (configObject.origin) {\n globalOrigin = configObject.origin;\n }\n}\nexports.configureSafeHref = configureSafeHref;\nfunction getUseSafeHref() {\n return useSafeHref;\n}\nexports.getUseSafeHref = getUseSafeHref;\nfunction getURLInfo(url) {\n /**\n * An array of the safely allowed url protocols\n */\n const safeProtocols = ['http:', 'https:', 'mailto:', 'tel:', 'data:'];\n /**\n * - Find protocol of URL or set to 'relative'\n * - Find origin of URL\n * - Determine if sameOrigin\n * - Determine if protocol of URL is safe\n */\n const protocolResult = url.match(PROTOCOL_REGEX);\n const originResult = url.match(ORIGIN_REGEX);\n const urlProtocol = protocolResult ? protocolResult[0] : 'relative';\n let sameOrigin = urlProtocol === 'relative';\n if (!sameOrigin && globalOrigin) {\n sameOrigin = globalOrigin === (originResult && originResult[0]);\n }\n const isSafeProtocol = sameOrigin ? true : safeProtocols.includes(urlProtocol);\n if (!isSafeProtocol) {\n /**\n * If the url is unsafe, put a error in the console, and return the URLInfo object\n * with the value of url being `undefined`\n */\n console.error('📦 `href` passed to anchor tag is unsafe. Because of this, the `href` on the element was not set. Please review the safe href documentation if you have questions.', 'https://www.github.com/segmentio/ui-box');\n return {\n url: undefined,\n sameOrigin\n };\n }\n /**\n * If the url is safe, return the url and origin\n */\n return {\n url,\n sameOrigin\n };\n}\nexports.getURLInfo = getURLInfo;\nfunction extractAnchorProps(href, rel) {\n /**\n * Get url info and update href\n */\n const urlInfo = getURLInfo(href);\n const safeHref = urlInfo.url;\n /**\n * If the url passed is safe, we want to also update the attributes of the element\n * to be safe\n */\n let safeRel = rel ? rel : '';\n if (urlInfo.url) {\n if (!safeRel.includes('noopener')) {\n safeRel += \"\".concat(safeRel.length > 0 ? ' ' : '', \"noopener\");\n }\n if (!safeRel.includes('noreferrer') && !urlInfo.sameOrigin) {\n safeRel += \"\".concat(safeRel.length > 0 ? ' ' : '', \"noreferrer\");\n }\n }\n return {\n safeHref,\n safeRel\n };\n}\nexports.extractAnchorProps = extractAnchorProps;","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n/**\n * Utility to split props based on an array of keys\n */\nfunction splitProps(props, keys) {\n const matchedProps = {};\n const remainingProps = {};\n const propKeys = Object.keys(props);\n for (let i = 0; i < propKeys.length; i++) {\n const propKey = propKeys[i];\n const propValue = props[propKey];\n if (keys.includes(propKey)) {\n matchedProps[propKey] = propValue;\n } else {\n remainingProps[propKey] = propValue;\n }\n }\n return {\n matchedProps,\n remainingProps\n };\n}\nexports.default = splitProps;","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};","'use strict';\n\nvar utils = require('./../utils');\nfunction encode(val) {\n return encodeURIComponent(val).replace(/%3A/gi, ':').replace(/%24/g, '$').replace(/%2C/gi, ',').replace(/%20/g, '+').replace(/%5B/gi, '[').replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n serializedParams = parts.join('&');\n }\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n return url;\n};","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n error.toJSON = function toJSON() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar cookies = require('./../helpers/cookies');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n var responseType = config.responseType;\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password ? unescape(encodeURIComponent(config.auth.password)) : '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n function onloadend() {\n if (!request) {\n return;\n }\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !responseType || responseType === 'text' || responseType === 'json' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n }\n if ('onloadend' in request) {\n // Use onloadend if available\n request.onloadend = onloadend;\n } else {\n // Listen for ready state to emulate onloadend\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n // readystate handler is calling before onerror or ontimeout handlers,\n // so we should call onloadend on the next 'tick'\n setTimeout(onloadend);\n };\n }\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(timeoutErrorMessage, config, config.transitional && config.transitional.clarifyTimeoutError ? 'ETIMEDOUT' : 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ? cookies.read(config.xsrfCookieName) : undefined;\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (responseType && responseType !== 'json') {\n request.responseType = config.responseType;\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n if (!requestData) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n var valueFromConfig2Keys = ['url', 'method', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy', 'params'];\n var defaultToConfig2Keys = ['baseURL', 'transformRequest', 'transformResponse', 'paramsSerializer', 'timeout', 'timeoutMessage', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName', 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress', 'decompress', 'maxContentLength', 'maxBodyLength', 'maxRedirects', 'transport', 'httpAgent', 'httpsAgent', 'cancelToken', 'socketPath', 'responseEncoding'];\n var directMergeKeys = ['validateStatus'];\n function getMergedValue(target, source) {\n if (utils.isPlainObject(target) && utils.isPlainObject(source)) {\n return utils.merge(target, source);\n } else if (utils.isPlainObject(source)) {\n return utils.merge({}, source);\n } else if (utils.isArray(source)) {\n return source.slice();\n }\n return source;\n }\n function mergeDeepProperties(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n }\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n }\n });\n utils.forEach(mergeDeepPropertiesKeys, mergeDeepProperties);\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (!utils.isUndefined(config2[prop])) {\n config[prop] = getMergedValue(undefined, config2[prop]);\n } else if (!utils.isUndefined(config1[prop])) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n utils.forEach(directMergeKeys, function merge(prop) {\n if (prop in config2) {\n config[prop] = getMergedValue(config1[prop], config2[prop]);\n } else if (prop in config1) {\n config[prop] = getMergedValue(undefined, config1[prop]);\n }\n });\n var axiosKeys = valueFromConfig2Keys.concat(mergeDeepPropertiesKeys).concat(defaultToConfig2Keys).concat(directMergeKeys);\n var otherKeys = Object.keys(config1).concat(Object.keys(config2)).filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n utils.forEach(otherKeys, mergeDeepProperties);\n return config;\n};","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\nCancel.prototype.__CANCEL__ = true;\nmodule.exports = Cancel;","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-is.production.min.js');\n} else {\n module.exports = require('./cjs/react-is.development.js');\n}","module.exports = require('./lib/axios');","/** A function that accepts a potential \"extra argument\" value to be injected later,\r\n * and returns an instance of the thunk middleware that uses that value\r\n */\nfunction createThunkMiddleware(extraArgument) {\n // Standard Redux middleware definition pattern:\n // See: https://redux.js.org/tutorials/fundamentals/part-4-store#writing-custom-middleware\n var middleware = function middleware(_ref) {\n var dispatch = _ref.dispatch,\n getState = _ref.getState;\n return function (next) {\n return function (action) {\n // The thunk middleware looks for any functions that were passed to `store.dispatch`.\n // If this \"action\" is really a function, call it and return the result.\n if (typeof action === 'function') {\n // Inject the store's `dispatch` and `getState` methods, as well as any \"extra arg\"\n return action(dispatch, getState, extraArgument);\n } // Otherwise, pass the action down the middleware chain as usual\n\n return next(action);\n };\n };\n };\n return middleware;\n}\nvar thunk = createThunkMiddleware(); // Attach the factory function so users can create a customized version\n// with whatever \"extra arg\" they want to inject into their thunks\n\nthunk.withExtraArgument = createThunkMiddleware;\nexport default thunk;","/** @license React v16.14.0\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar l = require(\"object-assign\"),\n n = \"function\" === typeof Symbol && Symbol.for,\n p = n ? Symbol.for(\"react.element\") : 60103,\n q = n ? Symbol.for(\"react.portal\") : 60106,\n r = n ? Symbol.for(\"react.fragment\") : 60107,\n t = n ? Symbol.for(\"react.strict_mode\") : 60108,\n u = n ? Symbol.for(\"react.profiler\") : 60114,\n v = n ? Symbol.for(\"react.provider\") : 60109,\n w = n ? Symbol.for(\"react.context\") : 60110,\n x = n ? Symbol.for(\"react.forward_ref\") : 60112,\n y = n ? Symbol.for(\"react.suspense\") : 60113,\n z = n ? Symbol.for(\"react.memo\") : 60115,\n A = n ? Symbol.for(\"react.lazy\") : 60116,\n B = \"function\" === typeof Symbol && Symbol.iterator;\nfunction C(a) {\n for (var b = \"https://reactjs.org/docs/error-decoder.html?invariant=\" + a, c = 1; c < arguments.length; c++) b += \"&args[]=\" + encodeURIComponent(arguments[c]);\n return \"Minified React error #\" + a + \"; visit \" + b + \" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\";\n}\nvar D = {\n isMounted: function () {\n return !1;\n },\n enqueueForceUpdate: function () {},\n enqueueReplaceState: function () {},\n enqueueSetState: function () {}\n },\n E = {};\nfunction F(a, b, c) {\n this.props = a;\n this.context = b;\n this.refs = E;\n this.updater = c || D;\n}\nF.prototype.isReactComponent = {};\nF.prototype.setState = function (a, b) {\n if (\"object\" !== typeof a && \"function\" !== typeof a && null != a) throw Error(C(85));\n this.updater.enqueueSetState(this, a, b, \"setState\");\n};\nF.prototype.forceUpdate = function (a) {\n this.updater.enqueueForceUpdate(this, a, \"forceUpdate\");\n};\nfunction G() {}\nG.prototype = F.prototype;\nfunction H(a, b, c) {\n this.props = a;\n this.context = b;\n this.refs = E;\n this.updater = c || D;\n}\nvar I = H.prototype = new G();\nI.constructor = H;\nl(I, F.prototype);\nI.isPureReactComponent = !0;\nvar J = {\n current: null\n },\n K = Object.prototype.hasOwnProperty,\n L = {\n key: !0,\n ref: !0,\n __self: !0,\n __source: !0\n };\nfunction M(a, b, c) {\n var e,\n d = {},\n g = null,\n k = null;\n if (null != b) for (e in void 0 !== b.ref && (k = b.ref), void 0 !== b.key && (g = \"\" + b.key), b) K.call(b, e) && !L.hasOwnProperty(e) && (d[e] = b[e]);\n var f = arguments.length - 2;\n if (1 === f) d.children = c;else if (1 < f) {\n for (var h = Array(f), m = 0; m < f; m++) h[m] = arguments[m + 2];\n d.children = h;\n }\n if (a && a.defaultProps) for (e in f = a.defaultProps, f) void 0 === d[e] && (d[e] = f[e]);\n return {\n $$typeof: p,\n type: a,\n key: g,\n ref: k,\n props: d,\n _owner: J.current\n };\n}\nfunction N(a, b) {\n return {\n $$typeof: p,\n type: a.type,\n key: b,\n ref: a.ref,\n props: a.props,\n _owner: a._owner\n };\n}\nfunction O(a) {\n return \"object\" === typeof a && null !== a && a.$$typeof === p;\n}\nfunction escape(a) {\n var b = {\n \"=\": \"=0\",\n \":\": \"=2\"\n };\n return \"$\" + (\"\" + a).replace(/[=:]/g, function (a) {\n return b[a];\n });\n}\nvar P = /\\/+/g,\n Q = [];\nfunction R(a, b, c, e) {\n if (Q.length) {\n var d = Q.pop();\n d.result = a;\n d.keyPrefix = b;\n d.func = c;\n d.context = e;\n d.count = 0;\n return d;\n }\n return {\n result: a,\n keyPrefix: b,\n func: c,\n context: e,\n count: 0\n };\n}\nfunction S(a) {\n a.result = null;\n a.keyPrefix = null;\n a.func = null;\n a.context = null;\n a.count = 0;\n 10 > Q.length && Q.push(a);\n}\nfunction T(a, b, c, e) {\n var d = typeof a;\n if (\"undefined\" === d || \"boolean\" === d) a = null;\n var g = !1;\n if (null === a) g = !0;else switch (d) {\n case \"string\":\n case \"number\":\n g = !0;\n break;\n case \"object\":\n switch (a.$$typeof) {\n case p:\n case q:\n g = !0;\n }\n }\n if (g) return c(e, a, \"\" === b ? \".\" + U(a, 0) : b), 1;\n g = 0;\n b = \"\" === b ? \".\" : b + \":\";\n if (Array.isArray(a)) for (var k = 0; k < a.length; k++) {\n d = a[k];\n var f = b + U(d, k);\n g += T(d, f, c, e);\n } else if (null === a || \"object\" !== typeof a ? f = null : (f = B && a[B] || a[\"@@iterator\"], f = \"function\" === typeof f ? f : null), \"function\" === typeof f) for (a = f.call(a), k = 0; !(d = a.next()).done;) d = d.value, f = b + U(d, k++), g += T(d, f, c, e);else if (\"object\" === d) throw c = \"\" + a, Error(C(31, \"[object Object]\" === c ? \"object with keys {\" + Object.keys(a).join(\", \") + \"}\" : c, \"\"));\n return g;\n}\nfunction V(a, b, c) {\n return null == a ? 0 : T(a, \"\", b, c);\n}\nfunction U(a, b) {\n return \"object\" === typeof a && null !== a && null != a.key ? escape(a.key) : b.toString(36);\n}\nfunction W(a, b) {\n a.func.call(a.context, b, a.count++);\n}\nfunction aa(a, b, c) {\n var e = a.result,\n d = a.keyPrefix;\n a = a.func.call(a.context, b, a.count++);\n Array.isArray(a) ? X(a, e, c, function (a) {\n return a;\n }) : null != a && (O(a) && (a = N(a, d + (!a.key || b && b.key === a.key ? \"\" : (\"\" + a.key).replace(P, \"$&/\") + \"/\") + c)), e.push(a));\n}\nfunction X(a, b, c, e, d) {\n var g = \"\";\n null != c && (g = (\"\" + c).replace(P, \"$&/\") + \"/\");\n b = R(b, g, e, d);\n V(a, aa, b);\n S(b);\n}\nvar Y = {\n current: null\n};\nfunction Z() {\n var a = Y.current;\n if (null === a) throw Error(C(321));\n return a;\n}\nvar ba = {\n ReactCurrentDispatcher: Y,\n ReactCurrentBatchConfig: {\n suspense: null\n },\n ReactCurrentOwner: J,\n IsSomeRendererActing: {\n current: !1\n },\n assign: l\n};\nexports.Children = {\n map: function (a, b, c) {\n if (null == a) return a;\n var e = [];\n X(a, e, null, b, c);\n return e;\n },\n forEach: function (a, b, c) {\n if (null == a) return a;\n b = R(null, null, b, c);\n V(a, W, b);\n S(b);\n },\n count: function (a) {\n return V(a, function () {\n return null;\n }, null);\n },\n toArray: function (a) {\n var b = [];\n X(a, b, null, function (a) {\n return a;\n });\n return b;\n },\n only: function (a) {\n if (!O(a)) throw Error(C(143));\n return a;\n }\n};\nexports.Component = F;\nexports.Fragment = r;\nexports.Profiler = u;\nexports.PureComponent = H;\nexports.StrictMode = t;\nexports.Suspense = y;\nexports.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = ba;\nexports.cloneElement = function (a, b, c) {\n if (null === a || void 0 === a) throw Error(C(267, a));\n var e = l({}, a.props),\n d = a.key,\n g = a.ref,\n k = a._owner;\n if (null != b) {\n void 0 !== b.ref && (g = b.ref, k = J.current);\n void 0 !== b.key && (d = \"\" + b.key);\n if (a.type && a.type.defaultProps) var f = a.type.defaultProps;\n for (h in b) K.call(b, h) && !L.hasOwnProperty(h) && (e[h] = void 0 === b[h] && void 0 !== f ? f[h] : b[h]);\n }\n var h = arguments.length - 2;\n if (1 === h) e.children = c;else if (1 < h) {\n f = Array(h);\n for (var m = 0; m < h; m++) f[m] = arguments[m + 2];\n e.children = f;\n }\n return {\n $$typeof: p,\n type: a.type,\n key: d,\n ref: g,\n props: e,\n _owner: k\n };\n};\nexports.createContext = function (a, b) {\n void 0 === b && (b = null);\n a = {\n $$typeof: w,\n _calculateChangedBits: b,\n _currentValue: a,\n _currentValue2: a,\n _threadCount: 0,\n Provider: null,\n Consumer: null\n };\n a.Provider = {\n $$typeof: v,\n _context: a\n };\n return a.Consumer = a;\n};\nexports.createElement = M;\nexports.createFactory = function (a) {\n var b = M.bind(null, a);\n b.type = a;\n return b;\n};\nexports.createRef = function () {\n return {\n current: null\n };\n};\nexports.forwardRef = function (a) {\n return {\n $$typeof: x,\n render: a\n };\n};\nexports.isValidElement = O;\nexports.lazy = function (a) {\n return {\n $$typeof: A,\n _ctor: a,\n _status: -1,\n _result: null\n };\n};\nexports.memo = function (a, b) {\n return {\n $$typeof: z,\n type: a,\n compare: void 0 === b ? null : b\n };\n};\nexports.useCallback = function (a, b) {\n return Z().useCallback(a, b);\n};\nexports.useContext = function (a, b) {\n return Z().useContext(a, b);\n};\nexports.useDebugValue = function () {};\nexports.useEffect = function (a, b) {\n return Z().useEffect(a, b);\n};\nexports.useImperativeHandle = function (a, b, c) {\n return Z().useImperativeHandle(a, b, c);\n};\nexports.useLayoutEffect = function (a, b) {\n return Z().useLayoutEffect(a, b);\n};\nexports.useMemo = function (a, b) {\n return Z().useMemo(a, b);\n};\nexports.useReducer = function (a, b, c) {\n return Z().useReducer(a, b, c);\n};\nexports.useRef = function (a) {\n return Z().useRef(a);\n};\nexports.useState = function (a) {\n return Z().useState(a);\n};\nexports.version = \"16.14.0\";","/** @license React v16.14.0\n * react-dom.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n/*\n Modernizr 3.0.0pre (Custom Build) | MIT\n*/\n'use strict';\n\nvar aa = require(\"react\"),\n n = require(\"object-assign\"),\n r = require(\"scheduler\");\nfunction u(a) {\n for (var b = \"https://reactjs.org/docs/error-decoder.html?invariant=\" + a, c = 1; c < arguments.length; c++) b += \"&args[]=\" + encodeURIComponent(arguments[c]);\n return \"Minified React error #\" + a + \"; visit \" + b + \" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\";\n}\nif (!aa) throw Error(u(227));\nfunction ba(a, b, c, d, e, f, g, h, k) {\n var l = Array.prototype.slice.call(arguments, 3);\n try {\n b.apply(c, l);\n } catch (m) {\n this.onError(m);\n }\n}\nvar da = !1,\n ea = null,\n fa = !1,\n ha = null,\n ia = {\n onError: function (a) {\n da = !0;\n ea = a;\n }\n };\nfunction ja(a, b, c, d, e, f, g, h, k) {\n da = !1;\n ea = null;\n ba.apply(ia, arguments);\n}\nfunction ka(a, b, c, d, e, f, g, h, k) {\n ja.apply(this, arguments);\n if (da) {\n if (da) {\n var l = ea;\n da = !1;\n ea = null;\n } else throw Error(u(198));\n fa || (fa = !0, ha = l);\n }\n}\nvar la = null,\n ma = null,\n na = null;\nfunction oa(a, b, c) {\n var d = a.type || \"unknown-event\";\n a.currentTarget = na(c);\n ka(d, b, void 0, a);\n a.currentTarget = null;\n}\nvar pa = null,\n qa = {};\nfunction ra() {\n if (pa) for (var a in qa) {\n var b = qa[a],\n c = pa.indexOf(a);\n if (!(-1 < c)) throw Error(u(96, a));\n if (!sa[c]) {\n if (!b.extractEvents) throw Error(u(97, a));\n sa[c] = b;\n c = b.eventTypes;\n for (var d in c) {\n var e = void 0;\n var f = c[d],\n g = b,\n h = d;\n if (ta.hasOwnProperty(h)) throw Error(u(99, h));\n ta[h] = f;\n var k = f.phasedRegistrationNames;\n if (k) {\n for (e in k) k.hasOwnProperty(e) && ua(k[e], g, h);\n e = !0;\n } else f.registrationName ? (ua(f.registrationName, g, h), e = !0) : e = !1;\n if (!e) throw Error(u(98, d, a));\n }\n }\n }\n}\nfunction ua(a, b, c) {\n if (va[a]) throw Error(u(100, a));\n va[a] = b;\n wa[a] = b.eventTypes[c].dependencies;\n}\nvar sa = [],\n ta = {},\n va = {},\n wa = {};\nfunction xa(a) {\n var b = !1,\n c;\n for (c in a) if (a.hasOwnProperty(c)) {\n var d = a[c];\n if (!qa.hasOwnProperty(c) || qa[c] !== d) {\n if (qa[c]) throw Error(u(102, c));\n qa[c] = d;\n b = !0;\n }\n }\n b && ra();\n}\nvar ya = !(\"undefined\" === typeof window || \"undefined\" === typeof window.document || \"undefined\" === typeof window.document.createElement),\n za = null,\n Aa = null,\n Ba = null;\nfunction Ca(a) {\n if (a = ma(a)) {\n if (\"function\" !== typeof za) throw Error(u(280));\n var b = a.stateNode;\n b && (b = la(b), za(a.stateNode, a.type, b));\n }\n}\nfunction Da(a) {\n Aa ? Ba ? Ba.push(a) : Ba = [a] : Aa = a;\n}\nfunction Ea() {\n if (Aa) {\n var a = Aa,\n b = Ba;\n Ba = Aa = null;\n Ca(a);\n if (b) for (a = 0; a < b.length; a++) Ca(b[a]);\n }\n}\nfunction Fa(a, b) {\n return a(b);\n}\nfunction Ga(a, b, c, d, e) {\n return a(b, c, d, e);\n}\nfunction Ha() {}\nvar Ia = Fa,\n Ja = !1,\n Ka = !1;\nfunction La() {\n if (null !== Aa || null !== Ba) Ha(), Ea();\n}\nfunction Ma(a, b, c) {\n if (Ka) return a(b, c);\n Ka = !0;\n try {\n return Ia(a, b, c);\n } finally {\n Ka = !1, La();\n }\n}\nvar Na = /^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$/,\n Oa = Object.prototype.hasOwnProperty,\n Pa = {},\n Qa = {};\nfunction Ra(a) {\n if (Oa.call(Qa, a)) return !0;\n if (Oa.call(Pa, a)) return !1;\n if (Na.test(a)) return Qa[a] = !0;\n Pa[a] = !0;\n return !1;\n}\nfunction Sa(a, b, c, d) {\n if (null !== c && 0 === c.type) return !1;\n switch (typeof b) {\n case \"function\":\n case \"symbol\":\n return !0;\n case \"boolean\":\n if (d) return !1;\n if (null !== c) return !c.acceptsBooleans;\n a = a.toLowerCase().slice(0, 5);\n return \"data-\" !== a && \"aria-\" !== a;\n default:\n return !1;\n }\n}\nfunction Ta(a, b, c, d) {\n if (null === b || \"undefined\" === typeof b || Sa(a, b, c, d)) return !0;\n if (d) return !1;\n if (null !== c) switch (c.type) {\n case 3:\n return !b;\n case 4:\n return !1 === b;\n case 5:\n return isNaN(b);\n case 6:\n return isNaN(b) || 1 > b;\n }\n return !1;\n}\nfunction v(a, b, c, d, e, f) {\n this.acceptsBooleans = 2 === b || 3 === b || 4 === b;\n this.attributeName = d;\n this.attributeNamespace = e;\n this.mustUseProperty = c;\n this.propertyName = a;\n this.type = b;\n this.sanitizeURL = f;\n}\nvar C = {};\n\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach(function (a) {\n C[a] = new v(a, 0, !1, a, null, !1);\n});\n[[\"acceptCharset\", \"accept-charset\"], [\"className\", \"class\"], [\"htmlFor\", \"for\"], [\"httpEquiv\", \"http-equiv\"]].forEach(function (a) {\n var b = a[0];\n C[b] = new v(b, 1, !1, a[1], null, !1);\n});\n[\"contentEditable\", \"draggable\", \"spellCheck\", \"value\"].forEach(function (a) {\n C[a] = new v(a, 2, !1, a.toLowerCase(), null, !1);\n});\n[\"autoReverse\", \"externalResourcesRequired\", \"focusable\", \"preserveAlpha\"].forEach(function (a) {\n C[a] = new v(a, 2, !1, a, null, !1);\n});\n\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach(function (a) {\n C[a] = new v(a, 3, !1, a.toLowerCase(), null, !1);\n});\n[\"checked\", \"multiple\", \"muted\", \"selected\"].forEach(function (a) {\n C[a] = new v(a, 3, !0, a, null, !1);\n});\n[\"capture\", \"download\"].forEach(function (a) {\n C[a] = new v(a, 4, !1, a, null, !1);\n});\n[\"cols\", \"rows\", \"size\", \"span\"].forEach(function (a) {\n C[a] = new v(a, 6, !1, a, null, !1);\n});\n[\"rowSpan\", \"start\"].forEach(function (a) {\n C[a] = new v(a, 5, !1, a.toLowerCase(), null, !1);\n});\nvar Ua = /[\\-:]([a-z])/g;\nfunction Va(a) {\n return a[1].toUpperCase();\n}\n\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach(function (a) {\n var b = a.replace(Ua, Va);\n C[b] = new v(b, 1, !1, a, null, !1);\n});\n\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach(function (a) {\n var b = a.replace(Ua, Va);\n C[b] = new v(b, 1, !1, a, \"http://www.w3.org/1999/xlink\", !1);\n});\n[\"xml:base\", \"xml:lang\", \"xml:space\"].forEach(function (a) {\n var b = a.replace(Ua, Va);\n C[b] = new v(b, 1, !1, a, \"http://www.w3.org/XML/1998/namespace\", !1);\n});\n[\"tabIndex\", \"crossOrigin\"].forEach(function (a) {\n C[a] = new v(a, 1, !1, a.toLowerCase(), null, !1);\n});\nC.xlinkHref = new v(\"xlinkHref\", 1, !1, \"xlink:href\", \"http://www.w3.org/1999/xlink\", !0);\n[\"src\", \"href\", \"action\", \"formAction\"].forEach(function (a) {\n C[a] = new v(a, 1, !1, a.toLowerCase(), null, !0);\n});\nvar Wa = aa.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\nWa.hasOwnProperty(\"ReactCurrentDispatcher\") || (Wa.ReactCurrentDispatcher = {\n current: null\n});\nWa.hasOwnProperty(\"ReactCurrentBatchConfig\") || (Wa.ReactCurrentBatchConfig = {\n suspense: null\n});\nfunction Xa(a, b, c, d) {\n var e = C.hasOwnProperty(b) ? C[b] : null;\n var f = null !== e ? 0 === e.type : d ? !1 : !(2 < b.length) || \"o\" !== b[0] && \"O\" !== b[0] || \"n\" !== b[1] && \"N\" !== b[1] ? !1 : !0;\n f || (Ta(b, c, e, d) && (c = null), d || null === e ? Ra(b) && (null === c ? a.removeAttribute(b) : a.setAttribute(b, \"\" + c)) : e.mustUseProperty ? a[e.propertyName] = null === c ? 3 === e.type ? !1 : \"\" : c : (b = e.attributeName, d = e.attributeNamespace, null === c ? a.removeAttribute(b) : (e = e.type, c = 3 === e || 4 === e && !0 === c ? \"\" : \"\" + c, d ? a.setAttributeNS(d, b, c) : a.setAttribute(b, c))));\n}\nvar Ya = /^(.*)[\\\\\\/]/,\n E = \"function\" === typeof Symbol && Symbol.for,\n Za = E ? Symbol.for(\"react.element\") : 60103,\n $a = E ? Symbol.for(\"react.portal\") : 60106,\n ab = E ? Symbol.for(\"react.fragment\") : 60107,\n bb = E ? Symbol.for(\"react.strict_mode\") : 60108,\n cb = E ? Symbol.for(\"react.profiler\") : 60114,\n db = E ? Symbol.for(\"react.provider\") : 60109,\n eb = E ? Symbol.for(\"react.context\") : 60110,\n fb = E ? Symbol.for(\"react.concurrent_mode\") : 60111,\n gb = E ? Symbol.for(\"react.forward_ref\") : 60112,\n hb = E ? Symbol.for(\"react.suspense\") : 60113,\n ib = E ? Symbol.for(\"react.suspense_list\") : 60120,\n jb = E ? Symbol.for(\"react.memo\") : 60115,\n kb = E ? Symbol.for(\"react.lazy\") : 60116,\n lb = E ? Symbol.for(\"react.block\") : 60121,\n mb = \"function\" === typeof Symbol && Symbol.iterator;\nfunction nb(a) {\n if (null === a || \"object\" !== typeof a) return null;\n a = mb && a[mb] || a[\"@@iterator\"];\n return \"function\" === typeof a ? a : null;\n}\nfunction ob(a) {\n if (-1 === a._status) {\n a._status = 0;\n var b = a._ctor;\n b = b();\n a._result = b;\n b.then(function (b) {\n 0 === a._status && (b = b.default, a._status = 1, a._result = b);\n }, function (b) {\n 0 === a._status && (a._status = 2, a._result = b);\n });\n }\n}\nfunction pb(a) {\n if (null == a) return null;\n if (\"function\" === typeof a) return a.displayName || a.name || null;\n if (\"string\" === typeof a) return a;\n switch (a) {\n case ab:\n return \"Fragment\";\n case $a:\n return \"Portal\";\n case cb:\n return \"Profiler\";\n case bb:\n return \"StrictMode\";\n case hb:\n return \"Suspense\";\n case ib:\n return \"SuspenseList\";\n }\n if (\"object\" === typeof a) switch (a.$$typeof) {\n case eb:\n return \"Context.Consumer\";\n case db:\n return \"Context.Provider\";\n case gb:\n var b = a.render;\n b = b.displayName || b.name || \"\";\n return a.displayName || (\"\" !== b ? \"ForwardRef(\" + b + \")\" : \"ForwardRef\");\n case jb:\n return pb(a.type);\n case lb:\n return pb(a.render);\n case kb:\n if (a = 1 === a._status ? a._result : null) return pb(a);\n }\n return null;\n}\nfunction qb(a) {\n var b = \"\";\n do {\n a: switch (a.tag) {\n case 3:\n case 4:\n case 6:\n case 7:\n case 10:\n case 9:\n var c = \"\";\n break a;\n default:\n var d = a._debugOwner,\n e = a._debugSource,\n f = pb(a.type);\n c = null;\n d && (c = pb(d.type));\n d = f;\n f = \"\";\n e ? f = \" (at \" + e.fileName.replace(Ya, \"\") + \":\" + e.lineNumber + \")\" : c && (f = \" (created by \" + c + \")\");\n c = \"\\n in \" + (d || \"Unknown\") + f;\n }\n b += c;\n a = a.return;\n } while (a);\n return b;\n}\nfunction rb(a) {\n switch (typeof a) {\n case \"boolean\":\n case \"number\":\n case \"object\":\n case \"string\":\n case \"undefined\":\n return a;\n default:\n return \"\";\n }\n}\nfunction sb(a) {\n var b = a.type;\n return (a = a.nodeName) && \"input\" === a.toLowerCase() && (\"checkbox\" === b || \"radio\" === b);\n}\nfunction tb(a) {\n var b = sb(a) ? \"checked\" : \"value\",\n c = Object.getOwnPropertyDescriptor(a.constructor.prototype, b),\n d = \"\" + a[b];\n if (!a.hasOwnProperty(b) && \"undefined\" !== typeof c && \"function\" === typeof c.get && \"function\" === typeof c.set) {\n var e = c.get,\n f = c.set;\n Object.defineProperty(a, b, {\n configurable: !0,\n get: function () {\n return e.call(this);\n },\n set: function (a) {\n d = \"\" + a;\n f.call(this, a);\n }\n });\n Object.defineProperty(a, b, {\n enumerable: c.enumerable\n });\n return {\n getValue: function () {\n return d;\n },\n setValue: function (a) {\n d = \"\" + a;\n },\n stopTracking: function () {\n a._valueTracker = null;\n delete a[b];\n }\n };\n }\n}\nfunction xb(a) {\n a._valueTracker || (a._valueTracker = tb(a));\n}\nfunction yb(a) {\n if (!a) return !1;\n var b = a._valueTracker;\n if (!b) return !0;\n var c = b.getValue();\n var d = \"\";\n a && (d = sb(a) ? a.checked ? \"true\" : \"false\" : a.value);\n a = d;\n return a !== c ? (b.setValue(a), !0) : !1;\n}\nfunction zb(a, b) {\n var c = b.checked;\n return n({}, b, {\n defaultChecked: void 0,\n defaultValue: void 0,\n value: void 0,\n checked: null != c ? c : a._wrapperState.initialChecked\n });\n}\nfunction Ab(a, b) {\n var c = null == b.defaultValue ? \"\" : b.defaultValue,\n d = null != b.checked ? b.checked : b.defaultChecked;\n c = rb(null != b.value ? b.value : c);\n a._wrapperState = {\n initialChecked: d,\n initialValue: c,\n controlled: \"checkbox\" === b.type || \"radio\" === b.type ? null != b.checked : null != b.value\n };\n}\nfunction Bb(a, b) {\n b = b.checked;\n null != b && Xa(a, \"checked\", b, !1);\n}\nfunction Cb(a, b) {\n Bb(a, b);\n var c = rb(b.value),\n d = b.type;\n if (null != c) {\n if (\"number\" === d) {\n if (0 === c && \"\" === a.value || a.value != c) a.value = \"\" + c;\n } else a.value !== \"\" + c && (a.value = \"\" + c);\n } else if (\"submit\" === d || \"reset\" === d) {\n a.removeAttribute(\"value\");\n return;\n }\n b.hasOwnProperty(\"value\") ? Db(a, b.type, c) : b.hasOwnProperty(\"defaultValue\") && Db(a, b.type, rb(b.defaultValue));\n null == b.checked && null != b.defaultChecked && (a.defaultChecked = !!b.defaultChecked);\n}\nfunction Eb(a, b, c) {\n if (b.hasOwnProperty(\"value\") || b.hasOwnProperty(\"defaultValue\")) {\n var d = b.type;\n if (!(\"submit\" !== d && \"reset\" !== d || void 0 !== b.value && null !== b.value)) return;\n b = \"\" + a._wrapperState.initialValue;\n c || b === a.value || (a.value = b);\n a.defaultValue = b;\n }\n c = a.name;\n \"\" !== c && (a.name = \"\");\n a.defaultChecked = !!a._wrapperState.initialChecked;\n \"\" !== c && (a.name = c);\n}\nfunction Db(a, b, c) {\n if (\"number\" !== b || a.ownerDocument.activeElement !== a) null == c ? a.defaultValue = \"\" + a._wrapperState.initialValue : a.defaultValue !== \"\" + c && (a.defaultValue = \"\" + c);\n}\nfunction Fb(a) {\n var b = \"\";\n aa.Children.forEach(a, function (a) {\n null != a && (b += a);\n });\n return b;\n}\nfunction Gb(a, b) {\n a = n({\n children: void 0\n }, b);\n if (b = Fb(b.children)) a.children = b;\n return a;\n}\nfunction Hb(a, b, c, d) {\n a = a.options;\n if (b) {\n b = {};\n for (var e = 0; e < c.length; e++) b[\"$\" + c[e]] = !0;\n for (c = 0; c < a.length; c++) e = b.hasOwnProperty(\"$\" + a[c].value), a[c].selected !== e && (a[c].selected = e), e && d && (a[c].defaultSelected = !0);\n } else {\n c = \"\" + rb(c);\n b = null;\n for (e = 0; e < a.length; e++) {\n if (a[e].value === c) {\n a[e].selected = !0;\n d && (a[e].defaultSelected = !0);\n return;\n }\n null !== b || a[e].disabled || (b = a[e]);\n }\n null !== b && (b.selected = !0);\n }\n}\nfunction Ib(a, b) {\n if (null != b.dangerouslySetInnerHTML) throw Error(u(91));\n return n({}, b, {\n value: void 0,\n defaultValue: void 0,\n children: \"\" + a._wrapperState.initialValue\n });\n}\nfunction Jb(a, b) {\n var c = b.value;\n if (null == c) {\n c = b.children;\n b = b.defaultValue;\n if (null != c) {\n if (null != b) throw Error(u(92));\n if (Array.isArray(c)) {\n if (!(1 >= c.length)) throw Error(u(93));\n c = c[0];\n }\n b = c;\n }\n null == b && (b = \"\");\n c = b;\n }\n a._wrapperState = {\n initialValue: rb(c)\n };\n}\nfunction Kb(a, b) {\n var c = rb(b.value),\n d = rb(b.defaultValue);\n null != c && (c = \"\" + c, c !== a.value && (a.value = c), null == b.defaultValue && a.defaultValue !== c && (a.defaultValue = c));\n null != d && (a.defaultValue = \"\" + d);\n}\nfunction Lb(a) {\n var b = a.textContent;\n b === a._wrapperState.initialValue && \"\" !== b && null !== b && (a.value = b);\n}\nvar Mb = {\n html: \"http://www.w3.org/1999/xhtml\",\n mathml: \"http://www.w3.org/1998/Math/MathML\",\n svg: \"http://www.w3.org/2000/svg\"\n};\nfunction Nb(a) {\n switch (a) {\n case \"svg\":\n return \"http://www.w3.org/2000/svg\";\n case \"math\":\n return \"http://www.w3.org/1998/Math/MathML\";\n default:\n return \"http://www.w3.org/1999/xhtml\";\n }\n}\nfunction Ob(a, b) {\n return null == a || \"http://www.w3.org/1999/xhtml\" === a ? Nb(b) : \"http://www.w3.org/2000/svg\" === a && \"foreignObject\" === b ? \"http://www.w3.org/1999/xhtml\" : a;\n}\nvar Pb,\n Qb = function (a) {\n return \"undefined\" !== typeof MSApp && MSApp.execUnsafeLocalFunction ? function (b, c, d, e) {\n MSApp.execUnsafeLocalFunction(function () {\n return a(b, c, d, e);\n });\n } : a;\n }(function (a, b) {\n if (a.namespaceURI !== Mb.svg || \"innerHTML\" in a) a.innerHTML = b;else {\n Pb = Pb || document.createElement(\"div\");\n Pb.innerHTML = \"\";\n for (b = Pb.firstChild; a.firstChild;) a.removeChild(a.firstChild);\n for (; b.firstChild;) a.appendChild(b.firstChild);\n }\n });\nfunction Rb(a, b) {\n if (b) {\n var c = a.firstChild;\n if (c && c === a.lastChild && 3 === c.nodeType) {\n c.nodeValue = b;\n return;\n }\n }\n a.textContent = b;\n}\nfunction Sb(a, b) {\n var c = {};\n c[a.toLowerCase()] = b.toLowerCase();\n c[\"Webkit\" + a] = \"webkit\" + b;\n c[\"Moz\" + a] = \"moz\" + b;\n return c;\n}\nvar Tb = {\n animationend: Sb(\"Animation\", \"AnimationEnd\"),\n animationiteration: Sb(\"Animation\", \"AnimationIteration\"),\n animationstart: Sb(\"Animation\", \"AnimationStart\"),\n transitionend: Sb(\"Transition\", \"TransitionEnd\")\n },\n Ub = {},\n Vb = {};\nya && (Vb = document.createElement(\"div\").style, \"AnimationEvent\" in window || (delete Tb.animationend.animation, delete Tb.animationiteration.animation, delete Tb.animationstart.animation), \"TransitionEvent\" in window || delete Tb.transitionend.transition);\nfunction Wb(a) {\n if (Ub[a]) return Ub[a];\n if (!Tb[a]) return a;\n var b = Tb[a],\n c;\n for (c in b) if (b.hasOwnProperty(c) && c in Vb) return Ub[a] = b[c];\n return a;\n}\nvar Xb = Wb(\"animationend\"),\n Yb = Wb(\"animationiteration\"),\n Zb = Wb(\"animationstart\"),\n $b = Wb(\"transitionend\"),\n ac = \"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),\n bc = new (\"function\" === typeof WeakMap ? WeakMap : Map)();\nfunction cc(a) {\n var b = bc.get(a);\n void 0 === b && (b = new Map(), bc.set(a, b));\n return b;\n}\nfunction dc(a) {\n var b = a,\n c = a;\n if (a.alternate) for (; b.return;) b = b.return;else {\n a = b;\n do b = a, 0 !== (b.effectTag & 1026) && (c = b.return), a = b.return; while (a);\n }\n return 3 === b.tag ? c : null;\n}\nfunction ec(a) {\n if (13 === a.tag) {\n var b = a.memoizedState;\n null === b && (a = a.alternate, null !== a && (b = a.memoizedState));\n if (null !== b) return b.dehydrated;\n }\n return null;\n}\nfunction fc(a) {\n if (dc(a) !== a) throw Error(u(188));\n}\nfunction gc(a) {\n var b = a.alternate;\n if (!b) {\n b = dc(a);\n if (null === b) throw Error(u(188));\n return b !== a ? null : a;\n }\n for (var c = a, d = b;;) {\n var e = c.return;\n if (null === e) break;\n var f = e.alternate;\n if (null === f) {\n d = e.return;\n if (null !== d) {\n c = d;\n continue;\n }\n break;\n }\n if (e.child === f.child) {\n for (f = e.child; f;) {\n if (f === c) return fc(e), a;\n if (f === d) return fc(e), b;\n f = f.sibling;\n }\n throw Error(u(188));\n }\n if (c.return !== d.return) c = e, d = f;else {\n for (var g = !1, h = e.child; h;) {\n if (h === c) {\n g = !0;\n c = e;\n d = f;\n break;\n }\n if (h === d) {\n g = !0;\n d = e;\n c = f;\n break;\n }\n h = h.sibling;\n }\n if (!g) {\n for (h = f.child; h;) {\n if (h === c) {\n g = !0;\n c = f;\n d = e;\n break;\n }\n if (h === d) {\n g = !0;\n d = f;\n c = e;\n break;\n }\n h = h.sibling;\n }\n if (!g) throw Error(u(189));\n }\n }\n if (c.alternate !== d) throw Error(u(190));\n }\n if (3 !== c.tag) throw Error(u(188));\n return c.stateNode.current === c ? a : b;\n}\nfunction hc(a) {\n a = gc(a);\n if (!a) return null;\n for (var b = a;;) {\n if (5 === b.tag || 6 === b.tag) return b;\n if (b.child) b.child.return = b, b = b.child;else {\n if (b === a) break;\n for (; !b.sibling;) {\n if (!b.return || b.return === a) return null;\n b = b.return;\n }\n b.sibling.return = b.return;\n b = b.sibling;\n }\n }\n return null;\n}\nfunction ic(a, b) {\n if (null == b) throw Error(u(30));\n if (null == a) return b;\n if (Array.isArray(a)) {\n if (Array.isArray(b)) return a.push.apply(a, b), a;\n a.push(b);\n return a;\n }\n return Array.isArray(b) ? [a].concat(b) : [a, b];\n}\nfunction jc(a, b, c) {\n Array.isArray(a) ? a.forEach(b, c) : a && b.call(c, a);\n}\nvar kc = null;\nfunction lc(a) {\n if (a) {\n var b = a._dispatchListeners,\n c = a._dispatchInstances;\n if (Array.isArray(b)) for (var d = 0; d < b.length && !a.isPropagationStopped(); d++) oa(a, b[d], c[d]);else b && oa(a, b, c);\n a._dispatchListeners = null;\n a._dispatchInstances = null;\n a.isPersistent() || a.constructor.release(a);\n }\n}\nfunction mc(a) {\n null !== a && (kc = ic(kc, a));\n a = kc;\n kc = null;\n if (a) {\n jc(a, lc);\n if (kc) throw Error(u(95));\n if (fa) throw a = ha, fa = !1, ha = null, a;\n }\n}\nfunction nc(a) {\n a = a.target || a.srcElement || window;\n a.correspondingUseElement && (a = a.correspondingUseElement);\n return 3 === a.nodeType ? a.parentNode : a;\n}\nfunction oc(a) {\n if (!ya) return !1;\n a = \"on\" + a;\n var b = a in document;\n b || (b = document.createElement(\"div\"), b.setAttribute(a, \"return;\"), b = \"function\" === typeof b[a]);\n return b;\n}\nvar pc = [];\nfunction qc(a) {\n a.topLevelType = null;\n a.nativeEvent = null;\n a.targetInst = null;\n a.ancestors.length = 0;\n 10 > pc.length && pc.push(a);\n}\nfunction rc(a, b, c, d) {\n if (pc.length) {\n var e = pc.pop();\n e.topLevelType = a;\n e.eventSystemFlags = d;\n e.nativeEvent = b;\n e.targetInst = c;\n return e;\n }\n return {\n topLevelType: a,\n eventSystemFlags: d,\n nativeEvent: b,\n targetInst: c,\n ancestors: []\n };\n}\nfunction sc(a) {\n var b = a.targetInst,\n c = b;\n do {\n if (!c) {\n a.ancestors.push(c);\n break;\n }\n var d = c;\n if (3 === d.tag) d = d.stateNode.containerInfo;else {\n for (; d.return;) d = d.return;\n d = 3 !== d.tag ? null : d.stateNode.containerInfo;\n }\n if (!d) break;\n b = c.tag;\n 5 !== b && 6 !== b || a.ancestors.push(c);\n c = tc(d);\n } while (c);\n for (c = 0; c < a.ancestors.length; c++) {\n b = a.ancestors[c];\n var e = nc(a.nativeEvent);\n d = a.topLevelType;\n var f = a.nativeEvent,\n g = a.eventSystemFlags;\n 0 === c && (g |= 64);\n for (var h = null, k = 0; k < sa.length; k++) {\n var l = sa[k];\n l && (l = l.extractEvents(d, b, f, e, g)) && (h = ic(h, l));\n }\n mc(h);\n }\n}\nfunction uc(a, b, c) {\n if (!c.has(a)) {\n switch (a) {\n case \"scroll\":\n vc(b, \"scroll\", !0);\n break;\n case \"focus\":\n case \"blur\":\n vc(b, \"focus\", !0);\n vc(b, \"blur\", !0);\n c.set(\"blur\", null);\n c.set(\"focus\", null);\n break;\n case \"cancel\":\n case \"close\":\n oc(a) && vc(b, a, !0);\n break;\n case \"invalid\":\n case \"submit\":\n case \"reset\":\n break;\n default:\n -1 === ac.indexOf(a) && F(a, b);\n }\n c.set(a, null);\n }\n}\nvar wc,\n xc,\n yc,\n zc = !1,\n Ac = [],\n Bc = null,\n Cc = null,\n Dc = null,\n Ec = new Map(),\n Fc = new Map(),\n Gc = [],\n Hc = \"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput close cancel copy cut paste click change contextmenu reset submit\".split(\" \"),\n Ic = \"focus blur dragenter dragleave mouseover mouseout pointerover pointerout gotpointercapture lostpointercapture\".split(\" \");\nfunction Jc(a, b) {\n var c = cc(b);\n Hc.forEach(function (a) {\n uc(a, b, c);\n });\n Ic.forEach(function (a) {\n uc(a, b, c);\n });\n}\nfunction Kc(a, b, c, d, e) {\n return {\n blockedOn: a,\n topLevelType: b,\n eventSystemFlags: c | 32,\n nativeEvent: e,\n container: d\n };\n}\nfunction Lc(a, b) {\n switch (a) {\n case \"focus\":\n case \"blur\":\n Bc = null;\n break;\n case \"dragenter\":\n case \"dragleave\":\n Cc = null;\n break;\n case \"mouseover\":\n case \"mouseout\":\n Dc = null;\n break;\n case \"pointerover\":\n case \"pointerout\":\n Ec.delete(b.pointerId);\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n Fc.delete(b.pointerId);\n }\n}\nfunction Mc(a, b, c, d, e, f) {\n if (null === a || a.nativeEvent !== f) return a = Kc(b, c, d, e, f), null !== b && (b = Nc(b), null !== b && xc(b)), a;\n a.eventSystemFlags |= d;\n return a;\n}\nfunction Oc(a, b, c, d, e) {\n switch (b) {\n case \"focus\":\n return Bc = Mc(Bc, a, b, c, d, e), !0;\n case \"dragenter\":\n return Cc = Mc(Cc, a, b, c, d, e), !0;\n case \"mouseover\":\n return Dc = Mc(Dc, a, b, c, d, e), !0;\n case \"pointerover\":\n var f = e.pointerId;\n Ec.set(f, Mc(Ec.get(f) || null, a, b, c, d, e));\n return !0;\n case \"gotpointercapture\":\n return f = e.pointerId, Fc.set(f, Mc(Fc.get(f) || null, a, b, c, d, e)), !0;\n }\n return !1;\n}\nfunction Pc(a) {\n var b = tc(a.target);\n if (null !== b) {\n var c = dc(b);\n if (null !== c) if (b = c.tag, 13 === b) {\n if (b = ec(c), null !== b) {\n a.blockedOn = b;\n r.unstable_runWithPriority(a.priority, function () {\n yc(c);\n });\n return;\n }\n } else if (3 === b && c.stateNode.hydrate) {\n a.blockedOn = 3 === c.tag ? c.stateNode.containerInfo : null;\n return;\n }\n }\n a.blockedOn = null;\n}\nfunction Qc(a) {\n if (null !== a.blockedOn) return !1;\n var b = Rc(a.topLevelType, a.eventSystemFlags, a.container, a.nativeEvent);\n if (null !== b) {\n var c = Nc(b);\n null !== c && xc(c);\n a.blockedOn = b;\n return !1;\n }\n return !0;\n}\nfunction Sc(a, b, c) {\n Qc(a) && c.delete(b);\n}\nfunction Tc() {\n for (zc = !1; 0 < Ac.length;) {\n var a = Ac[0];\n if (null !== a.blockedOn) {\n a = Nc(a.blockedOn);\n null !== a && wc(a);\n break;\n }\n var b = Rc(a.topLevelType, a.eventSystemFlags, a.container, a.nativeEvent);\n null !== b ? a.blockedOn = b : Ac.shift();\n }\n null !== Bc && Qc(Bc) && (Bc = null);\n null !== Cc && Qc(Cc) && (Cc = null);\n null !== Dc && Qc(Dc) && (Dc = null);\n Ec.forEach(Sc);\n Fc.forEach(Sc);\n}\nfunction Uc(a, b) {\n a.blockedOn === b && (a.blockedOn = null, zc || (zc = !0, r.unstable_scheduleCallback(r.unstable_NormalPriority, Tc)));\n}\nfunction Vc(a) {\n function b(b) {\n return Uc(b, a);\n }\n if (0 < Ac.length) {\n Uc(Ac[0], a);\n for (var c = 1; c < Ac.length; c++) {\n var d = Ac[c];\n d.blockedOn === a && (d.blockedOn = null);\n }\n }\n null !== Bc && Uc(Bc, a);\n null !== Cc && Uc(Cc, a);\n null !== Dc && Uc(Dc, a);\n Ec.forEach(b);\n Fc.forEach(b);\n for (c = 0; c < Gc.length; c++) d = Gc[c], d.blockedOn === a && (d.blockedOn = null);\n for (; 0 < Gc.length && (c = Gc[0], null === c.blockedOn);) Pc(c), null === c.blockedOn && Gc.shift();\n}\nvar Wc = {},\n Yc = new Map(),\n Zc = new Map(),\n $c = [\"abort\", \"abort\", Xb, \"animationEnd\", Yb, \"animationIteration\", Zb, \"animationStart\", \"canplay\", \"canPlay\", \"canplaythrough\", \"canPlayThrough\", \"durationchange\", \"durationChange\", \"emptied\", \"emptied\", \"encrypted\", \"encrypted\", \"ended\", \"ended\", \"error\", \"error\", \"gotpointercapture\", \"gotPointerCapture\", \"load\", \"load\", \"loadeddata\", \"loadedData\", \"loadedmetadata\", \"loadedMetadata\", \"loadstart\", \"loadStart\", \"lostpointercapture\", \"lostPointerCapture\", \"playing\", \"playing\", \"progress\", \"progress\", \"seeking\", \"seeking\", \"stalled\", \"stalled\", \"suspend\", \"suspend\", \"timeupdate\", \"timeUpdate\", $b, \"transitionEnd\", \"waiting\", \"waiting\"];\nfunction ad(a, b) {\n for (var c = 0; c < a.length; c += 2) {\n var d = a[c],\n e = a[c + 1],\n f = \"on\" + (e[0].toUpperCase() + e.slice(1));\n f = {\n phasedRegistrationNames: {\n bubbled: f,\n captured: f + \"Capture\"\n },\n dependencies: [d],\n eventPriority: b\n };\n Zc.set(d, b);\n Yc.set(d, f);\n Wc[e] = f;\n }\n}\nad(\"blur blur cancel cancel click click close close contextmenu contextMenu copy copy cut cut auxclick auxClick dblclick doubleClick dragend dragEnd dragstart dragStart drop drop focus focus input input invalid invalid keydown keyDown keypress keyPress keyup keyUp mousedown mouseDown mouseup mouseUp paste paste pause pause play play pointercancel pointerCancel pointerdown pointerDown pointerup pointerUp ratechange rateChange reset reset seeked seeked submit submit touchcancel touchCancel touchend touchEnd touchstart touchStart volumechange volumeChange\".split(\" \"), 0);\nad(\"drag drag dragenter dragEnter dragexit dragExit dragleave dragLeave dragover dragOver mousemove mouseMove mouseout mouseOut mouseover mouseOver pointermove pointerMove pointerout pointerOut pointerover pointerOver scroll scroll toggle toggle touchmove touchMove wheel wheel\".split(\" \"), 1);\nad($c, 2);\nfor (var bd = \"change selectionchange textInput compositionstart compositionend compositionupdate\".split(\" \"), cd = 0; cd < bd.length; cd++) Zc.set(bd[cd], 0);\nvar dd = r.unstable_UserBlockingPriority,\n ed = r.unstable_runWithPriority,\n fd = !0;\nfunction F(a, b) {\n vc(b, a, !1);\n}\nfunction vc(a, b, c) {\n var d = Zc.get(b);\n switch (void 0 === d ? 2 : d) {\n case 0:\n d = gd.bind(null, b, 1, a);\n break;\n case 1:\n d = hd.bind(null, b, 1, a);\n break;\n default:\n d = id.bind(null, b, 1, a);\n }\n c ? a.addEventListener(b, d, !0) : a.addEventListener(b, d, !1);\n}\nfunction gd(a, b, c, d) {\n Ja || Ha();\n var e = id,\n f = Ja;\n Ja = !0;\n try {\n Ga(e, a, b, c, d);\n } finally {\n (Ja = f) || La();\n }\n}\nfunction hd(a, b, c, d) {\n ed(dd, id.bind(null, a, b, c, d));\n}\nfunction id(a, b, c, d) {\n if (fd) if (0 < Ac.length && -1 < Hc.indexOf(a)) a = Kc(null, a, b, c, d), Ac.push(a);else {\n var e = Rc(a, b, c, d);\n if (null === e) Lc(a, d);else if (-1 < Hc.indexOf(a)) a = Kc(e, a, b, c, d), Ac.push(a);else if (!Oc(e, a, b, c, d)) {\n Lc(a, d);\n a = rc(a, d, null, b);\n try {\n Ma(sc, a);\n } finally {\n qc(a);\n }\n }\n }\n}\nfunction Rc(a, b, c, d) {\n c = nc(d);\n c = tc(c);\n if (null !== c) {\n var e = dc(c);\n if (null === e) c = null;else {\n var f = e.tag;\n if (13 === f) {\n c = ec(e);\n if (null !== c) return c;\n c = null;\n } else if (3 === f) {\n if (e.stateNode.hydrate) return 3 === e.tag ? e.stateNode.containerInfo : null;\n c = null;\n } else e !== c && (c = null);\n }\n }\n a = rc(a, d, c, b);\n try {\n Ma(sc, a);\n } finally {\n qc(a);\n }\n return null;\n}\nvar jd = {\n animationIterationCount: !0,\n borderImageOutset: !0,\n borderImageSlice: !0,\n borderImageWidth: !0,\n boxFlex: !0,\n boxFlexGroup: !0,\n boxOrdinalGroup: !0,\n columnCount: !0,\n columns: !0,\n flex: !0,\n flexGrow: !0,\n flexPositive: !0,\n flexShrink: !0,\n flexNegative: !0,\n flexOrder: !0,\n gridArea: !0,\n gridRow: !0,\n gridRowEnd: !0,\n gridRowSpan: !0,\n gridRowStart: !0,\n gridColumn: !0,\n gridColumnEnd: !0,\n gridColumnSpan: !0,\n gridColumnStart: !0,\n fontWeight: !0,\n lineClamp: !0,\n lineHeight: !0,\n opacity: !0,\n order: !0,\n orphans: !0,\n tabSize: !0,\n widows: !0,\n zIndex: !0,\n zoom: !0,\n fillOpacity: !0,\n floodOpacity: !0,\n stopOpacity: !0,\n strokeDasharray: !0,\n strokeDashoffset: !0,\n strokeMiterlimit: !0,\n strokeOpacity: !0,\n strokeWidth: !0\n },\n kd = [\"Webkit\", \"ms\", \"Moz\", \"O\"];\nObject.keys(jd).forEach(function (a) {\n kd.forEach(function (b) {\n b = b + a.charAt(0).toUpperCase() + a.substring(1);\n jd[b] = jd[a];\n });\n});\nfunction ld(a, b, c) {\n return null == b || \"boolean\" === typeof b || \"\" === b ? \"\" : c || \"number\" !== typeof b || 0 === b || jd.hasOwnProperty(a) && jd[a] ? (\"\" + b).trim() : b + \"px\";\n}\nfunction md(a, b) {\n a = a.style;\n for (var c in b) if (b.hasOwnProperty(c)) {\n var d = 0 === c.indexOf(\"--\"),\n e = ld(c, b[c], d);\n \"float\" === c && (c = \"cssFloat\");\n d ? a.setProperty(c, e) : a[c] = e;\n }\n}\nvar nd = n({\n menuitem: !0\n}, {\n area: !0,\n base: !0,\n br: !0,\n col: !0,\n embed: !0,\n hr: !0,\n img: !0,\n input: !0,\n keygen: !0,\n link: !0,\n meta: !0,\n param: !0,\n source: !0,\n track: !0,\n wbr: !0\n});\nfunction od(a, b) {\n if (b) {\n if (nd[a] && (null != b.children || null != b.dangerouslySetInnerHTML)) throw Error(u(137, a, \"\"));\n if (null != b.dangerouslySetInnerHTML) {\n if (null != b.children) throw Error(u(60));\n if (!(\"object\" === typeof b.dangerouslySetInnerHTML && \"__html\" in b.dangerouslySetInnerHTML)) throw Error(u(61));\n }\n if (null != b.style && \"object\" !== typeof b.style) throw Error(u(62, \"\"));\n }\n}\nfunction pd(a, b) {\n if (-1 === a.indexOf(\"-\")) return \"string\" === typeof b.is;\n switch (a) {\n case \"annotation-xml\":\n case \"color-profile\":\n case \"font-face\":\n case \"font-face-src\":\n case \"font-face-uri\":\n case \"font-face-format\":\n case \"font-face-name\":\n case \"missing-glyph\":\n return !1;\n default:\n return !0;\n }\n}\nvar qd = Mb.html;\nfunction rd(a, b) {\n a = 9 === a.nodeType || 11 === a.nodeType ? a : a.ownerDocument;\n var c = cc(a);\n b = wa[b];\n for (var d = 0; d < b.length; d++) uc(b[d], a, c);\n}\nfunction sd() {}\nfunction td(a) {\n a = a || (\"undefined\" !== typeof document ? document : void 0);\n if (\"undefined\" === typeof a) return null;\n try {\n return a.activeElement || a.body;\n } catch (b) {\n return a.body;\n }\n}\nfunction ud(a) {\n for (; a && a.firstChild;) a = a.firstChild;\n return a;\n}\nfunction vd(a, b) {\n var c = ud(a);\n a = 0;\n for (var d; c;) {\n if (3 === c.nodeType) {\n d = a + c.textContent.length;\n if (a <= b && d >= b) return {\n node: c,\n offset: b - a\n };\n a = d;\n }\n a: {\n for (; c;) {\n if (c.nextSibling) {\n c = c.nextSibling;\n break a;\n }\n c = c.parentNode;\n }\n c = void 0;\n }\n c = ud(c);\n }\n}\nfunction wd(a, b) {\n return a && b ? a === b ? !0 : a && 3 === a.nodeType ? !1 : b && 3 === b.nodeType ? wd(a, b.parentNode) : \"contains\" in a ? a.contains(b) : a.compareDocumentPosition ? !!(a.compareDocumentPosition(b) & 16) : !1 : !1;\n}\nfunction xd() {\n for (var a = window, b = td(); b instanceof a.HTMLIFrameElement;) {\n try {\n var c = \"string\" === typeof b.contentWindow.location.href;\n } catch (d) {\n c = !1;\n }\n if (c) a = b.contentWindow;else break;\n b = td(a.document);\n }\n return b;\n}\nfunction yd(a) {\n var b = a && a.nodeName && a.nodeName.toLowerCase();\n return b && (\"input\" === b && (\"text\" === a.type || \"search\" === a.type || \"tel\" === a.type || \"url\" === a.type || \"password\" === a.type) || \"textarea\" === b || \"true\" === a.contentEditable);\n}\nvar zd = \"$\",\n Ad = \"/$\",\n Bd = \"$?\",\n Cd = \"$!\",\n Dd = null,\n Ed = null;\nfunction Fd(a, b) {\n switch (a) {\n case \"button\":\n case \"input\":\n case \"select\":\n case \"textarea\":\n return !!b.autoFocus;\n }\n return !1;\n}\nfunction Gd(a, b) {\n return \"textarea\" === a || \"option\" === a || \"noscript\" === a || \"string\" === typeof b.children || \"number\" === typeof b.children || \"object\" === typeof b.dangerouslySetInnerHTML && null !== b.dangerouslySetInnerHTML && null != b.dangerouslySetInnerHTML.__html;\n}\nvar Hd = \"function\" === typeof setTimeout ? setTimeout : void 0,\n Id = \"function\" === typeof clearTimeout ? clearTimeout : void 0;\nfunction Jd(a) {\n for (; null != a; a = a.nextSibling) {\n var b = a.nodeType;\n if (1 === b || 3 === b) break;\n }\n return a;\n}\nfunction Kd(a) {\n a = a.previousSibling;\n for (var b = 0; a;) {\n if (8 === a.nodeType) {\n var c = a.data;\n if (c === zd || c === Cd || c === Bd) {\n if (0 === b) return a;\n b--;\n } else c === Ad && b++;\n }\n a = a.previousSibling;\n }\n return null;\n}\nvar Ld = Math.random().toString(36).slice(2),\n Md = \"__reactInternalInstance$\" + Ld,\n Nd = \"__reactEventHandlers$\" + Ld,\n Od = \"__reactContainere$\" + Ld;\nfunction tc(a) {\n var b = a[Md];\n if (b) return b;\n for (var c = a.parentNode; c;) {\n if (b = c[Od] || c[Md]) {\n c = b.alternate;\n if (null !== b.child || null !== c && null !== c.child) for (a = Kd(a); null !== a;) {\n if (c = a[Md]) return c;\n a = Kd(a);\n }\n return b;\n }\n a = c;\n c = a.parentNode;\n }\n return null;\n}\nfunction Nc(a) {\n a = a[Md] || a[Od];\n return !a || 5 !== a.tag && 6 !== a.tag && 13 !== a.tag && 3 !== a.tag ? null : a;\n}\nfunction Pd(a) {\n if (5 === a.tag || 6 === a.tag) return a.stateNode;\n throw Error(u(33));\n}\nfunction Qd(a) {\n return a[Nd] || null;\n}\nfunction Rd(a) {\n do a = a.return; while (a && 5 !== a.tag);\n return a ? a : null;\n}\nfunction Sd(a, b) {\n var c = a.stateNode;\n if (!c) return null;\n var d = la(c);\n if (!d) return null;\n c = d[b];\n a: switch (b) {\n case \"onClick\":\n case \"onClickCapture\":\n case \"onDoubleClick\":\n case \"onDoubleClickCapture\":\n case \"onMouseDown\":\n case \"onMouseDownCapture\":\n case \"onMouseMove\":\n case \"onMouseMoveCapture\":\n case \"onMouseUp\":\n case \"onMouseUpCapture\":\n case \"onMouseEnter\":\n (d = !d.disabled) || (a = a.type, d = !(\"button\" === a || \"input\" === a || \"select\" === a || \"textarea\" === a));\n a = !d;\n break a;\n default:\n a = !1;\n }\n if (a) return null;\n if (c && \"function\" !== typeof c) throw Error(u(231, b, typeof c));\n return c;\n}\nfunction Td(a, b, c) {\n if (b = Sd(a, c.dispatchConfig.phasedRegistrationNames[b])) c._dispatchListeners = ic(c._dispatchListeners, b), c._dispatchInstances = ic(c._dispatchInstances, a);\n}\nfunction Ud(a) {\n if (a && a.dispatchConfig.phasedRegistrationNames) {\n for (var b = a._targetInst, c = []; b;) c.push(b), b = Rd(b);\n for (b = c.length; 0 < b--;) Td(c[b], \"captured\", a);\n for (b = 0; b < c.length; b++) Td(c[b], \"bubbled\", a);\n }\n}\nfunction Vd(a, b, c) {\n a && c && c.dispatchConfig.registrationName && (b = Sd(a, c.dispatchConfig.registrationName)) && (c._dispatchListeners = ic(c._dispatchListeners, b), c._dispatchInstances = ic(c._dispatchInstances, a));\n}\nfunction Wd(a) {\n a && a.dispatchConfig.registrationName && Vd(a._targetInst, null, a);\n}\nfunction Xd(a) {\n jc(a, Ud);\n}\nvar Yd = null,\n Zd = null,\n $d = null;\nfunction ae() {\n if ($d) return $d;\n var a,\n b = Zd,\n c = b.length,\n d,\n e = \"value\" in Yd ? Yd.value : Yd.textContent,\n f = e.length;\n for (a = 0; a < c && b[a] === e[a]; a++);\n var g = c - a;\n for (d = 1; d <= g && b[c - d] === e[f - d]; d++);\n return $d = e.slice(a, 1 < d ? 1 - d : void 0);\n}\nfunction be() {\n return !0;\n}\nfunction ce() {\n return !1;\n}\nfunction G(a, b, c, d) {\n this.dispatchConfig = a;\n this._targetInst = b;\n this.nativeEvent = c;\n a = this.constructor.Interface;\n for (var e in a) a.hasOwnProperty(e) && ((b = a[e]) ? this[e] = b(c) : \"target\" === e ? this.target = d : this[e] = c[e]);\n this.isDefaultPrevented = (null != c.defaultPrevented ? c.defaultPrevented : !1 === c.returnValue) ? be : ce;\n this.isPropagationStopped = ce;\n return this;\n}\nn(G.prototype, {\n preventDefault: function () {\n this.defaultPrevented = !0;\n var a = this.nativeEvent;\n a && (a.preventDefault ? a.preventDefault() : \"unknown\" !== typeof a.returnValue && (a.returnValue = !1), this.isDefaultPrevented = be);\n },\n stopPropagation: function () {\n var a = this.nativeEvent;\n a && (a.stopPropagation ? a.stopPropagation() : \"unknown\" !== typeof a.cancelBubble && (a.cancelBubble = !0), this.isPropagationStopped = be);\n },\n persist: function () {\n this.isPersistent = be;\n },\n isPersistent: ce,\n destructor: function () {\n var a = this.constructor.Interface,\n b;\n for (b in a) this[b] = null;\n this.nativeEvent = this._targetInst = this.dispatchConfig = null;\n this.isPropagationStopped = this.isDefaultPrevented = ce;\n this._dispatchInstances = this._dispatchListeners = null;\n }\n});\nG.Interface = {\n type: null,\n target: null,\n currentTarget: function () {\n return null;\n },\n eventPhase: null,\n bubbles: null,\n cancelable: null,\n timeStamp: function (a) {\n return a.timeStamp || Date.now();\n },\n defaultPrevented: null,\n isTrusted: null\n};\nG.extend = function (a) {\n function b() {}\n function c() {\n return d.apply(this, arguments);\n }\n var d = this;\n b.prototype = d.prototype;\n var e = new b();\n n(e, c.prototype);\n c.prototype = e;\n c.prototype.constructor = c;\n c.Interface = n({}, d.Interface, a);\n c.extend = d.extend;\n de(c);\n return c;\n};\nde(G);\nfunction ee(a, b, c, d) {\n if (this.eventPool.length) {\n var e = this.eventPool.pop();\n this.call(e, a, b, c, d);\n return e;\n }\n return new this(a, b, c, d);\n}\nfunction fe(a) {\n if (!(a instanceof this)) throw Error(u(279));\n a.destructor();\n 10 > this.eventPool.length && this.eventPool.push(a);\n}\nfunction de(a) {\n a.eventPool = [];\n a.getPooled = ee;\n a.release = fe;\n}\nvar ge = G.extend({\n data: null\n }),\n he = G.extend({\n data: null\n }),\n ie = [9, 13, 27, 32],\n je = ya && \"CompositionEvent\" in window,\n ke = null;\nya && \"documentMode\" in document && (ke = document.documentMode);\nvar le = ya && \"TextEvent\" in window && !ke,\n me = ya && (!je || ke && 8 < ke && 11 >= ke),\n ne = String.fromCharCode(32),\n oe = {\n beforeInput: {\n phasedRegistrationNames: {\n bubbled: \"onBeforeInput\",\n captured: \"onBeforeInputCapture\"\n },\n dependencies: [\"compositionend\", \"keypress\", \"textInput\", \"paste\"]\n },\n compositionEnd: {\n phasedRegistrationNames: {\n bubbled: \"onCompositionEnd\",\n captured: \"onCompositionEndCapture\"\n },\n dependencies: \"blur compositionend keydown keypress keyup mousedown\".split(\" \")\n },\n compositionStart: {\n phasedRegistrationNames: {\n bubbled: \"onCompositionStart\",\n captured: \"onCompositionStartCapture\"\n },\n dependencies: \"blur compositionstart keydown keypress keyup mousedown\".split(\" \")\n },\n compositionUpdate: {\n phasedRegistrationNames: {\n bubbled: \"onCompositionUpdate\",\n captured: \"onCompositionUpdateCapture\"\n },\n dependencies: \"blur compositionupdate keydown keypress keyup mousedown\".split(\" \")\n }\n },\n pe = !1;\nfunction qe(a, b) {\n switch (a) {\n case \"keyup\":\n return -1 !== ie.indexOf(b.keyCode);\n case \"keydown\":\n return 229 !== b.keyCode;\n case \"keypress\":\n case \"mousedown\":\n case \"blur\":\n return !0;\n default:\n return !1;\n }\n}\nfunction re(a) {\n a = a.detail;\n return \"object\" === typeof a && \"data\" in a ? a.data : null;\n}\nvar se = !1;\nfunction te(a, b) {\n switch (a) {\n case \"compositionend\":\n return re(b);\n case \"keypress\":\n if (32 !== b.which) return null;\n pe = !0;\n return ne;\n case \"textInput\":\n return a = b.data, a === ne && pe ? null : a;\n default:\n return null;\n }\n}\nfunction ue(a, b) {\n if (se) return \"compositionend\" === a || !je && qe(a, b) ? (a = ae(), $d = Zd = Yd = null, se = !1, a) : null;\n switch (a) {\n case \"paste\":\n return null;\n case \"keypress\":\n if (!(b.ctrlKey || b.altKey || b.metaKey) || b.ctrlKey && b.altKey) {\n if (b.char && 1 < b.char.length) return b.char;\n if (b.which) return String.fromCharCode(b.which);\n }\n return null;\n case \"compositionend\":\n return me && \"ko\" !== b.locale ? null : b.data;\n default:\n return null;\n }\n}\nvar ve = {\n eventTypes: oe,\n extractEvents: function (a, b, c, d) {\n var e;\n if (je) b: {\n switch (a) {\n case \"compositionstart\":\n var f = oe.compositionStart;\n break b;\n case \"compositionend\":\n f = oe.compositionEnd;\n break b;\n case \"compositionupdate\":\n f = oe.compositionUpdate;\n break b;\n }\n f = void 0;\n } else se ? qe(a, c) && (f = oe.compositionEnd) : \"keydown\" === a && 229 === c.keyCode && (f = oe.compositionStart);\n f ? (me && \"ko\" !== c.locale && (se || f !== oe.compositionStart ? f === oe.compositionEnd && se && (e = ae()) : (Yd = d, Zd = \"value\" in Yd ? Yd.value : Yd.textContent, se = !0)), f = ge.getPooled(f, b, c, d), e ? f.data = e : (e = re(c), null !== e && (f.data = e)), Xd(f), e = f) : e = null;\n (a = le ? te(a, c) : ue(a, c)) ? (b = he.getPooled(oe.beforeInput, b, c, d), b.data = a, Xd(b)) : b = null;\n return null === e ? b : null === b ? e : [e, b];\n }\n },\n we = {\n color: !0,\n date: !0,\n datetime: !0,\n \"datetime-local\": !0,\n email: !0,\n month: !0,\n number: !0,\n password: !0,\n range: !0,\n search: !0,\n tel: !0,\n text: !0,\n time: !0,\n url: !0,\n week: !0\n };\nfunction xe(a) {\n var b = a && a.nodeName && a.nodeName.toLowerCase();\n return \"input\" === b ? !!we[a.type] : \"textarea\" === b ? !0 : !1;\n}\nvar ye = {\n change: {\n phasedRegistrationNames: {\n bubbled: \"onChange\",\n captured: \"onChangeCapture\"\n },\n dependencies: \"blur change click focus input keydown keyup selectionchange\".split(\" \")\n }\n};\nfunction ze(a, b, c) {\n a = G.getPooled(ye.change, a, b, c);\n a.type = \"change\";\n Da(c);\n Xd(a);\n return a;\n}\nvar Ae = null,\n Be = null;\nfunction Ce(a) {\n mc(a);\n}\nfunction De(a) {\n var b = Pd(a);\n if (yb(b)) return a;\n}\nfunction Ee(a, b) {\n if (\"change\" === a) return b;\n}\nvar Fe = !1;\nya && (Fe = oc(\"input\") && (!document.documentMode || 9 < document.documentMode));\nfunction Ge() {\n Ae && (Ae.detachEvent(\"onpropertychange\", He), Be = Ae = null);\n}\nfunction He(a) {\n if (\"value\" === a.propertyName && De(Be)) if (a = ze(Be, a, nc(a)), Ja) mc(a);else {\n Ja = !0;\n try {\n Fa(Ce, a);\n } finally {\n Ja = !1, La();\n }\n }\n}\nfunction Ie(a, b, c) {\n \"focus\" === a ? (Ge(), Ae = b, Be = c, Ae.attachEvent(\"onpropertychange\", He)) : \"blur\" === a && Ge();\n}\nfunction Je(a) {\n if (\"selectionchange\" === a || \"keyup\" === a || \"keydown\" === a) return De(Be);\n}\nfunction Ke(a, b) {\n if (\"click\" === a) return De(b);\n}\nfunction Le(a, b) {\n if (\"input\" === a || \"change\" === a) return De(b);\n}\nvar Me = {\n eventTypes: ye,\n _isInputEventSupported: Fe,\n extractEvents: function (a, b, c, d) {\n var e = b ? Pd(b) : window,\n f = e.nodeName && e.nodeName.toLowerCase();\n if (\"select\" === f || \"input\" === f && \"file\" === e.type) var g = Ee;else if (xe(e)) {\n if (Fe) g = Le;else {\n g = Je;\n var h = Ie;\n }\n } else (f = e.nodeName) && \"input\" === f.toLowerCase() && (\"checkbox\" === e.type || \"radio\" === e.type) && (g = Ke);\n if (g && (g = g(a, b))) return ze(g, c, d);\n h && h(a, e, b);\n \"blur\" === a && (a = e._wrapperState) && a.controlled && \"number\" === e.type && Db(e, \"number\", e.value);\n }\n },\n Ne = G.extend({\n view: null,\n detail: null\n }),\n Oe = {\n Alt: \"altKey\",\n Control: \"ctrlKey\",\n Meta: \"metaKey\",\n Shift: \"shiftKey\"\n };\nfunction Pe(a) {\n var b = this.nativeEvent;\n return b.getModifierState ? b.getModifierState(a) : (a = Oe[a]) ? !!b[a] : !1;\n}\nfunction Qe() {\n return Pe;\n}\nvar Re = 0,\n Se = 0,\n Te = !1,\n Ue = !1,\n Ve = Ne.extend({\n screenX: null,\n screenY: null,\n clientX: null,\n clientY: null,\n pageX: null,\n pageY: null,\n ctrlKey: null,\n shiftKey: null,\n altKey: null,\n metaKey: null,\n getModifierState: Qe,\n button: null,\n buttons: null,\n relatedTarget: function (a) {\n return a.relatedTarget || (a.fromElement === a.srcElement ? a.toElement : a.fromElement);\n },\n movementX: function (a) {\n if (\"movementX\" in a) return a.movementX;\n var b = Re;\n Re = a.screenX;\n return Te ? \"mousemove\" === a.type ? a.screenX - b : 0 : (Te = !0, 0);\n },\n movementY: function (a) {\n if (\"movementY\" in a) return a.movementY;\n var b = Se;\n Se = a.screenY;\n return Ue ? \"mousemove\" === a.type ? a.screenY - b : 0 : (Ue = !0, 0);\n }\n }),\n We = Ve.extend({\n pointerId: null,\n width: null,\n height: null,\n pressure: null,\n tangentialPressure: null,\n tiltX: null,\n tiltY: null,\n twist: null,\n pointerType: null,\n isPrimary: null\n }),\n Xe = {\n mouseEnter: {\n registrationName: \"onMouseEnter\",\n dependencies: [\"mouseout\", \"mouseover\"]\n },\n mouseLeave: {\n registrationName: \"onMouseLeave\",\n dependencies: [\"mouseout\", \"mouseover\"]\n },\n pointerEnter: {\n registrationName: \"onPointerEnter\",\n dependencies: [\"pointerout\", \"pointerover\"]\n },\n pointerLeave: {\n registrationName: \"onPointerLeave\",\n dependencies: [\"pointerout\", \"pointerover\"]\n }\n },\n Ye = {\n eventTypes: Xe,\n extractEvents: function (a, b, c, d, e) {\n var f = \"mouseover\" === a || \"pointerover\" === a,\n g = \"mouseout\" === a || \"pointerout\" === a;\n if (f && 0 === (e & 32) && (c.relatedTarget || c.fromElement) || !g && !f) return null;\n f = d.window === d ? d : (f = d.ownerDocument) ? f.defaultView || f.parentWindow : window;\n if (g) {\n if (g = b, b = (b = c.relatedTarget || c.toElement) ? tc(b) : null, null !== b) {\n var h = dc(b);\n if (b !== h || 5 !== b.tag && 6 !== b.tag) b = null;\n }\n } else g = null;\n if (g === b) return null;\n if (\"mouseout\" === a || \"mouseover\" === a) {\n var k = Ve;\n var l = Xe.mouseLeave;\n var m = Xe.mouseEnter;\n var p = \"mouse\";\n } else if (\"pointerout\" === a || \"pointerover\" === a) k = We, l = Xe.pointerLeave, m = Xe.pointerEnter, p = \"pointer\";\n a = null == g ? f : Pd(g);\n f = null == b ? f : Pd(b);\n l = k.getPooled(l, g, c, d);\n l.type = p + \"leave\";\n l.target = a;\n l.relatedTarget = f;\n c = k.getPooled(m, b, c, d);\n c.type = p + \"enter\";\n c.target = f;\n c.relatedTarget = a;\n d = g;\n p = b;\n if (d && p) a: {\n k = d;\n m = p;\n g = 0;\n for (a = k; a; a = Rd(a)) g++;\n a = 0;\n for (b = m; b; b = Rd(b)) a++;\n for (; 0 < g - a;) k = Rd(k), g--;\n for (; 0 < a - g;) m = Rd(m), a--;\n for (; g--;) {\n if (k === m || k === m.alternate) break a;\n k = Rd(k);\n m = Rd(m);\n }\n k = null;\n } else k = null;\n m = k;\n for (k = []; d && d !== m;) {\n g = d.alternate;\n if (null !== g && g === m) break;\n k.push(d);\n d = Rd(d);\n }\n for (d = []; p && p !== m;) {\n g = p.alternate;\n if (null !== g && g === m) break;\n d.push(p);\n p = Rd(p);\n }\n for (p = 0; p < k.length; p++) Vd(k[p], \"bubbled\", l);\n for (p = d.length; 0 < p--;) Vd(d[p], \"captured\", c);\n return 0 === (e & 64) ? [l] : [l, c];\n }\n };\nfunction Ze(a, b) {\n return a === b && (0 !== a || 1 / a === 1 / b) || a !== a && b !== b;\n}\nvar $e = \"function\" === typeof Object.is ? Object.is : Ze,\n af = Object.prototype.hasOwnProperty;\nfunction bf(a, b) {\n if ($e(a, b)) return !0;\n if (\"object\" !== typeof a || null === a || \"object\" !== typeof b || null === b) return !1;\n var c = Object.keys(a),\n d = Object.keys(b);\n if (c.length !== d.length) return !1;\n for (d = 0; d < c.length; d++) if (!af.call(b, c[d]) || !$e(a[c[d]], b[c[d]])) return !1;\n return !0;\n}\nvar cf = ya && \"documentMode\" in document && 11 >= document.documentMode,\n df = {\n select: {\n phasedRegistrationNames: {\n bubbled: \"onSelect\",\n captured: \"onSelectCapture\"\n },\n dependencies: \"blur contextmenu dragend focus keydown keyup mousedown mouseup selectionchange\".split(\" \")\n }\n },\n ef = null,\n ff = null,\n gf = null,\n hf = !1;\nfunction jf(a, b) {\n var c = b.window === b ? b.document : 9 === b.nodeType ? b : b.ownerDocument;\n if (hf || null == ef || ef !== td(c)) return null;\n c = ef;\n \"selectionStart\" in c && yd(c) ? c = {\n start: c.selectionStart,\n end: c.selectionEnd\n } : (c = (c.ownerDocument && c.ownerDocument.defaultView || window).getSelection(), c = {\n anchorNode: c.anchorNode,\n anchorOffset: c.anchorOffset,\n focusNode: c.focusNode,\n focusOffset: c.focusOffset\n });\n return gf && bf(gf, c) ? null : (gf = c, a = G.getPooled(df.select, ff, a, b), a.type = \"select\", a.target = ef, Xd(a), a);\n}\nvar kf = {\n eventTypes: df,\n extractEvents: function (a, b, c, d, e, f) {\n e = f || (d.window === d ? d.document : 9 === d.nodeType ? d : d.ownerDocument);\n if (!(f = !e)) {\n a: {\n e = cc(e);\n f = wa.onSelect;\n for (var g = 0; g < f.length; g++) if (!e.has(f[g])) {\n e = !1;\n break a;\n }\n e = !0;\n }\n f = !e;\n }\n if (f) return null;\n e = b ? Pd(b) : window;\n switch (a) {\n case \"focus\":\n if (xe(e) || \"true\" === e.contentEditable) ef = e, ff = b, gf = null;\n break;\n case \"blur\":\n gf = ff = ef = null;\n break;\n case \"mousedown\":\n hf = !0;\n break;\n case \"contextmenu\":\n case \"mouseup\":\n case \"dragend\":\n return hf = !1, jf(c, d);\n case \"selectionchange\":\n if (cf) break;\n case \"keydown\":\n case \"keyup\":\n return jf(c, d);\n }\n return null;\n }\n },\n lf = G.extend({\n animationName: null,\n elapsedTime: null,\n pseudoElement: null\n }),\n mf = G.extend({\n clipboardData: function (a) {\n return \"clipboardData\" in a ? a.clipboardData : window.clipboardData;\n }\n }),\n nf = Ne.extend({\n relatedTarget: null\n });\nfunction of(a) {\n var b = a.keyCode;\n \"charCode\" in a ? (a = a.charCode, 0 === a && 13 === b && (a = 13)) : a = b;\n 10 === a && (a = 13);\n return 32 <= a || 13 === a ? a : 0;\n}\nvar pf = {\n Esc: \"Escape\",\n Spacebar: \" \",\n Left: \"ArrowLeft\",\n Up: \"ArrowUp\",\n Right: \"ArrowRight\",\n Down: \"ArrowDown\",\n Del: \"Delete\",\n Win: \"OS\",\n Menu: \"ContextMenu\",\n Apps: \"ContextMenu\",\n Scroll: \"ScrollLock\",\n MozPrintableKey: \"Unidentified\"\n },\n qf = {\n 8: \"Backspace\",\n 9: \"Tab\",\n 12: \"Clear\",\n 13: \"Enter\",\n 16: \"Shift\",\n 17: \"Control\",\n 18: \"Alt\",\n 19: \"Pause\",\n 20: \"CapsLock\",\n 27: \"Escape\",\n 32: \" \",\n 33: \"PageUp\",\n 34: \"PageDown\",\n 35: \"End\",\n 36: \"Home\",\n 37: \"ArrowLeft\",\n 38: \"ArrowUp\",\n 39: \"ArrowRight\",\n 40: \"ArrowDown\",\n 45: \"Insert\",\n 46: \"Delete\",\n 112: \"F1\",\n 113: \"F2\",\n 114: \"F3\",\n 115: \"F4\",\n 116: \"F5\",\n 117: \"F6\",\n 118: \"F7\",\n 119: \"F8\",\n 120: \"F9\",\n 121: \"F10\",\n 122: \"F11\",\n 123: \"F12\",\n 144: \"NumLock\",\n 145: \"ScrollLock\",\n 224: \"Meta\"\n },\n rf = Ne.extend({\n key: function (a) {\n if (a.key) {\n var b = pf[a.key] || a.key;\n if (\"Unidentified\" !== b) return b;\n }\n return \"keypress\" === a.type ? (a = of(a), 13 === a ? \"Enter\" : String.fromCharCode(a)) : \"keydown\" === a.type || \"keyup\" === a.type ? qf[a.keyCode] || \"Unidentified\" : \"\";\n },\n location: null,\n ctrlKey: null,\n shiftKey: null,\n altKey: null,\n metaKey: null,\n repeat: null,\n locale: null,\n getModifierState: Qe,\n charCode: function (a) {\n return \"keypress\" === a.type ? of(a) : 0;\n },\n keyCode: function (a) {\n return \"keydown\" === a.type || \"keyup\" === a.type ? a.keyCode : 0;\n },\n which: function (a) {\n return \"keypress\" === a.type ? of(a) : \"keydown\" === a.type || \"keyup\" === a.type ? a.keyCode : 0;\n }\n }),\n sf = Ve.extend({\n dataTransfer: null\n }),\n tf = Ne.extend({\n touches: null,\n targetTouches: null,\n changedTouches: null,\n altKey: null,\n metaKey: null,\n ctrlKey: null,\n shiftKey: null,\n getModifierState: Qe\n }),\n uf = G.extend({\n propertyName: null,\n elapsedTime: null,\n pseudoElement: null\n }),\n vf = Ve.extend({\n deltaX: function (a) {\n return \"deltaX\" in a ? a.deltaX : \"wheelDeltaX\" in a ? -a.wheelDeltaX : 0;\n },\n deltaY: function (a) {\n return \"deltaY\" in a ? a.deltaY : \"wheelDeltaY\" in a ? -a.wheelDeltaY : \"wheelDelta\" in a ? -a.wheelDelta : 0;\n },\n deltaZ: null,\n deltaMode: null\n }),\n wf = {\n eventTypes: Wc,\n extractEvents: function (a, b, c, d) {\n var e = Yc.get(a);\n if (!e) return null;\n switch (a) {\n case \"keypress\":\n if (0 === of(c)) return null;\n case \"keydown\":\n case \"keyup\":\n a = rf;\n break;\n case \"blur\":\n case \"focus\":\n a = nf;\n break;\n case \"click\":\n if (2 === c.button) return null;\n case \"auxclick\":\n case \"dblclick\":\n case \"mousedown\":\n case \"mousemove\":\n case \"mouseup\":\n case \"mouseout\":\n case \"mouseover\":\n case \"contextmenu\":\n a = Ve;\n break;\n case \"drag\":\n case \"dragend\":\n case \"dragenter\":\n case \"dragexit\":\n case \"dragleave\":\n case \"dragover\":\n case \"dragstart\":\n case \"drop\":\n a = sf;\n break;\n case \"touchcancel\":\n case \"touchend\":\n case \"touchmove\":\n case \"touchstart\":\n a = tf;\n break;\n case Xb:\n case Yb:\n case Zb:\n a = lf;\n break;\n case $b:\n a = uf;\n break;\n case \"scroll\":\n a = Ne;\n break;\n case \"wheel\":\n a = vf;\n break;\n case \"copy\":\n case \"cut\":\n case \"paste\":\n a = mf;\n break;\n case \"gotpointercapture\":\n case \"lostpointercapture\":\n case \"pointercancel\":\n case \"pointerdown\":\n case \"pointermove\":\n case \"pointerout\":\n case \"pointerover\":\n case \"pointerup\":\n a = We;\n break;\n default:\n a = G;\n }\n b = a.getPooled(e, b, c, d);\n Xd(b);\n return b;\n }\n };\nif (pa) throw Error(u(101));\npa = Array.prototype.slice.call(\"ResponderEventPlugin SimpleEventPlugin EnterLeaveEventPlugin ChangeEventPlugin SelectEventPlugin BeforeInputEventPlugin\".split(\" \"));\nra();\nvar xf = Nc;\nla = Qd;\nma = xf;\nna = Pd;\nxa({\n SimpleEventPlugin: wf,\n EnterLeaveEventPlugin: Ye,\n ChangeEventPlugin: Me,\n SelectEventPlugin: kf,\n BeforeInputEventPlugin: ve\n});\nvar yf = [],\n zf = -1;\nfunction H(a) {\n 0 > zf || (a.current = yf[zf], yf[zf] = null, zf--);\n}\nfunction I(a, b) {\n zf++;\n yf[zf] = a.current;\n a.current = b;\n}\nvar Af = {},\n J = {\n current: Af\n },\n K = {\n current: !1\n },\n Bf = Af;\nfunction Cf(a, b) {\n var c = a.type.contextTypes;\n if (!c) return Af;\n var d = a.stateNode;\n if (d && d.__reactInternalMemoizedUnmaskedChildContext === b) return d.__reactInternalMemoizedMaskedChildContext;\n var e = {},\n f;\n for (f in c) e[f] = b[f];\n d && (a = a.stateNode, a.__reactInternalMemoizedUnmaskedChildContext = b, a.__reactInternalMemoizedMaskedChildContext = e);\n return e;\n}\nfunction L(a) {\n a = a.childContextTypes;\n return null !== a && void 0 !== a;\n}\nfunction Df() {\n H(K);\n H(J);\n}\nfunction Ef(a, b, c) {\n if (J.current !== Af) throw Error(u(168));\n I(J, b);\n I(K, c);\n}\nfunction Ff(a, b, c) {\n var d = a.stateNode;\n a = b.childContextTypes;\n if (\"function\" !== typeof d.getChildContext) return c;\n d = d.getChildContext();\n for (var e in d) if (!(e in a)) throw Error(u(108, pb(b) || \"Unknown\", e));\n return n({}, c, {}, d);\n}\nfunction Gf(a) {\n a = (a = a.stateNode) && a.__reactInternalMemoizedMergedChildContext || Af;\n Bf = J.current;\n I(J, a);\n I(K, K.current);\n return !0;\n}\nfunction Hf(a, b, c) {\n var d = a.stateNode;\n if (!d) throw Error(u(169));\n c ? (a = Ff(a, b, Bf), d.__reactInternalMemoizedMergedChildContext = a, H(K), H(J), I(J, a)) : H(K);\n I(K, c);\n}\nvar If = r.unstable_runWithPriority,\n Jf = r.unstable_scheduleCallback,\n Kf = r.unstable_cancelCallback,\n Lf = r.unstable_requestPaint,\n Mf = r.unstable_now,\n Nf = r.unstable_getCurrentPriorityLevel,\n Of = r.unstable_ImmediatePriority,\n Pf = r.unstable_UserBlockingPriority,\n Qf = r.unstable_NormalPriority,\n Rf = r.unstable_LowPriority,\n Sf = r.unstable_IdlePriority,\n Tf = {},\n Uf = r.unstable_shouldYield,\n Vf = void 0 !== Lf ? Lf : function () {},\n Wf = null,\n Xf = null,\n Yf = !1,\n Zf = Mf(),\n $f = 1E4 > Zf ? Mf : function () {\n return Mf() - Zf;\n };\nfunction ag() {\n switch (Nf()) {\n case Of:\n return 99;\n case Pf:\n return 98;\n case Qf:\n return 97;\n case Rf:\n return 96;\n case Sf:\n return 95;\n default:\n throw Error(u(332));\n }\n}\nfunction bg(a) {\n switch (a) {\n case 99:\n return Of;\n case 98:\n return Pf;\n case 97:\n return Qf;\n case 96:\n return Rf;\n case 95:\n return Sf;\n default:\n throw Error(u(332));\n }\n}\nfunction cg(a, b) {\n a = bg(a);\n return If(a, b);\n}\nfunction dg(a, b, c) {\n a = bg(a);\n return Jf(a, b, c);\n}\nfunction eg(a) {\n null === Wf ? (Wf = [a], Xf = Jf(Of, fg)) : Wf.push(a);\n return Tf;\n}\nfunction gg() {\n if (null !== Xf) {\n var a = Xf;\n Xf = null;\n Kf(a);\n }\n fg();\n}\nfunction fg() {\n if (!Yf && null !== Wf) {\n Yf = !0;\n var a = 0;\n try {\n var b = Wf;\n cg(99, function () {\n for (; a < b.length; a++) {\n var c = b[a];\n do c = c(!0); while (null !== c);\n }\n });\n Wf = null;\n } catch (c) {\n throw null !== Wf && (Wf = Wf.slice(a + 1)), Jf(Of, gg), c;\n } finally {\n Yf = !1;\n }\n }\n}\nfunction hg(a, b, c) {\n c /= 10;\n return 1073741821 - (((1073741821 - a + b / 10) / c | 0) + 1) * c;\n}\nfunction ig(a, b) {\n if (a && a.defaultProps) {\n b = n({}, b);\n a = a.defaultProps;\n for (var c in a) void 0 === b[c] && (b[c] = a[c]);\n }\n return b;\n}\nvar jg = {\n current: null\n },\n kg = null,\n lg = null,\n mg = null;\nfunction ng() {\n mg = lg = kg = null;\n}\nfunction og(a) {\n var b = jg.current;\n H(jg);\n a.type._context._currentValue = b;\n}\nfunction pg(a, b) {\n for (; null !== a;) {\n var c = a.alternate;\n if (a.childExpirationTime < b) a.childExpirationTime = b, null !== c && c.childExpirationTime < b && (c.childExpirationTime = b);else if (null !== c && c.childExpirationTime < b) c.childExpirationTime = b;else break;\n a = a.return;\n }\n}\nfunction qg(a, b) {\n kg = a;\n mg = lg = null;\n a = a.dependencies;\n null !== a && null !== a.firstContext && (a.expirationTime >= b && (rg = !0), a.firstContext = null);\n}\nfunction sg(a, b) {\n if (mg !== a && !1 !== b && 0 !== b) {\n if (\"number\" !== typeof b || 1073741823 === b) mg = a, b = 1073741823;\n b = {\n context: a,\n observedBits: b,\n next: null\n };\n if (null === lg) {\n if (null === kg) throw Error(u(308));\n lg = b;\n kg.dependencies = {\n expirationTime: 0,\n firstContext: b,\n responders: null\n };\n } else lg = lg.next = b;\n }\n return a._currentValue;\n}\nvar tg = !1;\nfunction ug(a) {\n a.updateQueue = {\n baseState: a.memoizedState,\n baseQueue: null,\n shared: {\n pending: null\n },\n effects: null\n };\n}\nfunction vg(a, b) {\n a = a.updateQueue;\n b.updateQueue === a && (b.updateQueue = {\n baseState: a.baseState,\n baseQueue: a.baseQueue,\n shared: a.shared,\n effects: a.effects\n });\n}\nfunction wg(a, b) {\n a = {\n expirationTime: a,\n suspenseConfig: b,\n tag: 0,\n payload: null,\n callback: null,\n next: null\n };\n return a.next = a;\n}\nfunction xg(a, b) {\n a = a.updateQueue;\n if (null !== a) {\n a = a.shared;\n var c = a.pending;\n null === c ? b.next = b : (b.next = c.next, c.next = b);\n a.pending = b;\n }\n}\nfunction yg(a, b) {\n var c = a.alternate;\n null !== c && vg(c, a);\n a = a.updateQueue;\n c = a.baseQueue;\n null === c ? (a.baseQueue = b.next = b, b.next = b) : (b.next = c.next, c.next = b);\n}\nfunction zg(a, b, c, d) {\n var e = a.updateQueue;\n tg = !1;\n var f = e.baseQueue,\n g = e.shared.pending;\n if (null !== g) {\n if (null !== f) {\n var h = f.next;\n f.next = g.next;\n g.next = h;\n }\n f = g;\n e.shared.pending = null;\n h = a.alternate;\n null !== h && (h = h.updateQueue, null !== h && (h.baseQueue = g));\n }\n if (null !== f) {\n h = f.next;\n var k = e.baseState,\n l = 0,\n m = null,\n p = null,\n x = null;\n if (null !== h) {\n var z = h;\n do {\n g = z.expirationTime;\n if (g < d) {\n var ca = {\n expirationTime: z.expirationTime,\n suspenseConfig: z.suspenseConfig,\n tag: z.tag,\n payload: z.payload,\n callback: z.callback,\n next: null\n };\n null === x ? (p = x = ca, m = k) : x = x.next = ca;\n g > l && (l = g);\n } else {\n null !== x && (x = x.next = {\n expirationTime: 1073741823,\n suspenseConfig: z.suspenseConfig,\n tag: z.tag,\n payload: z.payload,\n callback: z.callback,\n next: null\n });\n Ag(g, z.suspenseConfig);\n a: {\n var D = a,\n t = z;\n g = b;\n ca = c;\n switch (t.tag) {\n case 1:\n D = t.payload;\n if (\"function\" === typeof D) {\n k = D.call(ca, k, g);\n break a;\n }\n k = D;\n break a;\n case 3:\n D.effectTag = D.effectTag & -4097 | 64;\n case 0:\n D = t.payload;\n g = \"function\" === typeof D ? D.call(ca, k, g) : D;\n if (null === g || void 0 === g) break a;\n k = n({}, k, g);\n break a;\n case 2:\n tg = !0;\n }\n }\n null !== z.callback && (a.effectTag |= 32, g = e.effects, null === g ? e.effects = [z] : g.push(z));\n }\n z = z.next;\n if (null === z || z === h) if (g = e.shared.pending, null === g) break;else z = f.next = g.next, g.next = h, e.baseQueue = f = g, e.shared.pending = null;\n } while (1);\n }\n null === x ? m = k : x.next = p;\n e.baseState = m;\n e.baseQueue = x;\n Bg(l);\n a.expirationTime = l;\n a.memoizedState = k;\n }\n}\nfunction Cg(a, b, c) {\n a = b.effects;\n b.effects = null;\n if (null !== a) for (b = 0; b < a.length; b++) {\n var d = a[b],\n e = d.callback;\n if (null !== e) {\n d.callback = null;\n d = e;\n e = c;\n if (\"function\" !== typeof d) throw Error(u(191, d));\n d.call(e);\n }\n }\n}\nvar Dg = Wa.ReactCurrentBatchConfig,\n Eg = new aa.Component().refs;\nfunction Fg(a, b, c, d) {\n b = a.memoizedState;\n c = c(d, b);\n c = null === c || void 0 === c ? b : n({}, b, c);\n a.memoizedState = c;\n 0 === a.expirationTime && (a.updateQueue.baseState = c);\n}\nvar Jg = {\n isMounted: function (a) {\n return (a = a._reactInternalFiber) ? dc(a) === a : !1;\n },\n enqueueSetState: function (a, b, c) {\n a = a._reactInternalFiber;\n var d = Gg(),\n e = Dg.suspense;\n d = Hg(d, a, e);\n e = wg(d, e);\n e.payload = b;\n void 0 !== c && null !== c && (e.callback = c);\n xg(a, e);\n Ig(a, d);\n },\n enqueueReplaceState: function (a, b, c) {\n a = a._reactInternalFiber;\n var d = Gg(),\n e = Dg.suspense;\n d = Hg(d, a, e);\n e = wg(d, e);\n e.tag = 1;\n e.payload = b;\n void 0 !== c && null !== c && (e.callback = c);\n xg(a, e);\n Ig(a, d);\n },\n enqueueForceUpdate: function (a, b) {\n a = a._reactInternalFiber;\n var c = Gg(),\n d = Dg.suspense;\n c = Hg(c, a, d);\n d = wg(c, d);\n d.tag = 2;\n void 0 !== b && null !== b && (d.callback = b);\n xg(a, d);\n Ig(a, c);\n }\n};\nfunction Kg(a, b, c, d, e, f, g) {\n a = a.stateNode;\n return \"function\" === typeof a.shouldComponentUpdate ? a.shouldComponentUpdate(d, f, g) : b.prototype && b.prototype.isPureReactComponent ? !bf(c, d) || !bf(e, f) : !0;\n}\nfunction Lg(a, b, c) {\n var d = !1,\n e = Af;\n var f = b.contextType;\n \"object\" === typeof f && null !== f ? f = sg(f) : (e = L(b) ? Bf : J.current, d = b.contextTypes, f = (d = null !== d && void 0 !== d) ? Cf(a, e) : Af);\n b = new b(c, f);\n a.memoizedState = null !== b.state && void 0 !== b.state ? b.state : null;\n b.updater = Jg;\n a.stateNode = b;\n b._reactInternalFiber = a;\n d && (a = a.stateNode, a.__reactInternalMemoizedUnmaskedChildContext = e, a.__reactInternalMemoizedMaskedChildContext = f);\n return b;\n}\nfunction Mg(a, b, c, d) {\n a = b.state;\n \"function\" === typeof b.componentWillReceiveProps && b.componentWillReceiveProps(c, d);\n \"function\" === typeof b.UNSAFE_componentWillReceiveProps && b.UNSAFE_componentWillReceiveProps(c, d);\n b.state !== a && Jg.enqueueReplaceState(b, b.state, null);\n}\nfunction Ng(a, b, c, d) {\n var e = a.stateNode;\n e.props = c;\n e.state = a.memoizedState;\n e.refs = Eg;\n ug(a);\n var f = b.contextType;\n \"object\" === typeof f && null !== f ? e.context = sg(f) : (f = L(b) ? Bf : J.current, e.context = Cf(a, f));\n zg(a, c, e, d);\n e.state = a.memoizedState;\n f = b.getDerivedStateFromProps;\n \"function\" === typeof f && (Fg(a, b, f, c), e.state = a.memoizedState);\n \"function\" === typeof b.getDerivedStateFromProps || \"function\" === typeof e.getSnapshotBeforeUpdate || \"function\" !== typeof e.UNSAFE_componentWillMount && \"function\" !== typeof e.componentWillMount || (b = e.state, \"function\" === typeof e.componentWillMount && e.componentWillMount(), \"function\" === typeof e.UNSAFE_componentWillMount && e.UNSAFE_componentWillMount(), b !== e.state && Jg.enqueueReplaceState(e, e.state, null), zg(a, c, e, d), e.state = a.memoizedState);\n \"function\" === typeof e.componentDidMount && (a.effectTag |= 4);\n}\nvar Og = Array.isArray;\nfunction Pg(a, b, c) {\n a = c.ref;\n if (null !== a && \"function\" !== typeof a && \"object\" !== typeof a) {\n if (c._owner) {\n c = c._owner;\n if (c) {\n if (1 !== c.tag) throw Error(u(309));\n var d = c.stateNode;\n }\n if (!d) throw Error(u(147, a));\n var e = \"\" + a;\n if (null !== b && null !== b.ref && \"function\" === typeof b.ref && b.ref._stringRef === e) return b.ref;\n b = function (a) {\n var b = d.refs;\n b === Eg && (b = d.refs = {});\n null === a ? delete b[e] : b[e] = a;\n };\n b._stringRef = e;\n return b;\n }\n if (\"string\" !== typeof a) throw Error(u(284));\n if (!c._owner) throw Error(u(290, a));\n }\n return a;\n}\nfunction Qg(a, b) {\n if (\"textarea\" !== a.type) throw Error(u(31, \"[object Object]\" === Object.prototype.toString.call(b) ? \"object with keys {\" + Object.keys(b).join(\", \") + \"}\" : b, \"\"));\n}\nfunction Rg(a) {\n function b(b, c) {\n if (a) {\n var d = b.lastEffect;\n null !== d ? (d.nextEffect = c, b.lastEffect = c) : b.firstEffect = b.lastEffect = c;\n c.nextEffect = null;\n c.effectTag = 8;\n }\n }\n function c(c, d) {\n if (!a) return null;\n for (; null !== d;) b(c, d), d = d.sibling;\n return null;\n }\n function d(a, b) {\n for (a = new Map(); null !== b;) null !== b.key ? a.set(b.key, b) : a.set(b.index, b), b = b.sibling;\n return a;\n }\n function e(a, b) {\n a = Sg(a, b);\n a.index = 0;\n a.sibling = null;\n return a;\n }\n function f(b, c, d) {\n b.index = d;\n if (!a) return c;\n d = b.alternate;\n if (null !== d) return d = d.index, d < c ? (b.effectTag = 2, c) : d;\n b.effectTag = 2;\n return c;\n }\n function g(b) {\n a && null === b.alternate && (b.effectTag = 2);\n return b;\n }\n function h(a, b, c, d) {\n if (null === b || 6 !== b.tag) return b = Tg(c, a.mode, d), b.return = a, b;\n b = e(b, c);\n b.return = a;\n return b;\n }\n function k(a, b, c, d) {\n if (null !== b && b.elementType === c.type) return d = e(b, c.props), d.ref = Pg(a, b, c), d.return = a, d;\n d = Ug(c.type, c.key, c.props, null, a.mode, d);\n d.ref = Pg(a, b, c);\n d.return = a;\n return d;\n }\n function l(a, b, c, d) {\n if (null === b || 4 !== b.tag || b.stateNode.containerInfo !== c.containerInfo || b.stateNode.implementation !== c.implementation) return b = Vg(c, a.mode, d), b.return = a, b;\n b = e(b, c.children || []);\n b.return = a;\n return b;\n }\n function m(a, b, c, d, f) {\n if (null === b || 7 !== b.tag) return b = Wg(c, a.mode, d, f), b.return = a, b;\n b = e(b, c);\n b.return = a;\n return b;\n }\n function p(a, b, c) {\n if (\"string\" === typeof b || \"number\" === typeof b) return b = Tg(\"\" + b, a.mode, c), b.return = a, b;\n if (\"object\" === typeof b && null !== b) {\n switch (b.$$typeof) {\n case Za:\n return c = Ug(b.type, b.key, b.props, null, a.mode, c), c.ref = Pg(a, null, b), c.return = a, c;\n case $a:\n return b = Vg(b, a.mode, c), b.return = a, b;\n }\n if (Og(b) || nb(b)) return b = Wg(b, a.mode, c, null), b.return = a, b;\n Qg(a, b);\n }\n return null;\n }\n function x(a, b, c, d) {\n var e = null !== b ? b.key : null;\n if (\"string\" === typeof c || \"number\" === typeof c) return null !== e ? null : h(a, b, \"\" + c, d);\n if (\"object\" === typeof c && null !== c) {\n switch (c.$$typeof) {\n case Za:\n return c.key === e ? c.type === ab ? m(a, b, c.props.children, d, e) : k(a, b, c, d) : null;\n case $a:\n return c.key === e ? l(a, b, c, d) : null;\n }\n if (Og(c) || nb(c)) return null !== e ? null : m(a, b, c, d, null);\n Qg(a, c);\n }\n return null;\n }\n function z(a, b, c, d, e) {\n if (\"string\" === typeof d || \"number\" === typeof d) return a = a.get(c) || null, h(b, a, \"\" + d, e);\n if (\"object\" === typeof d && null !== d) {\n switch (d.$$typeof) {\n case Za:\n return a = a.get(null === d.key ? c : d.key) || null, d.type === ab ? m(b, a, d.props.children, e, d.key) : k(b, a, d, e);\n case $a:\n return a = a.get(null === d.key ? c : d.key) || null, l(b, a, d, e);\n }\n if (Og(d) || nb(d)) return a = a.get(c) || null, m(b, a, d, e, null);\n Qg(b, d);\n }\n return null;\n }\n function ca(e, g, h, k) {\n for (var l = null, t = null, m = g, y = g = 0, A = null; null !== m && y < h.length; y++) {\n m.index > y ? (A = m, m = null) : A = m.sibling;\n var q = x(e, m, h[y], k);\n if (null === q) {\n null === m && (m = A);\n break;\n }\n a && m && null === q.alternate && b(e, m);\n g = f(q, g, y);\n null === t ? l = q : t.sibling = q;\n t = q;\n m = A;\n }\n if (y === h.length) return c(e, m), l;\n if (null === m) {\n for (; y < h.length; y++) m = p(e, h[y], k), null !== m && (g = f(m, g, y), null === t ? l = m : t.sibling = m, t = m);\n return l;\n }\n for (m = d(e, m); y < h.length; y++) A = z(m, e, y, h[y], k), null !== A && (a && null !== A.alternate && m.delete(null === A.key ? y : A.key), g = f(A, g, y), null === t ? l = A : t.sibling = A, t = A);\n a && m.forEach(function (a) {\n return b(e, a);\n });\n return l;\n }\n function D(e, g, h, l) {\n var k = nb(h);\n if (\"function\" !== typeof k) throw Error(u(150));\n h = k.call(h);\n if (null == h) throw Error(u(151));\n for (var m = k = null, t = g, y = g = 0, A = null, q = h.next(); null !== t && !q.done; y++, q = h.next()) {\n t.index > y ? (A = t, t = null) : A = t.sibling;\n var D = x(e, t, q.value, l);\n if (null === D) {\n null === t && (t = A);\n break;\n }\n a && t && null === D.alternate && b(e, t);\n g = f(D, g, y);\n null === m ? k = D : m.sibling = D;\n m = D;\n t = A;\n }\n if (q.done) return c(e, t), k;\n if (null === t) {\n for (; !q.done; y++, q = h.next()) q = p(e, q.value, l), null !== q && (g = f(q, g, y), null === m ? k = q : m.sibling = q, m = q);\n return k;\n }\n for (t = d(e, t); !q.done; y++, q = h.next()) q = z(t, e, y, q.value, l), null !== q && (a && null !== q.alternate && t.delete(null === q.key ? y : q.key), g = f(q, g, y), null === m ? k = q : m.sibling = q, m = q);\n a && t.forEach(function (a) {\n return b(e, a);\n });\n return k;\n }\n return function (a, d, f, h) {\n var k = \"object\" === typeof f && null !== f && f.type === ab && null === f.key;\n k && (f = f.props.children);\n var l = \"object\" === typeof f && null !== f;\n if (l) switch (f.$$typeof) {\n case Za:\n a: {\n l = f.key;\n for (k = d; null !== k;) {\n if (k.key === l) {\n switch (k.tag) {\n case 7:\n if (f.type === ab) {\n c(a, k.sibling);\n d = e(k, f.props.children);\n d.return = a;\n a = d;\n break a;\n }\n break;\n default:\n if (k.elementType === f.type) {\n c(a, k.sibling);\n d = e(k, f.props);\n d.ref = Pg(a, k, f);\n d.return = a;\n a = d;\n break a;\n }\n }\n c(a, k);\n break;\n } else b(a, k);\n k = k.sibling;\n }\n f.type === ab ? (d = Wg(f.props.children, a.mode, h, f.key), d.return = a, a = d) : (h = Ug(f.type, f.key, f.props, null, a.mode, h), h.ref = Pg(a, d, f), h.return = a, a = h);\n }\n return g(a);\n case $a:\n a: {\n for (k = f.key; null !== d;) {\n if (d.key === k) {\n if (4 === d.tag && d.stateNode.containerInfo === f.containerInfo && d.stateNode.implementation === f.implementation) {\n c(a, d.sibling);\n d = e(d, f.children || []);\n d.return = a;\n a = d;\n break a;\n } else {\n c(a, d);\n break;\n }\n } else b(a, d);\n d = d.sibling;\n }\n d = Vg(f, a.mode, h);\n d.return = a;\n a = d;\n }\n return g(a);\n }\n if (\"string\" === typeof f || \"number\" === typeof f) return f = \"\" + f, null !== d && 6 === d.tag ? (c(a, d.sibling), d = e(d, f), d.return = a, a = d) : (c(a, d), d = Tg(f, a.mode, h), d.return = a, a = d), g(a);\n if (Og(f)) return ca(a, d, f, h);\n if (nb(f)) return D(a, d, f, h);\n l && Qg(a, f);\n if (\"undefined\" === typeof f && !k) switch (a.tag) {\n case 1:\n case 0:\n throw a = a.type, Error(u(152, a.displayName || a.name || \"Component\"));\n }\n return c(a, d);\n };\n}\nvar Xg = Rg(!0),\n Yg = Rg(!1),\n Zg = {},\n $g = {\n current: Zg\n },\n ah = {\n current: Zg\n },\n bh = {\n current: Zg\n };\nfunction ch(a) {\n if (a === Zg) throw Error(u(174));\n return a;\n}\nfunction dh(a, b) {\n I(bh, b);\n I(ah, a);\n I($g, Zg);\n a = b.nodeType;\n switch (a) {\n case 9:\n case 11:\n b = (b = b.documentElement) ? b.namespaceURI : Ob(null, \"\");\n break;\n default:\n a = 8 === a ? b.parentNode : b, b = a.namespaceURI || null, a = a.tagName, b = Ob(b, a);\n }\n H($g);\n I($g, b);\n}\nfunction eh() {\n H($g);\n H(ah);\n H(bh);\n}\nfunction fh(a) {\n ch(bh.current);\n var b = ch($g.current);\n var c = Ob(b, a.type);\n b !== c && (I(ah, a), I($g, c));\n}\nfunction gh(a) {\n ah.current === a && (H($g), H(ah));\n}\nvar M = {\n current: 0\n};\nfunction hh(a) {\n for (var b = a; null !== b;) {\n if (13 === b.tag) {\n var c = b.memoizedState;\n if (null !== c && (c = c.dehydrated, null === c || c.data === Bd || c.data === Cd)) return b;\n } else if (19 === b.tag && void 0 !== b.memoizedProps.revealOrder) {\n if (0 !== (b.effectTag & 64)) return b;\n } else if (null !== b.child) {\n b.child.return = b;\n b = b.child;\n continue;\n }\n if (b === a) break;\n for (; null === b.sibling;) {\n if (null === b.return || b.return === a) return null;\n b = b.return;\n }\n b.sibling.return = b.return;\n b = b.sibling;\n }\n return null;\n}\nfunction ih(a, b) {\n return {\n responder: a,\n props: b\n };\n}\nvar jh = Wa.ReactCurrentDispatcher,\n kh = Wa.ReactCurrentBatchConfig,\n lh = 0,\n N = null,\n O = null,\n P = null,\n mh = !1;\nfunction Q() {\n throw Error(u(321));\n}\nfunction nh(a, b) {\n if (null === b) return !1;\n for (var c = 0; c < b.length && c < a.length; c++) if (!$e(a[c], b[c])) return !1;\n return !0;\n}\nfunction oh(a, b, c, d, e, f) {\n lh = f;\n N = b;\n b.memoizedState = null;\n b.updateQueue = null;\n b.expirationTime = 0;\n jh.current = null === a || null === a.memoizedState ? ph : qh;\n a = c(d, e);\n if (b.expirationTime === lh) {\n f = 0;\n do {\n b.expirationTime = 0;\n if (!(25 > f)) throw Error(u(301));\n f += 1;\n P = O = null;\n b.updateQueue = null;\n jh.current = rh;\n a = c(d, e);\n } while (b.expirationTime === lh);\n }\n jh.current = sh;\n b = null !== O && null !== O.next;\n lh = 0;\n P = O = N = null;\n mh = !1;\n if (b) throw Error(u(300));\n return a;\n}\nfunction th() {\n var a = {\n memoizedState: null,\n baseState: null,\n baseQueue: null,\n queue: null,\n next: null\n };\n null === P ? N.memoizedState = P = a : P = P.next = a;\n return P;\n}\nfunction uh() {\n if (null === O) {\n var a = N.alternate;\n a = null !== a ? a.memoizedState : null;\n } else a = O.next;\n var b = null === P ? N.memoizedState : P.next;\n if (null !== b) P = b, O = a;else {\n if (null === a) throw Error(u(310));\n O = a;\n a = {\n memoizedState: O.memoizedState,\n baseState: O.baseState,\n baseQueue: O.baseQueue,\n queue: O.queue,\n next: null\n };\n null === P ? N.memoizedState = P = a : P = P.next = a;\n }\n return P;\n}\nfunction vh(a, b) {\n return \"function\" === typeof b ? b(a) : b;\n}\nfunction wh(a) {\n var b = uh(),\n c = b.queue;\n if (null === c) throw Error(u(311));\n c.lastRenderedReducer = a;\n var d = O,\n e = d.baseQueue,\n f = c.pending;\n if (null !== f) {\n if (null !== e) {\n var g = e.next;\n e.next = f.next;\n f.next = g;\n }\n d.baseQueue = e = f;\n c.pending = null;\n }\n if (null !== e) {\n e = e.next;\n d = d.baseState;\n var h = g = f = null,\n k = e;\n do {\n var l = k.expirationTime;\n if (l < lh) {\n var m = {\n expirationTime: k.expirationTime,\n suspenseConfig: k.suspenseConfig,\n action: k.action,\n eagerReducer: k.eagerReducer,\n eagerState: k.eagerState,\n next: null\n };\n null === h ? (g = h = m, f = d) : h = h.next = m;\n l > N.expirationTime && (N.expirationTime = l, Bg(l));\n } else null !== h && (h = h.next = {\n expirationTime: 1073741823,\n suspenseConfig: k.suspenseConfig,\n action: k.action,\n eagerReducer: k.eagerReducer,\n eagerState: k.eagerState,\n next: null\n }), Ag(l, k.suspenseConfig), d = k.eagerReducer === a ? k.eagerState : a(d, k.action);\n k = k.next;\n } while (null !== k && k !== e);\n null === h ? f = d : h.next = g;\n $e(d, b.memoizedState) || (rg = !0);\n b.memoizedState = d;\n b.baseState = f;\n b.baseQueue = h;\n c.lastRenderedState = d;\n }\n return [b.memoizedState, c.dispatch];\n}\nfunction xh(a) {\n var b = uh(),\n c = b.queue;\n if (null === c) throw Error(u(311));\n c.lastRenderedReducer = a;\n var d = c.dispatch,\n e = c.pending,\n f = b.memoizedState;\n if (null !== e) {\n c.pending = null;\n var g = e = e.next;\n do f = a(f, g.action), g = g.next; while (g !== e);\n $e(f, b.memoizedState) || (rg = !0);\n b.memoizedState = f;\n null === b.baseQueue && (b.baseState = f);\n c.lastRenderedState = f;\n }\n return [f, d];\n}\nfunction yh(a) {\n var b = th();\n \"function\" === typeof a && (a = a());\n b.memoizedState = b.baseState = a;\n a = b.queue = {\n pending: null,\n dispatch: null,\n lastRenderedReducer: vh,\n lastRenderedState: a\n };\n a = a.dispatch = zh.bind(null, N, a);\n return [b.memoizedState, a];\n}\nfunction Ah(a, b, c, d) {\n a = {\n tag: a,\n create: b,\n destroy: c,\n deps: d,\n next: null\n };\n b = N.updateQueue;\n null === b ? (b = {\n lastEffect: null\n }, N.updateQueue = b, b.lastEffect = a.next = a) : (c = b.lastEffect, null === c ? b.lastEffect = a.next = a : (d = c.next, c.next = a, a.next = d, b.lastEffect = a));\n return a;\n}\nfunction Bh() {\n return uh().memoizedState;\n}\nfunction Ch(a, b, c, d) {\n var e = th();\n N.effectTag |= a;\n e.memoizedState = Ah(1 | b, c, void 0, void 0 === d ? null : d);\n}\nfunction Dh(a, b, c, d) {\n var e = uh();\n d = void 0 === d ? null : d;\n var f = void 0;\n if (null !== O) {\n var g = O.memoizedState;\n f = g.destroy;\n if (null !== d && nh(d, g.deps)) {\n Ah(b, c, f, d);\n return;\n }\n }\n N.effectTag |= a;\n e.memoizedState = Ah(1 | b, c, f, d);\n}\nfunction Eh(a, b) {\n return Ch(516, 4, a, b);\n}\nfunction Fh(a, b) {\n return Dh(516, 4, a, b);\n}\nfunction Gh(a, b) {\n return Dh(4, 2, a, b);\n}\nfunction Hh(a, b) {\n if (\"function\" === typeof b) return a = a(), b(a), function () {\n b(null);\n };\n if (null !== b && void 0 !== b) return a = a(), b.current = a, function () {\n b.current = null;\n };\n}\nfunction Ih(a, b, c) {\n c = null !== c && void 0 !== c ? c.concat([a]) : null;\n return Dh(4, 2, Hh.bind(null, b, a), c);\n}\nfunction Jh() {}\nfunction Kh(a, b) {\n th().memoizedState = [a, void 0 === b ? null : b];\n return a;\n}\nfunction Lh(a, b) {\n var c = uh();\n b = void 0 === b ? null : b;\n var d = c.memoizedState;\n if (null !== d && null !== b && nh(b, d[1])) return d[0];\n c.memoizedState = [a, b];\n return a;\n}\nfunction Mh(a, b) {\n var c = uh();\n b = void 0 === b ? null : b;\n var d = c.memoizedState;\n if (null !== d && null !== b && nh(b, d[1])) return d[0];\n a = a();\n c.memoizedState = [a, b];\n return a;\n}\nfunction Nh(a, b, c) {\n var d = ag();\n cg(98 > d ? 98 : d, function () {\n a(!0);\n });\n cg(97 < d ? 97 : d, function () {\n var d = kh.suspense;\n kh.suspense = void 0 === b ? null : b;\n try {\n a(!1), c();\n } finally {\n kh.suspense = d;\n }\n });\n}\nfunction zh(a, b, c) {\n var d = Gg(),\n e = Dg.suspense;\n d = Hg(d, a, e);\n e = {\n expirationTime: d,\n suspenseConfig: e,\n action: c,\n eagerReducer: null,\n eagerState: null,\n next: null\n };\n var f = b.pending;\n null === f ? e.next = e : (e.next = f.next, f.next = e);\n b.pending = e;\n f = a.alternate;\n if (a === N || null !== f && f === N) mh = !0, e.expirationTime = lh, N.expirationTime = lh;else {\n if (0 === a.expirationTime && (null === f || 0 === f.expirationTime) && (f = b.lastRenderedReducer, null !== f)) try {\n var g = b.lastRenderedState,\n h = f(g, c);\n e.eagerReducer = f;\n e.eagerState = h;\n if ($e(h, g)) return;\n } catch (k) {} finally {}\n Ig(a, d);\n }\n}\nvar sh = {\n readContext: sg,\n useCallback: Q,\n useContext: Q,\n useEffect: Q,\n useImperativeHandle: Q,\n useLayoutEffect: Q,\n useMemo: Q,\n useReducer: Q,\n useRef: Q,\n useState: Q,\n useDebugValue: Q,\n useResponder: Q,\n useDeferredValue: Q,\n useTransition: Q\n },\n ph = {\n readContext: sg,\n useCallback: Kh,\n useContext: sg,\n useEffect: Eh,\n useImperativeHandle: function (a, b, c) {\n c = null !== c && void 0 !== c ? c.concat([a]) : null;\n return Ch(4, 2, Hh.bind(null, b, a), c);\n },\n useLayoutEffect: function (a, b) {\n return Ch(4, 2, a, b);\n },\n useMemo: function (a, b) {\n var c = th();\n b = void 0 === b ? null : b;\n a = a();\n c.memoizedState = [a, b];\n return a;\n },\n useReducer: function (a, b, c) {\n var d = th();\n b = void 0 !== c ? c(b) : b;\n d.memoizedState = d.baseState = b;\n a = d.queue = {\n pending: null,\n dispatch: null,\n lastRenderedReducer: a,\n lastRenderedState: b\n };\n a = a.dispatch = zh.bind(null, N, a);\n return [d.memoizedState, a];\n },\n useRef: function (a) {\n var b = th();\n a = {\n current: a\n };\n return b.memoizedState = a;\n },\n useState: yh,\n useDebugValue: Jh,\n useResponder: ih,\n useDeferredValue: function (a, b) {\n var c = yh(a),\n d = c[0],\n e = c[1];\n Eh(function () {\n var c = kh.suspense;\n kh.suspense = void 0 === b ? null : b;\n try {\n e(a);\n } finally {\n kh.suspense = c;\n }\n }, [a, b]);\n return d;\n },\n useTransition: function (a) {\n var b = yh(!1),\n c = b[0];\n b = b[1];\n return [Kh(Nh.bind(null, b, a), [b, a]), c];\n }\n },\n qh = {\n readContext: sg,\n useCallback: Lh,\n useContext: sg,\n useEffect: Fh,\n useImperativeHandle: Ih,\n useLayoutEffect: Gh,\n useMemo: Mh,\n useReducer: wh,\n useRef: Bh,\n useState: function () {\n return wh(vh);\n },\n useDebugValue: Jh,\n useResponder: ih,\n useDeferredValue: function (a, b) {\n var c = wh(vh),\n d = c[0],\n e = c[1];\n Fh(function () {\n var c = kh.suspense;\n kh.suspense = void 0 === b ? null : b;\n try {\n e(a);\n } finally {\n kh.suspense = c;\n }\n }, [a, b]);\n return d;\n },\n useTransition: function (a) {\n var b = wh(vh),\n c = b[0];\n b = b[1];\n return [Lh(Nh.bind(null, b, a), [b, a]), c];\n }\n },\n rh = {\n readContext: sg,\n useCallback: Lh,\n useContext: sg,\n useEffect: Fh,\n useImperativeHandle: Ih,\n useLayoutEffect: Gh,\n useMemo: Mh,\n useReducer: xh,\n useRef: Bh,\n useState: function () {\n return xh(vh);\n },\n useDebugValue: Jh,\n useResponder: ih,\n useDeferredValue: function (a, b) {\n var c = xh(vh),\n d = c[0],\n e = c[1];\n Fh(function () {\n var c = kh.suspense;\n kh.suspense = void 0 === b ? null : b;\n try {\n e(a);\n } finally {\n kh.suspense = c;\n }\n }, [a, b]);\n return d;\n },\n useTransition: function (a) {\n var b = xh(vh),\n c = b[0];\n b = b[1];\n return [Lh(Nh.bind(null, b, a), [b, a]), c];\n }\n },\n Oh = null,\n Ph = null,\n Qh = !1;\nfunction Rh(a, b) {\n var c = Sh(5, null, null, 0);\n c.elementType = \"DELETED\";\n c.type = \"DELETED\";\n c.stateNode = b;\n c.return = a;\n c.effectTag = 8;\n null !== a.lastEffect ? (a.lastEffect.nextEffect = c, a.lastEffect = c) : a.firstEffect = a.lastEffect = c;\n}\nfunction Th(a, b) {\n switch (a.tag) {\n case 5:\n var c = a.type;\n b = 1 !== b.nodeType || c.toLowerCase() !== b.nodeName.toLowerCase() ? null : b;\n return null !== b ? (a.stateNode = b, !0) : !1;\n case 6:\n return b = \"\" === a.pendingProps || 3 !== b.nodeType ? null : b, null !== b ? (a.stateNode = b, !0) : !1;\n case 13:\n return !1;\n default:\n return !1;\n }\n}\nfunction Uh(a) {\n if (Qh) {\n var b = Ph;\n if (b) {\n var c = b;\n if (!Th(a, b)) {\n b = Jd(c.nextSibling);\n if (!b || !Th(a, b)) {\n a.effectTag = a.effectTag & -1025 | 2;\n Qh = !1;\n Oh = a;\n return;\n }\n Rh(Oh, c);\n }\n Oh = a;\n Ph = Jd(b.firstChild);\n } else a.effectTag = a.effectTag & -1025 | 2, Qh = !1, Oh = a;\n }\n}\nfunction Vh(a) {\n for (a = a.return; null !== a && 5 !== a.tag && 3 !== a.tag && 13 !== a.tag;) a = a.return;\n Oh = a;\n}\nfunction Wh(a) {\n if (a !== Oh) return !1;\n if (!Qh) return Vh(a), Qh = !0, !1;\n var b = a.type;\n if (5 !== a.tag || \"head\" !== b && \"body\" !== b && !Gd(b, a.memoizedProps)) for (b = Ph; b;) Rh(a, b), b = Jd(b.nextSibling);\n Vh(a);\n if (13 === a.tag) {\n a = a.memoizedState;\n a = null !== a ? a.dehydrated : null;\n if (!a) throw Error(u(317));\n a: {\n a = a.nextSibling;\n for (b = 0; a;) {\n if (8 === a.nodeType) {\n var c = a.data;\n if (c === Ad) {\n if (0 === b) {\n Ph = Jd(a.nextSibling);\n break a;\n }\n b--;\n } else c !== zd && c !== Cd && c !== Bd || b++;\n }\n a = a.nextSibling;\n }\n Ph = null;\n }\n } else Ph = Oh ? Jd(a.stateNode.nextSibling) : null;\n return !0;\n}\nfunction Xh() {\n Ph = Oh = null;\n Qh = !1;\n}\nvar Yh = Wa.ReactCurrentOwner,\n rg = !1;\nfunction R(a, b, c, d) {\n b.child = null === a ? Yg(b, null, c, d) : Xg(b, a.child, c, d);\n}\nfunction Zh(a, b, c, d, e) {\n c = c.render;\n var f = b.ref;\n qg(b, e);\n d = oh(a, b, c, d, f, e);\n if (null !== a && !rg) return b.updateQueue = a.updateQueue, b.effectTag &= -517, a.expirationTime <= e && (a.expirationTime = 0), $h(a, b, e);\n b.effectTag |= 1;\n R(a, b, d, e);\n return b.child;\n}\nfunction ai(a, b, c, d, e, f) {\n if (null === a) {\n var g = c.type;\n if (\"function\" === typeof g && !bi(g) && void 0 === g.defaultProps && null === c.compare && void 0 === c.defaultProps) return b.tag = 15, b.type = g, ci(a, b, g, d, e, f);\n a = Ug(c.type, null, d, null, b.mode, f);\n a.ref = b.ref;\n a.return = b;\n return b.child = a;\n }\n g = a.child;\n if (e < f && (e = g.memoizedProps, c = c.compare, c = null !== c ? c : bf, c(e, d) && a.ref === b.ref)) return $h(a, b, f);\n b.effectTag |= 1;\n a = Sg(g, d);\n a.ref = b.ref;\n a.return = b;\n return b.child = a;\n}\nfunction ci(a, b, c, d, e, f) {\n return null !== a && bf(a.memoizedProps, d) && a.ref === b.ref && (rg = !1, e < f) ? (b.expirationTime = a.expirationTime, $h(a, b, f)) : di(a, b, c, d, f);\n}\nfunction ei(a, b) {\n var c = b.ref;\n if (null === a && null !== c || null !== a && a.ref !== c) b.effectTag |= 128;\n}\nfunction di(a, b, c, d, e) {\n var f = L(c) ? Bf : J.current;\n f = Cf(b, f);\n qg(b, e);\n c = oh(a, b, c, d, f, e);\n if (null !== a && !rg) return b.updateQueue = a.updateQueue, b.effectTag &= -517, a.expirationTime <= e && (a.expirationTime = 0), $h(a, b, e);\n b.effectTag |= 1;\n R(a, b, c, e);\n return b.child;\n}\nfunction fi(a, b, c, d, e) {\n if (L(c)) {\n var f = !0;\n Gf(b);\n } else f = !1;\n qg(b, e);\n if (null === b.stateNode) null !== a && (a.alternate = null, b.alternate = null, b.effectTag |= 2), Lg(b, c, d), Ng(b, c, d, e), d = !0;else if (null === a) {\n var g = b.stateNode,\n h = b.memoizedProps;\n g.props = h;\n var k = g.context,\n l = c.contextType;\n \"object\" === typeof l && null !== l ? l = sg(l) : (l = L(c) ? Bf : J.current, l = Cf(b, l));\n var m = c.getDerivedStateFromProps,\n p = \"function\" === typeof m || \"function\" === typeof g.getSnapshotBeforeUpdate;\n p || \"function\" !== typeof g.UNSAFE_componentWillReceiveProps && \"function\" !== typeof g.componentWillReceiveProps || (h !== d || k !== l) && Mg(b, g, d, l);\n tg = !1;\n var x = b.memoizedState;\n g.state = x;\n zg(b, d, g, e);\n k = b.memoizedState;\n h !== d || x !== k || K.current || tg ? (\"function\" === typeof m && (Fg(b, c, m, d), k = b.memoizedState), (h = tg || Kg(b, c, h, d, x, k, l)) ? (p || \"function\" !== typeof g.UNSAFE_componentWillMount && \"function\" !== typeof g.componentWillMount || (\"function\" === typeof g.componentWillMount && g.componentWillMount(), \"function\" === typeof g.UNSAFE_componentWillMount && g.UNSAFE_componentWillMount()), \"function\" === typeof g.componentDidMount && (b.effectTag |= 4)) : (\"function\" === typeof g.componentDidMount && (b.effectTag |= 4), b.memoizedProps = d, b.memoizedState = k), g.props = d, g.state = k, g.context = l, d = h) : (\"function\" === typeof g.componentDidMount && (b.effectTag |= 4), d = !1);\n } else g = b.stateNode, vg(a, b), h = b.memoizedProps, g.props = b.type === b.elementType ? h : ig(b.type, h), k = g.context, l = c.contextType, \"object\" === typeof l && null !== l ? l = sg(l) : (l = L(c) ? Bf : J.current, l = Cf(b, l)), m = c.getDerivedStateFromProps, (p = \"function\" === typeof m || \"function\" === typeof g.getSnapshotBeforeUpdate) || \"function\" !== typeof g.UNSAFE_componentWillReceiveProps && \"function\" !== typeof g.componentWillReceiveProps || (h !== d || k !== l) && Mg(b, g, d, l), tg = !1, k = b.memoizedState, g.state = k, zg(b, d, g, e), x = b.memoizedState, h !== d || k !== x || K.current || tg ? (\"function\" === typeof m && (Fg(b, c, m, d), x = b.memoizedState), (m = tg || Kg(b, c, h, d, k, x, l)) ? (p || \"function\" !== typeof g.UNSAFE_componentWillUpdate && \"function\" !== typeof g.componentWillUpdate || (\"function\" === typeof g.componentWillUpdate && g.componentWillUpdate(d, x, l), \"function\" === typeof g.UNSAFE_componentWillUpdate && g.UNSAFE_componentWillUpdate(d, x, l)), \"function\" === typeof g.componentDidUpdate && (b.effectTag |= 4), \"function\" === typeof g.getSnapshotBeforeUpdate && (b.effectTag |= 256)) : (\"function\" !== typeof g.componentDidUpdate || h === a.memoizedProps && k === a.memoizedState || (b.effectTag |= 4), \"function\" !== typeof g.getSnapshotBeforeUpdate || h === a.memoizedProps && k === a.memoizedState || (b.effectTag |= 256), b.memoizedProps = d, b.memoizedState = x), g.props = d, g.state = x, g.context = l, d = m) : (\"function\" !== typeof g.componentDidUpdate || h === a.memoizedProps && k === a.memoizedState || (b.effectTag |= 4), \"function\" !== typeof g.getSnapshotBeforeUpdate || h === a.memoizedProps && k === a.memoizedState || (b.effectTag |= 256), d = !1);\n return gi(a, b, c, d, f, e);\n}\nfunction gi(a, b, c, d, e, f) {\n ei(a, b);\n var g = 0 !== (b.effectTag & 64);\n if (!d && !g) return e && Hf(b, c, !1), $h(a, b, f);\n d = b.stateNode;\n Yh.current = b;\n var h = g && \"function\" !== typeof c.getDerivedStateFromError ? null : d.render();\n b.effectTag |= 1;\n null !== a && g ? (b.child = Xg(b, a.child, null, f), b.child = Xg(b, null, h, f)) : R(a, b, h, f);\n b.memoizedState = d.state;\n e && Hf(b, c, !0);\n return b.child;\n}\nfunction hi(a) {\n var b = a.stateNode;\n b.pendingContext ? Ef(a, b.pendingContext, b.pendingContext !== b.context) : b.context && Ef(a, b.context, !1);\n dh(a, b.containerInfo);\n}\nvar ii = {\n dehydrated: null,\n retryTime: 0\n};\nfunction ji(a, b, c) {\n var d = b.mode,\n e = b.pendingProps,\n f = M.current,\n g = !1,\n h;\n (h = 0 !== (b.effectTag & 64)) || (h = 0 !== (f & 2) && (null === a || null !== a.memoizedState));\n h ? (g = !0, b.effectTag &= -65) : null !== a && null === a.memoizedState || void 0 === e.fallback || !0 === e.unstable_avoidThisFallback || (f |= 1);\n I(M, f & 1);\n if (null === a) {\n void 0 !== e.fallback && Uh(b);\n if (g) {\n g = e.fallback;\n e = Wg(null, d, 0, null);\n e.return = b;\n if (0 === (b.mode & 2)) for (a = null !== b.memoizedState ? b.child.child : b.child, e.child = a; null !== a;) a.return = e, a = a.sibling;\n c = Wg(g, d, c, null);\n c.return = b;\n e.sibling = c;\n b.memoizedState = ii;\n b.child = e;\n return c;\n }\n d = e.children;\n b.memoizedState = null;\n return b.child = Yg(b, null, d, c);\n }\n if (null !== a.memoizedState) {\n a = a.child;\n d = a.sibling;\n if (g) {\n e = e.fallback;\n c = Sg(a, a.pendingProps);\n c.return = b;\n if (0 === (b.mode & 2) && (g = null !== b.memoizedState ? b.child.child : b.child, g !== a.child)) for (c.child = g; null !== g;) g.return = c, g = g.sibling;\n d = Sg(d, e);\n d.return = b;\n c.sibling = d;\n c.childExpirationTime = 0;\n b.memoizedState = ii;\n b.child = c;\n return d;\n }\n c = Xg(b, a.child, e.children, c);\n b.memoizedState = null;\n return b.child = c;\n }\n a = a.child;\n if (g) {\n g = e.fallback;\n e = Wg(null, d, 0, null);\n e.return = b;\n e.child = a;\n null !== a && (a.return = e);\n if (0 === (b.mode & 2)) for (a = null !== b.memoizedState ? b.child.child : b.child, e.child = a; null !== a;) a.return = e, a = a.sibling;\n c = Wg(g, d, c, null);\n c.return = b;\n e.sibling = c;\n c.effectTag |= 2;\n e.childExpirationTime = 0;\n b.memoizedState = ii;\n b.child = e;\n return c;\n }\n b.memoizedState = null;\n return b.child = Xg(b, a, e.children, c);\n}\nfunction ki(a, b) {\n a.expirationTime < b && (a.expirationTime = b);\n var c = a.alternate;\n null !== c && c.expirationTime < b && (c.expirationTime = b);\n pg(a.return, b);\n}\nfunction li(a, b, c, d, e, f) {\n var g = a.memoizedState;\n null === g ? a.memoizedState = {\n isBackwards: b,\n rendering: null,\n renderingStartTime: 0,\n last: d,\n tail: c,\n tailExpiration: 0,\n tailMode: e,\n lastEffect: f\n } : (g.isBackwards = b, g.rendering = null, g.renderingStartTime = 0, g.last = d, g.tail = c, g.tailExpiration = 0, g.tailMode = e, g.lastEffect = f);\n}\nfunction mi(a, b, c) {\n var d = b.pendingProps,\n e = d.revealOrder,\n f = d.tail;\n R(a, b, d.children, c);\n d = M.current;\n if (0 !== (d & 2)) d = d & 1 | 2, b.effectTag |= 64;else {\n if (null !== a && 0 !== (a.effectTag & 64)) a: for (a = b.child; null !== a;) {\n if (13 === a.tag) null !== a.memoizedState && ki(a, c);else if (19 === a.tag) ki(a, c);else if (null !== a.child) {\n a.child.return = a;\n a = a.child;\n continue;\n }\n if (a === b) break a;\n for (; null === a.sibling;) {\n if (null === a.return || a.return === b) break a;\n a = a.return;\n }\n a.sibling.return = a.return;\n a = a.sibling;\n }\n d &= 1;\n }\n I(M, d);\n if (0 === (b.mode & 2)) b.memoizedState = null;else switch (e) {\n case \"forwards\":\n c = b.child;\n for (e = null; null !== c;) a = c.alternate, null !== a && null === hh(a) && (e = c), c = c.sibling;\n c = e;\n null === c ? (e = b.child, b.child = null) : (e = c.sibling, c.sibling = null);\n li(b, !1, e, c, f, b.lastEffect);\n break;\n case \"backwards\":\n c = null;\n e = b.child;\n for (b.child = null; null !== e;) {\n a = e.alternate;\n if (null !== a && null === hh(a)) {\n b.child = e;\n break;\n }\n a = e.sibling;\n e.sibling = c;\n c = e;\n e = a;\n }\n li(b, !0, c, null, f, b.lastEffect);\n break;\n case \"together\":\n li(b, !1, null, null, void 0, b.lastEffect);\n break;\n default:\n b.memoizedState = null;\n }\n return b.child;\n}\nfunction $h(a, b, c) {\n null !== a && (b.dependencies = a.dependencies);\n var d = b.expirationTime;\n 0 !== d && Bg(d);\n if (b.childExpirationTime < c) return null;\n if (null !== a && b.child !== a.child) throw Error(u(153));\n if (null !== b.child) {\n a = b.child;\n c = Sg(a, a.pendingProps);\n b.child = c;\n for (c.return = b; null !== a.sibling;) a = a.sibling, c = c.sibling = Sg(a, a.pendingProps), c.return = b;\n c.sibling = null;\n }\n return b.child;\n}\nvar ni, oi, pi, qi;\nni = function (a, b) {\n for (var c = b.child; null !== c;) {\n if (5 === c.tag || 6 === c.tag) a.appendChild(c.stateNode);else if (4 !== c.tag && null !== c.child) {\n c.child.return = c;\n c = c.child;\n continue;\n }\n if (c === b) break;\n for (; null === c.sibling;) {\n if (null === c.return || c.return === b) return;\n c = c.return;\n }\n c.sibling.return = c.return;\n c = c.sibling;\n }\n};\noi = function () {};\npi = function (a, b, c, d, e) {\n var f = a.memoizedProps;\n if (f !== d) {\n var g = b.stateNode;\n ch($g.current);\n a = null;\n switch (c) {\n case \"input\":\n f = zb(g, f);\n d = zb(g, d);\n a = [];\n break;\n case \"option\":\n f = Gb(g, f);\n d = Gb(g, d);\n a = [];\n break;\n case \"select\":\n f = n({}, f, {\n value: void 0\n });\n d = n({}, d, {\n value: void 0\n });\n a = [];\n break;\n case \"textarea\":\n f = Ib(g, f);\n d = Ib(g, d);\n a = [];\n break;\n default:\n \"function\" !== typeof f.onClick && \"function\" === typeof d.onClick && (g.onclick = sd);\n }\n od(c, d);\n var h, k;\n c = null;\n for (h in f) if (!d.hasOwnProperty(h) && f.hasOwnProperty(h) && null != f[h]) if (\"style\" === h) for (k in g = f[h], g) g.hasOwnProperty(k) && (c || (c = {}), c[k] = \"\");else \"dangerouslySetInnerHTML\" !== h && \"children\" !== h && \"suppressContentEditableWarning\" !== h && \"suppressHydrationWarning\" !== h && \"autoFocus\" !== h && (va.hasOwnProperty(h) ? a || (a = []) : (a = a || []).push(h, null));\n for (h in d) {\n var l = d[h];\n g = null != f ? f[h] : void 0;\n if (d.hasOwnProperty(h) && l !== g && (null != l || null != g)) if (\"style\" === h) {\n if (g) {\n for (k in g) !g.hasOwnProperty(k) || l && l.hasOwnProperty(k) || (c || (c = {}), c[k] = \"\");\n for (k in l) l.hasOwnProperty(k) && g[k] !== l[k] && (c || (c = {}), c[k] = l[k]);\n } else c || (a || (a = []), a.push(h, c)), c = l;\n } else \"dangerouslySetInnerHTML\" === h ? (l = l ? l.__html : void 0, g = g ? g.__html : void 0, null != l && g !== l && (a = a || []).push(h, l)) : \"children\" === h ? g === l || \"string\" !== typeof l && \"number\" !== typeof l || (a = a || []).push(h, \"\" + l) : \"suppressContentEditableWarning\" !== h && \"suppressHydrationWarning\" !== h && (va.hasOwnProperty(h) ? (null != l && rd(e, h), a || g === l || (a = [])) : (a = a || []).push(h, l));\n }\n c && (a = a || []).push(\"style\", c);\n e = a;\n if (b.updateQueue = e) b.effectTag |= 4;\n }\n};\nqi = function (a, b, c, d) {\n c !== d && (b.effectTag |= 4);\n};\nfunction ri(a, b) {\n switch (a.tailMode) {\n case \"hidden\":\n b = a.tail;\n for (var c = null; null !== b;) null !== b.alternate && (c = b), b = b.sibling;\n null === c ? a.tail = null : c.sibling = null;\n break;\n case \"collapsed\":\n c = a.tail;\n for (var d = null; null !== c;) null !== c.alternate && (d = c), c = c.sibling;\n null === d ? b || null === a.tail ? a.tail = null : a.tail.sibling = null : d.sibling = null;\n }\n}\nfunction si(a, b, c) {\n var d = b.pendingProps;\n switch (b.tag) {\n case 2:\n case 16:\n case 15:\n case 0:\n case 11:\n case 7:\n case 8:\n case 12:\n case 9:\n case 14:\n return null;\n case 1:\n return L(b.type) && Df(), null;\n case 3:\n return eh(), H(K), H(J), c = b.stateNode, c.pendingContext && (c.context = c.pendingContext, c.pendingContext = null), null !== a && null !== a.child || !Wh(b) || (b.effectTag |= 4), oi(b), null;\n case 5:\n gh(b);\n c = ch(bh.current);\n var e = b.type;\n if (null !== a && null != b.stateNode) pi(a, b, e, d, c), a.ref !== b.ref && (b.effectTag |= 128);else {\n if (!d) {\n if (null === b.stateNode) throw Error(u(166));\n return null;\n }\n a = ch($g.current);\n if (Wh(b)) {\n d = b.stateNode;\n e = b.type;\n var f = b.memoizedProps;\n d[Md] = b;\n d[Nd] = f;\n switch (e) {\n case \"iframe\":\n case \"object\":\n case \"embed\":\n F(\"load\", d);\n break;\n case \"video\":\n case \"audio\":\n for (a = 0; a < ac.length; a++) F(ac[a], d);\n break;\n case \"source\":\n F(\"error\", d);\n break;\n case \"img\":\n case \"image\":\n case \"link\":\n F(\"error\", d);\n F(\"load\", d);\n break;\n case \"form\":\n F(\"reset\", d);\n F(\"submit\", d);\n break;\n case \"details\":\n F(\"toggle\", d);\n break;\n case \"input\":\n Ab(d, f);\n F(\"invalid\", d);\n rd(c, \"onChange\");\n break;\n case \"select\":\n d._wrapperState = {\n wasMultiple: !!f.multiple\n };\n F(\"invalid\", d);\n rd(c, \"onChange\");\n break;\n case \"textarea\":\n Jb(d, f), F(\"invalid\", d), rd(c, \"onChange\");\n }\n od(e, f);\n a = null;\n for (var g in f) if (f.hasOwnProperty(g)) {\n var h = f[g];\n \"children\" === g ? \"string\" === typeof h ? d.textContent !== h && (a = [\"children\", h]) : \"number\" === typeof h && d.textContent !== \"\" + h && (a = [\"children\", \"\" + h]) : va.hasOwnProperty(g) && null != h && rd(c, g);\n }\n switch (e) {\n case \"input\":\n xb(d);\n Eb(d, f, !0);\n break;\n case \"textarea\":\n xb(d);\n Lb(d);\n break;\n case \"select\":\n case \"option\":\n break;\n default:\n \"function\" === typeof f.onClick && (d.onclick = sd);\n }\n c = a;\n b.updateQueue = c;\n null !== c && (b.effectTag |= 4);\n } else {\n g = 9 === c.nodeType ? c : c.ownerDocument;\n a === qd && (a = Nb(e));\n a === qd ? \"script\" === e ? (a = g.createElement(\"div\"), a.innerHTML = \"