UNPKG

@oxygen-ui-experimental/react-icons

Version:

The SVG icons from primitives exported as React components.

558 lines (548 loc) 45.4 kB
(function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('react')) : typeof define === 'function' && define.amd ? define(['exports', 'react'], factory) : (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["oxygen-icons-react"] = {}, global.React)); })(this, (function (exports, React) { 'use strict'; function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; } var React__default = /*#__PURE__*/_interopDefaultLegacy(React); /** * Copyright (c) 2023, WSO2 LLC. (https://www.wso2.com). All Rights Reserved. * * WSO2 LLC. licenses this file to you under the Apache License, * Version 2.0 (the "License"); you may not use this file except * in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ var sizeMap = { large: 64, medium: 32, small: 16 }; /** * Calculates the closes height from a list of provided heights. * * @param naturalHeights - Set of natural heights. * @param height - Height to check. * @returns Closest natural height. */ var getClosestNaturalHeight = function getClosestNaturalHeight(naturalHeights, height) { return naturalHeights.reduce(function (acc, naturalHeight) { return naturalHeight <= height ? naturalHeight : acc; }, naturalHeights[0]); }; /** * Creates a React component from a `SVG`. * * @param name - Name for the Component. * @param defaultClassName - Default CSS class name. * @param getSVGData - Function to get the SVG data. * @returns A React component created from an SVG. */ var createIconComponent = function createIconComponent(name, defaultClassName, getSVGData) { var svgDataByHeight = getSVGData(); var heights = Object.keys(svgDataByHeight).map(function (height) { return parseInt(height, 10); }); var Icon = function Icon(_ref) { var ariaLabel = _ref['aria-label'], tabIndex = _ref.tabIndex, _ref$className = _ref.className, className = _ref$className === void 0 ? defaultClassName : _ref$className, _ref$fill = _ref.fill, fill = _ref$fill === void 0 ? 'currentColor' : _ref$fill, _ref$size = _ref.size, size = _ref$size === void 0 ? 16 : _ref$size, _ref$verticalAlign = _ref.verticalAlign, verticalAlign = _ref$verticalAlign === void 0 ? 'text-bottom' : _ref$verticalAlign; var height = sizeMap[size] || size; var naturalHeight = getClosestNaturalHeight(heights, height); var naturalWidth = svgDataByHeight[naturalHeight].width; var width = height * (naturalWidth / naturalHeight); var path = svgDataByHeight[naturalHeight].path; return /*#__PURE__*/React__default["default"].createElement("svg", { "aria-hidden": ariaLabel ? 'false' : 'true', tabIndex: tabIndex, focusable: tabIndex !== undefined && tabIndex >= 0 ? 'true' : 'false', "aria-label": ariaLabel, role: "img", className: className, viewBox: "0 0 ".concat(naturalWidth, " ").concat(naturalHeight), width: width, height: height, fill: fill, style: { display: 'inline-block', overflow: 'visible', userSelect: 'none', verticalAlign: verticalAlign } }, path); }; Icon.displayName = name; return Icon; }; /* THIS FILE IS GENERATED. DO NOT EDIT IT. */ var ChevronDownIcon = /*#__PURE__*/createIconComponent("ChevronDownIcon", "oxygen-icon oxygen-icon-chevron-down", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.5 6.5L8 10L11.5 6.5", stroke: "#40404B", strokeWidth: "1.5", strokeLinecap: "round", fill: "" }) } }; }); var ChevronLeftIcon = /*#__PURE__*/createIconComponent("ChevronLeftIcon", "oxygen-icon oxygen-icon-chevron-left", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { d: "M9.75 4.75L6.25 8.25L9.75 11.75", stroke: "#999999", strokeWidth: "1.5", strokeLinecap: "round", fill: "" }) } }; }); var ChevronRightIcon = /*#__PURE__*/createIconComponent("ChevronRightIcon", "oxygen-icon oxygen-icon-chevron-right", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.25 4.75L9.75 8.25L6.25 11.75", stroke: "#333333", strokeWidth: "1.5", strokeLinecap: "round", fill: "" }) } }; }); var ConsoleAltIcon = /*#__PURE__*/createIconComponent("ConsoleAltIcon", "oxygen-icon oxygen-icon-console-alt", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_1480_525)" }, /*#__PURE__*/React__default["default"].createElement("mask", { id: "mask0_1480_525", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "16", height: "16" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 0H0V16H16V0Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("g", { mask: "url(#mask0_1480_525)" }, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.2002 3C3.2002 1.34315 4.54333 0 6.20019 0C7.85705 0 9.20021 1.34315 9.20021 3C9.20021 4.65685 7.85705 6 6.20019 6C4.54333 6 3.2002 4.65685 3.2002 3ZM8.00019 3C8.00019 2.00588 7.1943 1.2 6.20019 1.2C5.20608 1.2 4.40019 2.00588 4.40019 3C4.40019 3.99412 5.20608 4.8 6.20019 4.8C7.1943 4.8 8.00019 3.99412 8.00019 3Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.2 4.79999C8.03234 4.79999 9.67902 5.59486 10.814 6.8586C11.1647 7.2104 10.3993 7.8839 9.1648 6.97344C8.33527 6.36161 7.30987 5.99999 6.2 5.99999C3.49994 5.99999 1.29975 8.14018 1.2033 10.8167L1.2 11V12.6C1.2 13.1178 1.5935 13.5436 2.09776 13.5948L2.2 13.6H4.88889L5.31111 14.8H2.2C1.02997 14.8 0.0732766 13.8867 0.00401503 12.734L0 12.6V11C0 7.57583 2.77583 4.79999 6.2 4.79999Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.5999 6.79999H13.7999C15.015 6.79999 15.9999 7.78497 15.9999 9V13.8C15.9999 15.015 15.015 16 13.7999 16H6.5999C5.38488 16 4.3999 15.015 4.3999 13.8V9C4.3999 7.78497 5.38488 6.79999 6.5999 6.79999ZM13.7999 7.99999H6.5999C6.04762 7.99999 5.5999 8.4477 5.5999 9V13.8C5.5999 14.3523 6.04762 14.8 6.5999 14.8H13.7999C14.3522 14.8 14.7999 14.3523 14.7999 13.8V9C14.7999 8.4477 14.3522 7.99999 13.7999 7.99999ZM8.57567 9.37573C8.80998 9.14142 9.1899 9.14142 9.42421 9.37573C9.63719 9.58871 9.65657 9.92204 9.48226 10.157L9.42421 10.2243L8.24473 11.4032L9.42821 12.6103C9.63915 12.8253 9.65541 13.1588 9.47888 13.392L9.42021 13.4588C9.20519 13.6698 8.87165 13.686 8.63843 13.5095L8.57168 13.4508L6.5554 11.396L8.57567 9.37573ZM10.7311 9.37573C10.9654 9.14142 11.3453 9.14142 11.5796 9.37573L13.5999 11.396L11.5836 13.4508L11.5168 13.5095C11.2836 13.686 10.9501 13.6698 10.7351 13.4588L10.6764 13.392C10.4999 13.1588 10.5161 12.8253 10.7271 12.6103L11.9105 11.4032L10.7311 10.2243L10.673 10.157C10.4987 9.92204 10.5181 9.58871 10.7311 9.37573Z", fill: "" }))), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_1480_525" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "16", height: "16", fill: "white" })))) } }; }); var ConsoleFilledIcon = /*#__PURE__*/createIconComponent("ConsoleFilledIcon", "oxygen-icon oxygen-icon-console-filled", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3 1C1.89543 1 1 1.89543 1 3V7C1 8.10457 1.89543 9 3 9H7C8.10457 9 9 8.10457 9 7V3C9 1.89543 8.10457 1 7 1H3ZM3 11.5H7C7.27614 11.5 7.5 11.7239 7.5 12V15C7.5 15.2761 7.27614 15.5 7 15.5H3C2.72386 15.5 2.5 15.2761 2.5 15V12C2.5 11.7239 2.72386 11.5 3 11.5ZM1 12C1 10.8954 1.89543 10 3 10H7C8.10457 10 9 10.8954 9 12V15C9 16.1046 8.10457 17 7 17H3C1.89543 17 1 16.1046 1 15V12ZM10 10C10 8.89543 10.8954 8 12 8H15C16.1046 8 17 8.89543 17 10V15C17 16.1046 16.1046 17 15 17H12C10.8954 17 10 16.1046 10 15V10ZM12 2.5H15C15.2761 2.5 15.5 2.72386 15.5 3V5C15.5 5.27614 15.2761 5.5 15 5.5H12C11.7239 5.5 11.5 5.27614 11.5 5V3C11.5 2.72386 11.7239 2.5 12 2.5ZM10 3C10 1.89543 10.8954 1 12 1H15C16.1046 1 17 1.89543 17 3V5C17 6.10457 16.1046 7 15 7H12C10.8954 7 10 6.10457 10 5V3Z", fill: "" }) } }; }); var ConsoleUserThickIcon = /*#__PURE__*/createIconComponent("ConsoleUserThickIcon", "oxygen-icon oxygen-icon-console-user-thick", function () { return { "18": { "width": 18, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_2461_18465)" }, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.59998 3.375C3.59998 1.51104 5.11101 0 6.97498 0C8.83894 0 10.35 1.51104 10.35 3.375C10.35 5.23896 8.83894 6.75 6.97498 6.75C5.11101 6.75 3.59998 5.23896 3.59998 3.375ZM8.99998 3.375C8.99998 2.25662 8.09335 1.35 6.97498 1.35C5.8566 1.35 4.94998 2.25662 4.94998 3.375C4.94998 4.49338 5.8566 5.4 6.97498 5.4C8.09335 5.4 8.99998 4.49338 8.99998 3.375Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.975 5.39999C9.03638 5.39999 10.8889 6.29422 12.1658 7.71593C12.5603 8.1117 11.6992 8.86939 10.3104 7.84512C9.37718 7.15681 8.2236 6.74999 6.975 6.74999C3.93743 6.74999 1.46222 9.15771 1.35371 12.1688L1.35 12.375V14.175C1.35 14.7575 1.79269 15.2366 2.35998 15.2942L2.475 15.3H5.5L5.975 16.65H2.475C1.15872 16.65 0.0824362 15.6225 0.00451691 14.3258L0 14.175V12.375C0 8.52281 3.12281 5.39999 6.975 5.39999Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.42495 7.64999H15.525C16.8919 7.64999 18 8.75809 18 10.125V15.525C18 16.8919 16.8919 18 15.525 18H7.42495C6.05805 18 4.94995 16.8919 4.94995 15.525V10.125C4.94995 8.75809 6.05805 7.64999 7.42495 7.64999ZM15.525 8.99999H7.42495C6.80363 8.99999 6.29995 9.50367 6.29995 10.125V15.525C6.29995 16.1463 6.80363 16.65 7.42495 16.65H15.525C16.1463 16.65 16.65 16.1463 16.65 15.525V10.125C16.65 9.50367 16.1463 8.99999 15.525 8.99999ZM9.64769 10.5477C9.91129 10.2841 10.3387 10.2841 10.6023 10.5477C10.8419 10.7873 10.8637 11.1623 10.6676 11.4266L10.6023 11.5023L9.27538 12.8286L10.6068 14.1866C10.8441 14.4285 10.8624 14.8037 10.6638 15.066L10.5978 15.1411C10.3559 15.3785 9.98067 15.3967 9.71829 15.1982L9.6432 15.1321L7.37488 12.8205L9.64769 10.5477ZM12.0725 10.5477C12.3361 10.2841 12.7635 10.2841 13.0271 10.5477L15.2999 12.8205L13.0316 15.1321L12.9565 15.1982C12.6941 15.3967 12.3189 15.3785 12.0771 15.1411L12.011 15.066C11.8124 14.8037 11.8307 14.4285 12.068 14.1866L13.3994 12.8286L12.0725 11.5023L12.0072 11.4266C11.8111 11.1623 11.8329 10.7873 12.0725 10.5477Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_2461_18465" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "18", height: "18", fill: "white" })))) } }; }); var CresentBrightIcon = /*#__PURE__*/createIconComponent("CresentBrightIcon", "oxygen-icon oxygen-icon-cresent-bright", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.5 0.5C8.5 0.223858 8.27614 0 8 0C7.72386 0 7.5 0.223858 7.5 0.5V1.5C7.5 1.77614 7.72386 2 8 2C8.27614 2 8.5 1.77614 8.5 1.5V0.5ZM8.5 14.5C8.5 14.2239 8.27614 14 8 14C7.72386 14 7.5 14.2239 7.5 14.5V15.5C7.5 15.7761 7.72386 16 8 16C8.27614 16 8.5 15.7761 8.5 15.5V14.5ZM1.5 8.5C1.77614 8.5 2 8.27614 2 8C2 7.72386 1.77614 7.5 1.5 7.5H0.5C0.223858 7.5 0 7.72386 0 8C0 8.27614 0.223858 8.5 0.5 8.5H1.5ZM15.5 8.5C15.7761 8.5 16 8.27614 16 8C16 7.72386 15.7761 7.5 15.5 7.5H14.5C14.2239 7.5 14 7.72386 14 8C14 8.27614 14.2239 8.5 14.5 8.5H15.5ZM12.4464 2.83936C12.2512 3.03463 12.2512 3.35121 12.4464 3.54647C12.6417 3.74173 12.9583 3.74173 13.1535 3.54647L13.8606 2.83936C14.0559 2.6441 14.0559 2.32752 13.8606 2.13226C13.6654 1.937 13.3488 1.937 13.1535 2.13226L12.4464 2.83936ZM2.14645 2.86065C1.95118 2.66539 1.95118 2.3488 2.14645 2.15354C2.34171 1.95828 2.65829 1.95828 2.85355 2.15354L3.56066 2.86065C3.75592 3.05591 3.75592 3.37249 3.56066 3.56775C3.3654 3.76302 3.04882 3.76302 2.85355 3.56775L2.14645 2.86065ZM2.14645 13.1394C1.95118 13.3346 1.95118 13.6512 2.14645 13.8465C2.34171 14.0417 2.65829 14.0417 2.85355 13.8465L3.56066 13.1394C3.75592 12.9441 3.75592 12.6275 3.56066 12.4322C3.3654 12.237 3.04882 12.237 2.85355 12.4322L2.14645 13.1394ZM12.4464 13.1606C12.2512 12.9654 12.2512 12.6488 12.4464 12.4535C12.6417 12.2583 12.9583 12.2583 13.1535 12.4535L13.8606 13.1606C14.0559 13.3559 14.0559 13.6725 13.8606 13.8677C13.6654 14.063 13.3488 14.063 13.1535 13.8677L12.4464 13.1606ZM6.14708 3.35455C4.303 4.09075 3 5.8932 3 7.99998C3 10.7614 5.23858 13 8 13C10.6789 13 12.8657 10.8933 12.994 8.2462C12.998 8.16463 13 8.08254 13 7.99999C13 7.67166 12.9684 7.35072 12.9079 7.04005C12.2805 7.63501 11.4329 7.99999 10.5 7.99999C8.567 7.99999 7 6.43299 7 4.49999C7 3.98143 7.11277 3.48921 7.31514 3.04651C6.90813 3.10226 6.51674 3.20699 6.14708 3.35457C6.14708 3.35456 6.14708 3.35456 6.14708 3.35455ZM6.00013 4.53503C4.80446 5.22663 4 6.51936 4 7.99998C4 10.2091 5.79086 12 8 12C9.94598 12 11.5674 10.6104 11.9261 8.76934C11.478 8.91895 10.9984 8.99999 10.5 8.99999C8.02641 8.99999 6.01896 7.00418 6.00013 4.53503Z", fill: "" }) } }; }); var DoubleCircleIcon = /*#__PURE__*/createIconComponent("DoubleCircleIcon", "oxygen-icon oxygen-icon-double-circle", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 0C3.58172 0 0 3.58172 0 8C0 12.4183 3.58172 16 8 16C12.4183 16 16 12.4183 16 8C16 3.58172 12.4183 0 8 0ZM8 1C11.866 1 15 4.13401 15 8C15 11.866 11.866 15 8 15C4.13401 15 1 11.866 1 8C1 4.13401 4.13401 1 8 1ZM8 5.5C6.61929 5.5 5.5 6.61929 5.5 8C5.5 9.38071 6.61929 10.5 8 10.5C9.38071 10.5 10.5 9.38071 10.5 8C10.5 6.61929 9.38071 5.5 8 5.5ZM8 6.5C8.82843 6.5 9.5 7.17157 9.5 8C9.5 8.82843 8.82843 9.5 8 9.5C7.17157 9.5 6.5 8.82843 6.5 8C6.5 7.17157 7.17157 6.5 8 6.5Z", fill: "" }) } }; }); var EclipseIcon = /*#__PURE__*/createIconComponent("EclipseIcon", "oxygen-icon oxygen-icon-eclipse", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5 0.5C8.5 0.223858 8.27614 0 8 0C7.72386 0 7.5 0.223858 7.5 0.5V1.5C7.5 1.77614 7.72386 2 8 2C8.27614 2 8.5 1.77614 8.5 1.5V0.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5 14.5C8.5 14.2239 8.27614 14 8 14C7.72386 14 7.5 14.2239 7.5 14.5V15.5C7.5 15.7761 7.72386 16 8 16C8.27614 16 8.5 15.7761 8.5 15.5V14.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 8C2 8.27614 1.77614 8.5 1.5 8.5H0.5C0.223858 8.5 0 8.27614 0 8C0 7.72386 0.223858 7.5 0.5 7.5H1.5C1.77614 7.5 2 7.72386 2 8Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.5 8.5C15.7761 8.5 16 8.27614 16 8C16 7.72386 15.7761 7.5 15.5 7.5H14.5C14.2239 7.5 14 7.72386 14 8C14 8.27614 14.2239 8.5 14.5 8.5H15.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4464 3.54647C12.2512 3.35121 12.2512 3.03463 12.4464 2.83936L13.1535 2.13226C13.3488 1.937 13.6654 1.937 13.8606 2.13226C14.0559 2.32752 14.0559 2.6441 13.8606 2.83936L13.1535 3.54647C12.9583 3.74173 12.6417 3.74173 12.4464 3.54647Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.14645 2.86065C1.95118 2.66539 1.95118 2.3488 2.14645 2.15354C2.34171 1.95828 2.65829 1.95828 2.85355 2.15354L3.56066 2.86065C3.75592 3.05591 3.75592 3.37249 3.56066 3.56775C3.3654 3.76302 3.04882 3.76302 2.85355 3.56775L2.14645 2.86065Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.14645 13.8465C1.95118 13.6512 1.95118 13.3346 2.14645 13.1394L2.85355 12.4322C3.04882 12.237 3.3654 12.237 3.56066 12.4322C3.75592 12.6275 3.75592 12.9441 3.56066 13.1394L2.85355 13.8465C2.65829 14.0417 2.34171 14.0417 2.14645 13.8465Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4464 13.1606C12.2512 12.9654 12.2512 12.6488 12.4464 12.4535C12.6417 12.2583 12.9583 12.2583 13.1535 12.4535L13.8606 13.1606C14.0559 13.3559 14.0559 13.6725 13.8606 13.8677C13.6654 14.063 13.3488 14.063 13.1535 13.8677L12.4464 13.1606Z", fill: "" })) } }; }); var HamburgerIcon = /*#__PURE__*/createIconComponent("HamburgerIcon", "oxygen-icon oxygen-icon-hamburger", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M2 2.44444C2 2.19899 2.19899 2 2.44444 2H13.5556C13.801 2 14 2.19899 14 2.44444V2.55556C14 2.80101 13.801 3 13.5556 3H2.44444C2.19899 3 2 2.80101 2 2.55556V2.44444ZM2 7.94444C2 7.69899 2.19899 7.5 2.44444 7.5H13.5556C13.801 7.5 14 7.69899 14 7.94444V8.05556C14 8.30101 13.801 8.5 13.5556 8.5H2.44444C2.19899 8.5 2 8.30101 2 8.05556V7.94444ZM2.44444 13C2.19899 13 2 13.199 2 13.4444V13.5556C2 13.801 2.19899 14 2.44444 14H8.01709C8.26255 14 8.46154 13.801 8.46154 13.5556V13.4444C8.46154 13.199 8.26255 13 8.01709 13H2.44444Z", fill: "" }) } }; }); var HomeFilledIcon = /*#__PURE__*/createIconComponent("HomeFilledIcon", "oxygen-icon oxygen-icon-home-filled", function () { return { "18": { "width": 18, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_358_2197)" }, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M9.00001 0.092453L17.6723 5.00147C18.0146 5.2347 18.103 5.70127 17.8698 6.04358C17.6578 6.35477 17.2529 6.45613 16.9239 6.29676L16.8277 6.24107L16.2499 5.92145L16.25 15.25C16.25 16.7125 15.1083 17.9084 13.6675 17.995L13.5 18H4.50001C3.03748 18 1.84161 16.8583 1.75503 15.4175L1.75001 15.25L1.74994 5.92045L1.17232 6.24107C0.861135 6.4531 0.447251 6.39931 0.199337 6.13059L0.130211 6.04358C-0.081822 5.73239 -0.028024 5.31851 0.24069 5.0706L0.327701 5.00147L9.00001 0.092453Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_358_2197" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "18", height: "18", fill: "white" })))) } }; }); var HomeOutlinedIcon = /*#__PURE__*/createIconComponent("HomeOutlinedIcon", "oxygen-icon oxygen-icon-home-outlined", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_1480_549)" }, /*#__PURE__*/React__default["default"].createElement("mask", { id: "mask0_1480_549", maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "16", height: "16" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M16 0H0V16H16V0Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("g", { mask: "url(#mask0_1480_549)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.00006 0.0821533L15.7088 4.44572C16.0131 4.65304 16.0917 5.06777 15.8844 5.37205C15.6958 5.64865 15.3359 5.73876 15.0435 5.59709L14.958 5.5476L14.4445 5.26349L14.4446 13.5555C14.4446 14.8555 13.4296 15.9186 12.149 15.9955L12.0001 16H4.00006C2.70004 16 1.63704 14.9851 1.56008 13.7044L1.55562 13.5555L1.55556 5.2626L1.04212 5.5476C0.765508 5.73607 0.397611 5.68824 0.177243 5.44939L0.115797 5.37205C-0.0726764 5.09544 -0.024856 4.72753 0.214001 4.50717L0.291344 4.44572L8.00006 0.0821533ZM8.00006 1.69509L2.88889 4.52482L2.88895 13.5555C2.88895 14.1308 3.32618 14.604 3.88646 14.6609L4.00006 14.6667H12.0001C12.5754 14.6667 13.0486 14.2294 13.1054 13.6691L13.1112 13.5555L13.1111 4.52482L8.00006 1.69509ZM10.5378 6.53184C10.7982 6.79219 10.7982 7.2143 10.5378 7.47465C10.2774 7.735 9.85531 7.735 9.59495 7.47465C8.81394 6.6936 7.54761 6.6936 6.76656 7.47465C5.98551 8.2557 5.98551 9.52203 6.76656 10.3031C7.54761 11.0842 8.81394 11.0842 9.59495 10.3031C9.85531 10.0427 10.2774 10.0427 10.5378 10.3031C10.7982 10.5635 10.7982 10.9855 10.5378 11.2459C9.23602 12.5476 7.1255 12.5476 5.82375 11.2459C4.52201 9.94416 4.52201 7.83359 5.82375 6.53184C7.1255 5.23009 9.23602 5.23009 10.5378 6.53184Z", fill: "" }))), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_1480_549" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "16", height: "16", fill: "white" })))) } }; }); var LanguagesIcon = /*#__PURE__*/createIconComponent("LanguagesIcon", "oxygen-icon oxygen-icon-languages", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.00013 0C5.27627 0 5.50013 0.223858 5.50013 0.5V1H7.49497H7.50425H9.50013C9.77627 1 10.0001 1.22386 10.0001 1.5C10.0001 1.77614 9.77627 2 9.50013 2H7.95538C7.78802 3.45848 7.25446 5.67729 5.84346 7.75992C6.08727 7.87233 6.33942 7.95796 6.59818 8.00971C6.86896 8.06387 7.04457 8.32728 6.99042 8.59806C6.93626 8.86884 6.67285 9.04445 6.40207 8.99029C5.98941 8.90776 5.60002 8.7629 5.23676 8.57659C4.16654 9.8924 2.69966 11.1013 0.697086 11.9596C0.443271 12.0684 0.149332 11.9508 0.040554 11.697C-0.0682238 11.4431 0.049352 11.1492 0.303167 11.0404C2.08777 10.2756 3.40928 9.20581 4.38402 8.03603C4.09136 7.81409 3.82291 7.57176 3.5809 7.32535C2.85391 6.58514 2.32435 5.76648 2.05291 5.22361C1.92942 4.97662 2.02953 4.67628 2.27652 4.55279C2.52351 4.42929 2.82385 4.5294 2.94734 4.77639C3.17591 5.23352 3.64635 5.96486 4.29435 6.62465C4.51082 6.84505 4.74258 7.0529 4.98725 7.23852C6.27043 5.36652 6.77852 3.36369 6.9485 2H5.00013H0.500127C0.223984 2 0.000126539 1.77614 0.000126539 1.5C0.000126539 1.22386 0.223984 1 0.500127 1H4.50013V0.5C4.50013 0.223858 4.72398 0 5.00013 0ZM7.09126 15.2811C6.96968 15.5291 7.07216 15.8286 7.32014 15.9502C7.56807 16.0718 7.86763 15.9693 7.98915 15.7214L9.44795 12.7458C9.47188 12.7493 9.49629 12.7511 9.52119 12.7511H13.5212C13.546 12.7511 13.5704 12.7493 13.5943 12.7458L15.0531 15.7214C15.1746 15.9693 15.4741 16.0718 15.7221 15.9502C15.97 15.8286 16.0725 15.5291 15.9509 15.2811L11.9892 7.2C11.8994 7.01684 11.7127 6.91308 11.5213 6.92034C11.3298 6.91308 11.1428 7.01684 11.053 7.2L7.09126 15.2811ZM13.1066 11.7511H9.93556L11.5211 8.51696L13.1066 11.7511Z", fill: "" }) } }; }); var LockIcon = /*#__PURE__*/createIconComponent("LockIcon", "oxygen-icon oxygen-icon-lock", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.00022 0.222229C9.78182 0.222229 11.2369 1.61988 11.3289 3.37853L11.3336 3.55556V5.55556H12.4447C13.7447 5.55556 14.8077 6.57041 14.8847 7.8511L14.8891 8.00001V13.3333C14.8891 14.6834 13.7947 15.7778 12.4447 15.7778H3.55577C2.20575 15.7778 1.11133 14.6834 1.11133 13.3333V8.00001C1.11133 6.64998 2.20575 5.55556 3.55577 5.55556H4.66688V3.55556C4.66688 1.71461 6.15927 0.222229 8.00022 0.222229ZM12.4447 6.8889H3.55577C2.94212 6.8889 2.44466 7.38635 2.44466 8.00001V13.3333C2.44466 13.947 2.94212 14.4445 3.55577 14.4445H12.4447C13.0584 14.4445 13.5558 13.947 13.5558 13.3333V8.00001C13.5558 7.38635 13.0584 6.8889 12.4447 6.8889ZM8.00022 7.77778C8.33773 7.77778 8.61665 8.02858 8.66079 8.35399L8.66688 8.44445L8.66711 9.22498C9.44377 9.49965 10.0002 10.2404 10.0002 11.1111C10.0002 12.2157 9.10475 13.1111 8.00022 13.1111C6.89565 13.1111 6.00022 12.2157 6.00022 11.1111C6.00022 10.2401 6.55708 9.49903 7.33423 9.22472L7.33355 8.44445C7.33355 8.07626 7.63203 7.77778 8.00022 7.77778ZM8.00022 10.4445C7.63203 10.4445 7.33355 10.7429 7.33355 11.1111C7.33355 11.4793 7.63203 11.7778 8.00022 11.7778C8.3684 11.7778 8.66688 11.4793 8.66688 11.1111C8.66688 10.7429 8.3684 10.4445 8.00022 10.4445ZM8.00022 1.55556C6.94167 1.55556 6.0752 2.37793 6.00483 3.41863L6.00022 3.55556V5.55556H10.0002V3.55556C10.0002 2.45099 9.10475 1.55556 8.00022 1.55556Z", fill: "" }) } }; }); var LogsIcon = /*#__PURE__*/createIconComponent("LogsIcon", "oxygen-icon oxygen-icon-logs", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M4.75 3L0.75 8L4.75 13", stroke: "#40404B", strokeLinecap: "round", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.5 6.5H9.5", stroke: "#40404B", strokeLinecap: "round", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M6.5 9.5H9.5", stroke: "#40404B", strokeLinecap: "round", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M11.25 13L15.25 8L11.25 3", stroke: "#40404B", strokeLinecap: "round", fill: "" })) } }; }); var PowerIcon = /*#__PURE__*/createIconComponent("PowerIcon", "oxygen-icon oxygen-icon-power", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_1480_555)" }, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.6678 0.666667C8.6678 0.298476 8.36932 0 8.00113 0C7.63294 0 7.33446 0.298476 7.33446 0.666667V6.16683C7.33446 6.53501 7.63294 6.83349 8.00113 6.83349C8.36932 6.83349 8.6678 6.53501 8.6678 6.16683V0.666667ZM3.28602 12.7142C0.682438 10.1106 0.682438 5.88938 3.28602 3.2858C3.54636 3.02545 3.54636 2.60334 3.28602 2.34299C3.02567 2.08264 2.60356 2.08264 2.34321 2.34299C-0.781069 5.46727 -0.781069 10.5327 2.34321 13.657C5.46748 16.7812 10.533 16.7812 13.6572 13.657C16.7815 10.5327 16.7815 5.46726 13.6572 2.34299C13.3969 2.08264 12.9748 2.08264 12.7144 2.34299C12.454 2.60334 12.454 3.02545 12.7144 3.2858C15.318 5.88938 15.318 10.1106 12.7144 12.7142C10.1108 15.3178 5.8896 15.3178 3.28602 12.7142Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_1480_555" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "16", height: "16", fill: "white" })))) } }; }); var PreferencesIcon = /*#__PURE__*/createIconComponent("PreferencesIcon", "oxygen-icon oxygen-icon-preferences", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("g", { clipPath: "url(#clip0_1480_541)" }, /*#__PURE__*/React__default["default"].createElement("path", { d: "M7.9999 1.89655e-05C8.34773 1.89655e-05 8.63511 0.258464 8.68059 0.593779L8.68688 0.686999L8.68715 1.6053C9.36225 1.67707 10.0061 1.85337 10.6023 2.11769L11.0614 1.32327C11.2511 0.994686 11.6713 0.88211 11.9999 1.07181C12.3011 1.24571 12.4208 1.61324 12.2925 1.92638L12.2514 2.01025L11.7919 2.80638C12.3277 3.19861 12.8005 3.67182 13.1923 4.20801L13.9897 3.74856C14.3183 3.55886 14.7384 3.67143 14.9281 4.00001C15.102 4.30121 15.0219 4.67935 14.7543 4.8864L14.6766 4.93844L13.8802 5.39859C14.1437 5.99456 14.3194 6.63811 14.3907 7.3128L15.3129 7.31303C15.6923 7.31303 15.9999 7.6206 15.9999 8.00001C15.9999 8.34779 15.7415 8.63523 15.4062 8.68071L15.3129 8.68698L14.3898 8.68634C14.3177 9.36078 14.1413 10.0041 13.877 10.5997L14.6766 11.0616C15.0052 11.2513 15.1178 11.6714 14.9281 12C14.7542 12.3012 14.3867 12.4209 14.0735 12.2926L13.9897 12.2514L13.1878 11.7892C12.7961 12.3241 12.3236 12.7961 11.7883 13.1873L12.2514 13.9898C12.4411 14.3184 12.3285 14.7385 11.9999 14.9282C11.6987 15.1021 11.3205 15.022 11.1135 14.7543L11.0614 14.6768L10.5986 13.875C10.0035 14.1385 9.36083 14.3142 8.68715 14.3858L8.68688 15.313C8.68688 15.6924 8.37929 16 7.9999 16C7.65215 16 7.36469 15.7415 7.31921 15.4062L7.31292 15.313L7.31354 14.3859C6.6395 14.3144 5.99657 14.1386 5.40116 13.875L4.93834 14.6768C4.74864 15.0054 4.32849 15.1179 3.99991 14.9282C3.69871 14.7543 3.57901 14.3867 3.70728 14.0736L3.74845 13.9898L4.21146 13.1873C3.67593 12.7959 3.20323 12.3236 2.81135 11.7884L2.01014 12.2514C1.68155 12.4411 1.26141 12.3285 1.0717 12C0.897802 11.6988 0.977908 11.3207 1.24556 11.1136L1.32315 11.0616L2.12281 10.5997C1.8585 10.0041 1.68208 9.36078 1.61 8.68634L0.686885 8.68698C0.307477 8.68698 -9.5526e-05 8.37941 -9.5526e-05 8.00001C-9.5526e-05 7.65222 0.258351 7.36478 0.593669 7.31929L0.686885 7.31303L1.60915 7.3128C1.6804 6.63811 1.85605 5.99456 2.11964 5.39859L1.32315 4.93844C0.994573 4.74874 0.881997 4.32859 1.0717 4.00001C1.22821 3.72894 1.54156 3.60487 1.83094 3.67627L1.92627 3.70738L2.01014 3.74856L2.80686 4.20889C3.19876 3.67234 3.67181 3.19882 4.20795 2.80638L3.74845 2.01025C3.55875 1.68167 3.67133 1.26152 3.99991 1.07181C4.30111 0.897918 4.67925 0.978022 4.8863 1.24567L4.93834 1.32327L5.39664 2.11809C5.99338 1.85342 6.63782 1.67695 7.31354 1.60521L7.31292 0.686999C7.31292 0.30759 7.62051 1.89655e-05 7.9999 1.89655e-05ZM7.9999 2.89863C5.18494 2.89863 2.90295 5.18061 2.90295 7.99557C2.90295 10.8105 5.18494 13.0925 7.9999 13.0925C10.8148 13.0925 13.0969 10.8105 13.0969 7.99557C13.0969 5.18061 10.8148 2.89863 7.9999 2.89863ZM7.9999 5.55791C9.34621 5.55791 10.4376 6.64929 10.4376 7.99557C10.4376 9.3419 9.34621 10.4333 7.9999 10.4333C6.65359 10.4333 5.56223 9.3419 5.56223 7.99557C5.56223 6.64929 6.65359 5.55791 7.9999 5.55791ZM7.9999 6.88754C7.388 6.88754 6.89187 7.38362 6.89187 7.99557C6.89187 8.60753 7.388 9.10363 7.9999 9.10363C8.61189 9.10363 9.10793 8.60753 9.10793 7.99557C9.10793 7.38362 8.61189 6.88754 7.9999 6.88754Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("defs", null, /*#__PURE__*/React__default["default"].createElement("clipPath", { id: "clip0_1480_541" }, /*#__PURE__*/React__default["default"].createElement("rect", { width: "16", height: "16", fill: "white" })))) } }; }); var SunIcon = /*#__PURE__*/createIconComponent("SunIcon", "oxygen-icon oxygen-icon-sun", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8 0C8.27614 0 8.5 0.223858 8.5 0.5V1.5C8.5 1.77614 8.27614 2 8 2C7.72386 2 7.5 1.77614 7.5 1.5V0.5C7.5 0.223858 7.72386 0 8 0ZM8 14C8.27614 14 8.5 14.2239 8.5 14.5V15.5C8.5 15.7761 8.27614 16 8 16C7.72386 16 7.5 15.7761 7.5 15.5V14.5C7.5 14.2239 7.72386 14 8 14ZM2 8C2 8.27614 1.77614 8.5 1.5 8.5H0.5C0.223858 8.5 0 8.27614 0 8C0 7.72386 0.223858 7.5 0.5 7.5H1.5C1.77614 7.5 2 7.72386 2 8ZM16 8C16 8.27614 15.7761 8.5 15.5 8.5H14.5C14.2239 8.5 14 8.27614 14 8C14 7.72386 14.2239 7.5 14.5 7.5H15.5C15.7761 7.5 16 7.72386 16 8ZM12.4464 3.54647C12.2512 3.35121 12.2512 3.03463 12.4464 2.83936L13.1535 2.13226C13.3488 1.937 13.6654 1.937 13.8606 2.13226C14.0559 2.32752 14.0559 2.6441 13.8606 2.83936L13.1535 3.54647C12.9583 3.74173 12.6417 3.74173 12.4464 3.54647ZM2.14645 2.15354C1.95118 2.3488 1.95118 2.66539 2.14645 2.86065L2.85355 3.56775C3.04882 3.76302 3.3654 3.76302 3.56066 3.56775C3.75592 3.37249 3.75592 3.05591 3.56066 2.86065L2.85355 2.15354C2.65829 1.95828 2.34171 1.95828 2.14645 2.15354ZM2.14645 13.8465C1.95118 13.6512 1.95118 13.3346 2.14645 13.1394L2.85355 12.4322C3.04882 12.237 3.3654 12.237 3.56066 12.4322C3.75592 12.6275 3.75592 12.9441 3.56066 13.1394L2.85355 13.8465C2.65829 14.0417 2.34171 14.0417 2.14645 13.8465ZM12.4464 12.4535C12.2512 12.6488 12.2512 12.9654 12.4464 13.1606L13.1535 13.8677C13.3488 14.063 13.6654 14.063 13.8606 13.8677C14.0559 13.6725 14.0559 13.3559 13.8606 13.1606L13.1535 12.4535C12.9583 12.2583 12.6417 12.2583 12.4464 12.4535ZM12 8C12 10.2091 10.2091 12 8 12C5.79086 12 4 10.2091 4 8C4 5.79086 5.79086 4 8 4C10.2091 4 12 5.79086 12 8ZM13 8C13 10.7614 10.7614 13 8 13C5.23858 13 3 10.7614 3 8C3 5.23858 5.23858 3 8 3C10.7614 3 13 5.23858 13 8Z", fill: "" }) } }; }); var SunContrastIcon = /*#__PURE__*/createIconComponent("SunContrastIcon", "oxygen-icon oxygen-icon-sun-contrast", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5 0.5C8.5 0.223858 8.27614 0 8 0C7.72386 0 7.5 0.223858 7.5 0.5V1.5C7.5 1.77614 7.72386 2 8 2C8.27614 2 8.5 1.77614 8.5 1.5V0.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M8.5 14.5C8.5 14.2239 8.27614 14 8 14C7.72386 14 7.5 14.2239 7.5 14.5V15.5C7.5 15.7761 7.72386 16 8 16C8.27614 16 8.5 15.7761 8.5 15.5V14.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2 8C2 8.27614 1.77614 8.5 1.5 8.5H0.5C0.223858 8.5 0 8.27614 0 8C0 7.72386 0.223858 7.5 0.5 7.5H1.5C1.77614 7.5 2 7.72386 2 8Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M15.5 8.5C15.7761 8.5 16 8.27614 16 8C16 7.72386 15.7761 7.5 15.5 7.5H14.5C14.2239 7.5 14 7.72386 14 8C14 8.27614 14.2239 8.5 14.5 8.5H15.5Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4464 3.54647C12.2512 3.35121 12.2512 3.03463 12.4464 2.83936L13.1535 2.13226C13.3488 1.937 13.6654 1.937 13.8606 2.13226C14.0559 2.32752 14.0559 2.6441 13.8606 2.83936L13.1535 3.54647C12.9583 3.74173 12.6417 3.74173 12.4464 3.54647Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.14645 2.86065C1.95118 2.66539 1.95118 2.3488 2.14645 2.15354C2.34171 1.95828 2.65829 1.95828 2.85355 2.15354L3.56066 2.86065C3.75592 3.05591 3.75592 3.37249 3.56066 3.56775C3.3654 3.76302 3.04882 3.76302 2.85355 3.56775L2.14645 2.86065Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M2.14645 13.8465C1.95118 13.6512 1.95118 13.3346 2.14645 13.1394L2.85355 12.4322C3.04882 12.237 3.3654 12.237 3.56066 12.4322C3.75592 12.6275 3.75592 12.9441 3.56066 13.1394L2.85355 13.8465C2.65829 14.0417 2.34171 14.0417 2.14645 13.8465Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { d: "M12.4464 13.1606C12.2512 12.9654 12.2512 12.6488 12.4464 12.4535C12.6417 12.2583 12.9583 12.2583 13.1535 12.4535L13.8606 13.1606C14.0559 13.3559 14.0559 13.6725 13.8606 13.8677C13.6654 14.063 13.3488 14.063 13.1535 13.8677L12.4464 13.1606Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4 8C4 5.96019 5.52684 4.277 7.5 4.03095V11.9691C5.52684 11.723 4 10.0398 4 8ZM13 8C13 5.23858 10.7614 3 8 3C5.23858 3 3 5.23858 3 8C3 10.7614 5.23858 13 8 13C10.7614 13 13 10.7614 13 8ZM8.5 8.5H11.9691C11.9209 8.88649 11.8175 9.25585 11.6672 9.59998H8.5V8.5ZM8.5 10.6V11.9691C9.51298 11.8427 10.4083 11.3376 11.0399 10.6H8.5ZM11.6218 6.29999C11.7968 6.6722 11.9162 7.07579 11.9691 7.5H8.5V6.29999H11.6218ZM10.9513 5.29999C10.3259 4.61681 9.46651 4.15147 8.5 4.03095V5.29999H10.9513Z", fill: "" })) } }; }); var VisibilityIcon = /*#__PURE__*/createIconComponent("VisibilityIcon", "oxygen-icon oxygen-icon-visibility", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement(React__default["default"].Fragment, null, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.99969 2C5.38552 2 2.88413 3.04002 0.456376 7.21515L0 8L0.456376 8.78485L0.677111 9.15847C3.03624 13.0871 5.46521 14 7.99969 14C10.6138 14 13.1152 12.96 15.543 8.78485L16 7.99892L15.3234 6.84341C12.9631 2.91293 10.5342 2 7.99969 2ZM8.21026 3.09654C10.3162 3.20912 12.4309 3.92049 14.5603 7.46652L14.8724 8.00109L14.7751 8.16996C12.503 12.0775 10.2462 12.9091 7.99969 12.9091C5.82409 12.9091 3.63943 12.1977 1.43904 8.53348L1.12513 7.99891L1.22426 7.83004C3.49642 3.9225 5.75314 3.09091 7.99969 3.09091L8.21026 3.09654ZM8 5C9.65685 5 11 6.34315 11 8C11 9.65685 9.65685 11 8 11C6.34315 11 5 9.65685 5 8C5 6.34315 6.34315 5 8 5ZM8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6Z", fill: "" }), /*#__PURE__*/React__default["default"].createElement("mask", { id: "mask0_421_1547", maskUnits: "userSpaceOnUse", x: "0", y: "2", width: "16", height: "12" }, /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M7.99969 2C5.38552 2 2.88413 3.04002 0.456376 7.21515L0 8L0.456376 8.78485L0.677111 9.15847C3.03624 13.0871 5.46521 14 7.99969 14C10.6138 14 13.1152 12.96 15.543 8.78485L16 7.99892L15.3234 6.84341C12.9631 2.91293 10.5342 2 7.99969 2ZM8.21026 3.09654C10.3162 3.20912 12.4309 3.92049 14.5603 7.46652L14.8724 8.00109L14.7751 8.16996C12.503 12.0775 10.2462 12.9091 7.99969 12.9091C5.82409 12.9091 3.63943 12.1977 1.43904 8.53348L1.12513 7.99891L1.22426 7.83004C3.49642 3.9225 5.75314 3.09091 7.99969 3.09091L8.21026 3.09654ZM8 5C9.65685 5 11 6.34315 11 8C11 9.65685 9.65685 11 8 11C6.34315 11 5 9.65685 5 8C5 6.34315 6.34315 5 8 5ZM8 6C6.89543 6 6 6.89543 6 8C6 9.10457 6.89543 10 8 10C9.10457 10 10 9.10457 10 8C10 6.89543 9.10457 6 8 6Z", fill: "" })), /*#__PURE__*/React__default["default"].createElement("g", { mask: "url(#mask0_421_1547)" })) } }; }); var VisibilityOffIcon = /*#__PURE__*/createIconComponent("VisibilityOffIcon", "oxygen-icon oxygen-icon-visibility-off", function () { return { "16": { "width": 16, "path": /*#__PURE__*/React__default["default"].createElement("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M1.14645 1.14645C1.32001 0.97288 1.58944 0.953595 1.78431 1.08859L1.85355 1.14645L3.91036 3.20325L4.67167 3.96457L6.26173 5.55463L6.98402 6.27691L9.72309 9.01598L10.4454 9.73827L12.1536 11.4465L12.8849 12.1778L14.8536 14.1464C15.0488 14.3417 15.0488 14.6583 14.8536 14.8536C14.68 15.0271 14.4106 15.0464 14.2157 14.9114L14.1464 14.8536L12.0894 12.7965L12.0894 12.7965C11.7922 12.9986 11.4938 13.1704 11.1939 13.3153L11.194 13.3153C10.1467 13.8214 9.08288 14 7.99969 14C6.09654 14 4.25288 13.4852 2.45361 11.5654C1.85674 10.9285 1.26476 10.1371 0.677111 9.15847C0.67711 9.15847 0.677113 9.15846 0.677111 9.15846L0.456376 8.78485V8.78484L0 8V7.99999L0.456376 7.21515V7.21514C1.33232 5.70874 2.21785 4.61046 3.1148 3.82191L1.14645 1.85355C0.951184 1.65829 0.951184 1.34171 1.14645 1.14645ZM3.84608 4.55319C3.60264 4.75444 3.35904 4.9813 3.11528 5.2366L3.11529 5.23661C2.48606 5.89561 1.85576 6.74402 1.22426 7.83004L1.12513 7.9989V7.99891L1.43904 8.53346C1.53581 8.69463 1.63256 8.85008 1.72928 9.00001C2.18232 9.70229 2.6347 10.2834 3.08649 10.763C4.73119 12.5089 6.36799 12.9091 7.99969 12.9091C9.10647 12.9091 10.2157 12.7072 11.3281 12.0352L9.73827 10.4454L9.73826 10.4454C9.45126 10.6497 9.12675 10.8049 8.77706 10.8984L8.77706 10.8984C8.52922 10.9647 8.26874 11 8 11C7.09699 11 6.28716 10.601 5.73718 9.96974C5.27804 9.44274 5 8.75384 5 7.99999C5 7.73126 5.03534 7.47078 5.10161 7.22294C5.19513 6.87325 5.35024 6.54873 5.55462 6.26173L3.84609 4.5532L3.84608 4.55319ZM6.27691 6.98401C6.10096 7.28177 6 7.62909 6 7.99999C6 8.04203 6.0013 8.08377 6.00385 8.12517C6.01161 8.25078 6.03096 8.37325 6.06085 8.49153C6.27991 9.35843 7.06504 9.99999 8 9.99999C8.3709 9.99999 8.71822 9.89903 9.01598 9.72308L6.27691 6.98402L6.27691 6.98401ZM13.6002 11.4788L12.8844 10.7631C13.5135 10.1041 14.1437 9.2558 14.7751 8.16996L14.8724 8.00109L14.5603 7.46652C12.4309 3.92049 10.3162 3.20912 8.21026 3.09654L7.99969 3.09091C7.20792 3.09091 6.41489 3.1942 5.62036 3.49904L4.80584 2.68452C5.85296 2.17851 6.91664 2 7.99969 2C10.5342 2 12.9631 2.91293 15.3234 6.84341L16 7.99892L15.543 8.78485C14.9008 9.8893 14.2534 10.7744 13.6002 11.4788ZM7.22294 5.10161C7.47078 5.03534 7.73126 5 8 5C9.65685 5 11 6.34315 11 8C11 8.26874 10.9647 8.52922 10.8984 8.77706L7.22294 5.10161Z", fill: "" }) } }; }); exports.ChevronDownIcon = ChevronDownIcon; exports.ChevronLeftIcon = ChevronLeftIcon; exports.ChevronRightIcon = ChevronRightIcon; exports.ConsoleAltIcon = ConsoleAltIcon; exports.ConsoleFilledIcon = ConsoleFilledIcon; exports.ConsoleUserThickIcon = ConsoleUserThickIcon; exports.CresentBrightIcon = CresentBrightIcon; exports.DoubleCircleIcon = DoubleCircleIcon; exports.EclipseIcon = EclipseIcon; exports.HamburgerIcon = HamburgerIcon; exports.HomeFilledIcon = HomeFilledIcon; exports.HomeOutlinedIcon = HomeOutlinedIcon; exports.LanguagesIcon = LanguagesIcon; exports.LockIcon = LockIcon; exports.LogsIcon = LogsIcon; exports.PowerIcon = PowerIcon; exports.PreferencesIcon = PreferencesIcon; exports.SunContrastIcon = SunContrastIcon; exports.SunIcon = SunIcon; exports.VisibilityIcon = VisibilityIcon; exports.VisibilityOffIcon = VisibilityOffIcon; Object.defineProperty(exports, '__esModule', { value: true }); }));