@appquality/unguess-design-system 3.1.0 → 3.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +32 -0
- package/build/index.js +457 -339
- package/build/stories/buttons/button/index.stories.d.ts +0 -1
- package/build/stories/dropdowns/select/index.stories.d.ts +0 -1
- package/build/stories/editor/index.stories.d.ts +0 -1
- package/build/stories/theme/index.d.ts +26 -5
- package/build/stories/tooltip/index.stories.d.ts +0 -1
- package/build/stories/typography/typescale/anchortag/index.stories.d.ts +0 -1
- package/build/stories/typography/typescale/index.stories.d.ts +0 -1
- package/package.json +1 -1
- package/yarn-error.log +0 -17994
package/build/index.js
CHANGED
|
@@ -317,8 +317,8 @@ const UgContainerCard = styled__default["default"](reactNotifications.Well) `
|
|
|
317
317
|
`;
|
|
318
318
|
const ContainerCard = (props) => jsxRuntime.jsx(UgContainerCard, Object.assign({}, props));
|
|
319
319
|
|
|
320
|
-
var _a, _b, _c, _d, _e, _f, _g$
|
|
321
|
-
const components = Object.assign(Object.assign(Object.assign(Object.assign({}, reactTheming.DEFAULT_THEME.components), { chrome: Object.assign(Object.assign({}, (_a = reactTheming.DEFAULT_THEME.components) === null || _a === void 0 ? void 0 : _a.chrome), { header: Object.assign(Object.assign({}, (_c = (_b = reactTheming.DEFAULT_THEME.components) === null || _b === void 0 ? void 0 : _b.chrome) === null || _c === void 0 ? void 0 : _c.header), { height: "64px" }), nav: Object.assign(Object.assign({}, (_e = (_d = reactTheming.DEFAULT_THEME.components) === null || _d === void 0 ? void 0 : _d.chrome) === null || _e === void 0 ? void 0 : _e.nav), { openWidth: 240, closedWidth: 36, workspaceDropdownWidth: 192 }) }), notification: Object.assign(Object.assign({}, (_f = reactTheming.DEFAULT_THEME.components) === null || _f === void 0 ? void 0 : _f.notification), { card: Object.assign(Object.assign({}, (_h = (_g$
|
|
320
|
+
var _a, _b, _c, _d, _e, _f, _g$8, _h;
|
|
321
|
+
const components = Object.assign(Object.assign(Object.assign(Object.assign({}, reactTheming.DEFAULT_THEME.components), { chrome: Object.assign(Object.assign({}, (_a = reactTheming.DEFAULT_THEME.components) === null || _a === void 0 ? void 0 : _a.chrome), { header: Object.assign(Object.assign({}, (_c = (_b = reactTheming.DEFAULT_THEME.components) === null || _b === void 0 ? void 0 : _b.chrome) === null || _c === void 0 ? void 0 : _c.header), { height: "64px" }), nav: Object.assign(Object.assign({}, (_e = (_d = reactTheming.DEFAULT_THEME.components) === null || _d === void 0 ? void 0 : _d.chrome) === null || _e === void 0 ? void 0 : _e.nav), { openWidth: 240, closedWidth: 36, workspaceDropdownWidth: 192 }) }), notification: Object.assign(Object.assign({}, (_f = reactTheming.DEFAULT_THEME.components) === null || _f === void 0 ? void 0 : _f.notification), { card: Object.assign(Object.assign({}, (_h = (_g$8 = reactTheming.DEFAULT_THEME.components) === null || _g$8 === void 0 ? void 0 : _g$8.notification) === null || _h === void 0 ? void 0 : _h.well), { padding: "16px" }) }) }), cardCmponentStyle), { "text.primary": () => ({
|
|
322
322
|
color: getColor(colors.primaryHue, 600),
|
|
323
323
|
}), "text.success": () => ({
|
|
324
324
|
color: getColor(colors.successHue, 700),
|
|
@@ -812,200 +812,270 @@ Tag.Avatar = StyledAvatar;
|
|
|
812
812
|
Tag.Close = StyledClose;
|
|
813
813
|
Tag.SecondaryText = StyledSpan;
|
|
814
814
|
|
|
815
|
-
var _path$
|
|
815
|
+
var _path$A;
|
|
816
816
|
function _extends$H() { _extends$H = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$H.apply(this, arguments); }
|
|
817
817
|
var SvgUgSquare = function SvgUgSquare(props) {
|
|
818
818
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$H({
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
819
|
+
width: 24,
|
|
820
|
+
height: 24,
|
|
821
|
+
viewBox: "0 0 24 24",
|
|
822
822
|
fill: "none",
|
|
823
|
-
|
|
824
|
-
}, props), _path$
|
|
825
|
-
|
|
826
|
-
|
|
823
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
824
|
+
}, props), _path$A || (_path$A = /*#__PURE__*/React__namespace.createElement("path", {
|
|
825
|
+
d: "M19 3H5C3.9 3 3 3.9 3 5V19C3 20.1 3.9 21 5 21H19C20.1 21 21 20.1 21 19V5C21 3.9 20.1 3 19 3ZM18 19H6C5.45 19 5 18.55 5 18V6C5 5.45 5.45 5 6 5H18C18.55 5 19 5.45 19 6V18C19 18.55 18.55 19 18 19Z",
|
|
826
|
+
fill: "#E80C7A"
|
|
827
827
|
})));
|
|
828
828
|
};
|
|
829
829
|
|
|
830
|
-
var _path$
|
|
830
|
+
var _path$z;
|
|
831
831
|
function _extends$G() { _extends$G = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$G.apply(this, arguments); }
|
|
832
832
|
var SvgUgCircle = function SvgUgCircle(props) {
|
|
833
833
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$G({
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
834
|
+
width: 24,
|
|
835
|
+
height: 24,
|
|
836
|
+
viewBox: "0 0 24 24",
|
|
837
837
|
fill: "none",
|
|
838
|
-
|
|
839
|
-
}, props), _path$
|
|
840
|
-
|
|
841
|
-
|
|
838
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
839
|
+
}, props), _path$z || (_path$z = /*#__PURE__*/React__namespace.createElement("path", {
|
|
840
|
+
d: "M12 2C6.47 2 2 6.47 2 12C2 17.53 6.47 22 12 22C17.53 22 22 17.53 22 12C22 6.47 17.53 2 12 2ZM12 20C7.58 20 4 16.42 4 12C4 7.58 7.58 4 12 4C16.42 4 20 7.58 20 12C20 16.42 16.42 20 12 20Z",
|
|
841
|
+
fill: "#FFCD1A"
|
|
842
842
|
})));
|
|
843
843
|
};
|
|
844
844
|
|
|
845
|
-
var _path$
|
|
845
|
+
var _path$y;
|
|
846
846
|
function _extends$F() { _extends$F = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$F.apply(this, arguments); }
|
|
847
847
|
var SvgUgTriangle = function SvgUgTriangle(props) {
|
|
848
848
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$F({
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
849
|
+
width: 24,
|
|
850
|
+
height: 24,
|
|
851
|
+
viewBox: "0 0 24 24",
|
|
852
852
|
fill: "none",
|
|
853
|
-
|
|
854
|
-
}, props), _path$
|
|
855
|
-
|
|
856
|
-
|
|
853
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
854
|
+
}, props), _path$y || (_path$y = /*#__PURE__*/React__namespace.createElement("path", {
|
|
855
|
+
d: "M11.9993 7.32625L18.3893 17.5563H5.60929L11.9993 7.32625ZM11.1493 4.91625L2.94929 18.0262C2.53929 18.6962 3.01929 19.5563 3.79929 19.5563H20.1993C20.9893 19.5563 21.4593 18.6962 21.0493 18.0262L12.8493 4.91625C12.4593 4.28625 11.5393 4.28625 11.1493 4.91625Z",
|
|
856
|
+
fill: "#7B0DFF"
|
|
857
857
|
})));
|
|
858
858
|
};
|
|
859
859
|
|
|
860
|
-
var _rect$4, _path$
|
|
860
|
+
var _rect$4, _path$x, _path2$b, _path3$4;
|
|
861
861
|
function _extends$E() { _extends$E = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$E.apply(this, arguments); }
|
|
862
862
|
var SvgCampaignCompleted = function SvgCampaignCompleted(props) {
|
|
863
863
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$E({
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
864
|
+
width: 24,
|
|
865
|
+
height: 24,
|
|
866
|
+
viewBox: "0 0 24 24",
|
|
867
867
|
fill: "none",
|
|
868
|
-
|
|
868
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
869
869
|
}, props), _rect$4 || (_rect$4 = /*#__PURE__*/React__namespace.createElement("rect", {
|
|
870
870
|
width: 24,
|
|
871
871
|
height: 24,
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
})), _path$
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
})), _path2$
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
})), _path3$
|
|
881
|
-
|
|
882
|
-
|
|
872
|
+
rx: 12,
|
|
873
|
+
fill: "#F6F6F8"
|
|
874
|
+
})), _path$x || (_path$x = /*#__PURE__*/React__namespace.createElement("path", {
|
|
875
|
+
d: "M20.6953 5.73905C21.0148 5.41953 21.0148 4.90149 20.6953 4.58197C20.3758 4.26245 19.8577 4.26245 19.5382 4.58197L11.88 12.2402L10.0849 9.95981C9.80539 9.60476 9.29098 9.54352 8.93593 9.82303C8.58088 10.1025 8.51963 10.6169 8.79914 10.972L11.1642 13.9763C11.3089 14.16 11.5252 14.2731 11.7586 14.2869C11.9921 14.3008 12.2203 14.2141 12.3856 14.0487L20.6953 5.73905Z",
|
|
876
|
+
fill: "#50BF95"
|
|
877
|
+
})), _path2$b || (_path2$b = /*#__PURE__*/React__namespace.createElement("path", {
|
|
878
|
+
d: "M3 12C3 7.02944 7.02944 3 12 3C13.3602 3 14.6521 3.3023 15.8102 3.84415C16.2195 4.03565 16.396 4.52268 16.2045 4.93196C16.013 5.34125 15.526 5.5178 15.1167 5.3263C14.1712 4.88391 13.1156 4.63636 12 4.63636C7.93318 4.63636 4.63636 7.93318 4.63636 12C4.63636 16.0668 7.93318 19.3636 12 19.3636C16.0668 19.3636 19.3636 16.0668 19.3636 12C19.3636 11.3631 19.283 10.7462 19.1317 10.1585C19.0191 9.72084 19.2826 9.27479 19.7202 9.16218C20.1578 9.04957 20.6038 9.31303 20.7165 9.75064C20.9017 10.4705 21 11.2243 21 12C21 16.9705 16.9705 21 12 21C7.02944 21 3 16.9705 3 12Z",
|
|
879
|
+
fill: "#50BF95"
|
|
880
|
+
})), _path3$4 || (_path3$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
881
|
+
d: "M20.6953 5.73905C21.0148 5.41953 21.0148 4.90149 20.6953 4.58197C20.3758 4.26245 19.8577 4.26245 19.5382 4.58197L11.88 12.2402L10.0849 9.95981C9.80539 9.60476 9.29098 9.54352 8.93593 9.82303C8.58088 10.1025 8.51963 10.6169 8.79914 10.972L11.1642 13.9763C11.3089 14.16 11.5252 14.2731 11.7586 14.2869C11.9921 14.3008 12.2203 14.2141 12.3856 14.0487L20.6953 5.73905Z",
|
|
882
|
+
fill: "#007345"
|
|
883
883
|
})));
|
|
884
884
|
};
|
|
885
885
|
|
|
886
|
-
var _rect$3, _path$
|
|
886
|
+
var _rect$3, _path$w, _path2$a;
|
|
887
887
|
function _extends$D() { _extends$D = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$D.apply(this, arguments); }
|
|
888
888
|
var SvgCampaignLocked = function SvgCampaignLocked(props) {
|
|
889
889
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$D({
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
890
|
+
width: 24,
|
|
891
|
+
height: 24,
|
|
892
|
+
viewBox: "0 0 24 24",
|
|
893
893
|
fill: "none",
|
|
894
|
-
|
|
894
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
895
895
|
}, props), _rect$3 || (_rect$3 = /*#__PURE__*/React__namespace.createElement("rect", {
|
|
896
896
|
width: 24,
|
|
897
897
|
height: 24,
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
})), _path$
|
|
901
|
-
fill: "#D1820A",
|
|
898
|
+
rx: 12,
|
|
899
|
+
fill: "#F6F6F8"
|
|
900
|
+
})), _path$w || (_path$w = /*#__PURE__*/React__namespace.createElement("path", {
|
|
902
901
|
fillRule: "evenodd",
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
902
|
+
clipRule: "evenodd",
|
|
903
|
+
d: "M13.55 19.0875C14.25 19.7875 15.1063 20.1375 16.1188 20.1375C17.1313 20.1375 17.9875 19.7875 18.6875 19.0875C19.3875 18.3875 19.7375 17.5312 19.7375 16.5187C19.7375 15.5062 19.3875 14.65 18.6875 13.95C17.9875 13.25 17.1313 12.9 16.1188 12.9C15.1063 12.9 14.25 13.25 13.55 13.95C12.85 14.65 12.5 15.5062 12.5 16.5187C12.5 17.5312 12.85 18.3875 13.55 19.0875ZM17.5062 18.2812C17.4187 18.2812 17.3375 18.25 17.2625 18.1875L15.7438 16.7812C15.6813 16.6687 15.65 16.6 15.65 16.575V14.55C15.65 14.4375 15.6875 14.3437 15.7625 14.2687C15.8375 14.1937 15.9313 14.1562 16.0438 14.1562C16.1563 14.1562 16.25 14.1937 16.325 14.2687C16.4 14.3437 16.4375 14.4375 16.4375 14.55V16.4813L17.7313 17.6625C17.8063 17.725 17.8469 17.8062 17.8531 17.9062C17.8594 18.0063 17.825 18.0938 17.75 18.1688C17.675 18.2438 17.5937 18.2812 17.5062 18.2812Z",
|
|
904
|
+
fill: "#D1820A"
|
|
905
|
+
})), _path2$a || (_path2$a = /*#__PURE__*/React__namespace.createElement("path", {
|
|
907
906
|
fillRule: "evenodd",
|
|
908
|
-
|
|
909
|
-
|
|
907
|
+
clipRule: "evenodd",
|
|
908
|
+
d: "M6.125 19.5C5.8125 19.5 5.54688 19.3906 5.32812 19.1719C5.10938 18.9531 5 18.6875 5 18.375V10.2375C5 9.925 5.10938 9.65937 5.32812 9.44062C5.54688 9.22187 5.8125 9.1125 6.125 9.1125H7.4375V7.36875C7.4375 6.36875 7.78437 5.51562 8.47812 4.80937C9.17188 4.10312 10.0125 3.75 11 3.75C11.9875 3.75 12.8281 4.10312 13.5219 4.80937C14.2156 5.51562 14.5625 6.36875 14.5625 7.36875V9.1125H15.875C16.1875 9.1125 16.4531 9.22187 16.6719 9.44062C16.8906 9.65937 17 9.925 17 10.2375V11.8687C16.8125 11.8187 16.625 11.7875 16.4375 11.775C16.25 11.7625 16.0625 11.7625 15.875 11.775C14.6 11.825 13.5312 12.3094 12.6688 13.2281C11.8063 14.1469 11.375 15.2437 11.375 16.5187C11.375 17.0687 11.4688 17.5969 11.6562 18.1031C11.8438 18.6094 12.1063 19.075 12.4438 19.5H6.125ZM13.4375 9.1125H8.5625V7.36875C8.5625 6.68125 8.8 6.09375 9.275 5.60625C9.75 5.11875 10.325 4.875 11 4.875C11.675 4.875 12.25 5.11875 12.725 5.60625C13.2 6.09375 13.4375 6.68125 13.4375 7.36875V9.1125Z",
|
|
909
|
+
fill: "#F4AC1A"
|
|
910
910
|
})));
|
|
911
911
|
};
|
|
912
912
|
|
|
913
|
-
var _rect$2, _path$
|
|
913
|
+
var _rect$2, _path$v, _path2$9;
|
|
914
914
|
function _extends$C() { _extends$C = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$C.apply(this, arguments); }
|
|
915
915
|
var SvgCampaignIncoming = function SvgCampaignIncoming(props) {
|
|
916
916
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$C({
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
917
|
+
width: 24,
|
|
918
|
+
height: 24,
|
|
919
|
+
viewBox: "0 0 24 24",
|
|
920
920
|
fill: "none",
|
|
921
|
-
|
|
921
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
922
922
|
}, props), _rect$2 || (_rect$2 = /*#__PURE__*/React__namespace.createElement("rect", {
|
|
923
923
|
width: 24,
|
|
924
924
|
height: 24,
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
})), _path$
|
|
925
|
+
rx: 12,
|
|
926
|
+
fill: "#F6F6F8"
|
|
927
|
+
})), _path$v || (_path$v = /*#__PURE__*/React__namespace.createElement("path", {
|
|
928
|
+
d: "M11.2266 13.0313H14.997M11.2266 9.26075V13.0313V9.26075ZM11.2266 13.0313L20.121 5.03906L11.2266 13.0313Z",
|
|
928
929
|
stroke: "#024780",
|
|
929
|
-
strokeLinecap: "round",
|
|
930
|
-
strokeLinejoin: "round",
|
|
931
930
|
strokeWidth: 1.5,
|
|
932
|
-
d: "M11.227 13.031h3.77m-3.77-3.77v3.77-3.77Zm0 3.77L20.12 5.04l-8.894 7.992Z"
|
|
933
|
-
})), _path2$c || (_path2$c = /*#__PURE__*/React__namespace.createElement("path", {
|
|
934
|
-
stroke: "#53AFFA",
|
|
935
931
|
strokeLinecap: "round",
|
|
936
|
-
strokeLinejoin: "round"
|
|
932
|
+
strokeLinejoin: "round"
|
|
933
|
+
})), _path2$9 || (_path2$9 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
934
|
+
d: "M15.4918 4.52347C14.4312 4.02725 13.2477 3.75003 11.9995 3.75003C7.44316 3.75003 3.74951 7.44368 3.74951 12C3.74951 16.5564 7.44316 20.25 11.9995 20.25C16.5558 20.25 20.2495 16.5564 20.2495 12C20.2495 11.2878 20.1593 10.5968 19.9896 9.93753",
|
|
935
|
+
stroke: "#53AFFA",
|
|
937
936
|
strokeWidth: 1.5,
|
|
938
|
-
|
|
937
|
+
strokeLinecap: "round",
|
|
938
|
+
strokeLinejoin: "round"
|
|
939
939
|
})));
|
|
940
940
|
};
|
|
941
941
|
|
|
942
|
-
var _rect$1, _path$
|
|
942
|
+
var _rect$1, _path$u, _path2$8, _path3$3, _path4$1, _path5$1, _path6$1, _path7$1, _path8$1, _path9$1, _path10$1;
|
|
943
943
|
function _extends$B() { _extends$B = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$B.apply(this, arguments); }
|
|
944
944
|
var SvgCampaignProgress = function SvgCampaignProgress(props) {
|
|
945
945
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$B({
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
946
|
+
width: 24,
|
|
947
|
+
height: 24,
|
|
948
|
+
viewBox: "0 0 24 24",
|
|
949
949
|
fill: "none",
|
|
950
|
-
|
|
950
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
951
951
|
}, props), _rect$1 || (_rect$1 = /*#__PURE__*/React__namespace.createElement("rect", {
|
|
952
952
|
width: 24,
|
|
953
953
|
height: 24,
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
})), _path$
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
})), _path2$
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
})), _path3$
|
|
963
|
-
|
|
964
|
-
|
|
954
|
+
rx: 12,
|
|
955
|
+
fill: "#F6F6F8"
|
|
956
|
+
})), _path$u || (_path$u = /*#__PURE__*/React__namespace.createElement("path", {
|
|
957
|
+
d: "M13.059 16.7647C13.059 16.1799 12.585 15.7059 12.0002 15.7059C11.4154 15.7059 10.9414 16.1799 10.9414 16.7647V19.9412C10.9414 20.5259 11.4154 21 12.0002 21C12.585 21 13.059 20.5259 13.059 19.9412V16.7647Z",
|
|
958
|
+
fill: "#D1820A"
|
|
959
|
+
})), _path2$8 || (_path2$8 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
960
|
+
d: "M16.1149 14.6183C15.7014 14.2048 15.031 14.2048 14.6175 14.6183C14.204 15.0318 14.204 15.7022 14.6175 16.1157L16.8649 18.3631C17.2783 18.7766 17.9488 18.7766 18.3623 18.3631C18.7757 17.9496 18.7757 17.2792 18.3623 16.8657L16.1149 14.6183Z",
|
|
961
|
+
fill: "#D1820A"
|
|
962
|
+
})), _path3$3 || (_path3$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
963
|
+
d: "M16.7649 10.9412C16.1802 10.9412 15.7061 11.4152 15.7061 12C15.7061 12.5848 16.1802 13.0588 16.7649 13.0588H19.9414C20.5262 13.0588 21.0002 12.5848 21.0002 12C21.0002 11.4152 20.5262 10.9412 19.9414 10.9412H16.7649Z",
|
|
964
|
+
fill: "#D1820A"
|
|
965
|
+
})), _path4$1 || (_path4$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
966
|
+
d: "M9.38105 14.6183C9.79455 15.0318 9.79455 15.7022 9.38105 16.1157L7.1337 18.3631C6.7202 18.7766 6.04979 18.7766 5.63629 18.3631C5.2228 17.9496 5.2228 17.2792 5.63629 16.8657L7.88365 14.6183C8.29714 14.2048 8.96756 14.2048 9.38105 14.6183Z",
|
|
967
|
+
fill: "#D1820A"
|
|
968
|
+
})), _path5$1 || (_path5$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
969
|
+
d: "M16.1149 14.6183C15.7014 14.2048 15.031 14.2048 14.6175 14.6183C14.204 15.0318 14.204 15.7022 14.6175 16.1157L16.8649 18.3631C17.2783 18.7766 17.9488 18.7766 18.3623 18.3631C18.7757 17.9496 18.7757 17.2792 18.3623 16.8657L16.1149 14.6183Z",
|
|
970
|
+
fill: "#FFD7A4"
|
|
971
|
+
})), _path6$1 || (_path6$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
972
|
+
d: "M16.7649 10.9412C16.1802 10.9412 15.7061 11.4152 15.7061 12C15.7061 12.5848 16.1802 13.0588 16.7649 13.0588H19.9414C20.5262 13.0588 21.0002 12.5848 21.0002 12C21.0002 11.4152 20.5262 10.9412 19.9414 10.9412H16.7649Z",
|
|
973
|
+
fill: "#FFD7A4"
|
|
974
|
+
})), _path7$1 || (_path7$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
975
|
+
d: "M12 3C12.5848 3 13.0588 3.47405 13.0588 4.05882V7.23529C13.0588 7.82007 12.5848 8.29412 12 8.29412C11.4152 8.29412 10.9412 7.82007 10.9412 7.23529V4.05882C10.9412 3.47405 11.4152 3 12 3Z",
|
|
976
|
+
fill: "#FFB65A"
|
|
977
|
+
})), _path8$1 || (_path8$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
978
|
+
d: "M5.63607 5.63685C6.04957 5.22335 6.71998 5.22335 7.13348 5.63685L9.38083 7.8842C9.79433 8.2977 9.79433 8.96811 9.38083 9.3816C8.96734 9.7951 8.29693 9.7951 7.88343 9.38161L5.63608 7.13425C5.22258 6.72076 5.22258 6.05035 5.63607 5.63685Z",
|
|
979
|
+
fill: "#FFB65A"
|
|
980
|
+
})), _path9$1 || (_path9$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
981
|
+
d: "M3 12C3 11.4152 3.47405 10.9412 4.05882 10.9412H7.23529C7.82007 10.9412 8.29412 11.4152 8.29412 12C8.29412 12.5848 7.82007 13.0588 7.23529 13.0588H4.05882C3.47405 13.0588 3 12.5848 3 12Z",
|
|
982
|
+
fill: "#FFB65A"
|
|
983
|
+
})), _path10$1 || (_path10$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
984
|
+
d: "M18.362 7.13425C18.7755 6.72076 18.7755 6.05035 18.362 5.63685C17.9485 5.22335 17.2781 5.22335 16.8646 5.63685L14.6173 7.8842C14.2038 8.2977 14.2038 8.96811 14.6173 9.3816C15.0308 9.7951 15.7012 9.7951 16.1147 9.38161L18.362 7.13425Z",
|
|
985
|
+
fill: "#FFB65A"
|
|
965
986
|
})));
|
|
966
987
|
};
|
|
967
988
|
|
|
968
|
-
var _path$
|
|
989
|
+
var _g$7, _path$t, _path2$7, _path3$2, _path4, _path5, _path6, _path7, _path8, _path9, _path10, _path11;
|
|
969
990
|
function _extends$A() { _extends$A = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$A.apply(this, arguments); }
|
|
970
991
|
var SvgCampaignExperiential = function SvgCampaignExperiential(props) {
|
|
971
992
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$A({
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
993
|
+
width: 24,
|
|
994
|
+
height: 24,
|
|
995
|
+
viewBox: "0 0 24 24",
|
|
975
996
|
fill: "none",
|
|
976
|
-
|
|
977
|
-
}, props),
|
|
978
|
-
fill: "#50BF95",
|
|
979
|
-
d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Z",
|
|
997
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
998
|
+
}, props), _g$7 || (_g$7 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
980
999
|
opacity: 0.3
|
|
981
|
-
}
|
|
1000
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1001
|
+
opacity: 0.3,
|
|
1002
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
|
|
1003
|
+
fill: "#50BF95"
|
|
1004
|
+
}))), _path$t || (_path$t = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1005
|
+
d: "M12.487 3.19652C8.68003 3.19652 5.59895 6.27761 5.59895 10.0846C5.59895 10.2597 5.59895 10.4348 5.62438 10.5855C5.29857 11.1863 4.82307 12.013 4.24678 12.514C3.82117 12.8897 3.92096 13.2908 3.97085 13.4405C4.09609 13.7663 4.44635 14.0413 5.02265 14.2418C5.22322 14.3172 5.44825 14.3671 5.64883 14.417L5.67427 16.8464C5.67427 17.7984 6.47559 18.6251 7.45304 18.6251L8.93044 18.1496L9.08111 19.0263C9.18091 19.6026 9.68185 20.0282 10.2836 20.0282C10.3589 20.0282 10.4343 20.0282 10.5086 20.0028L15.1424 19.177C15.8185 19.0517 16.2441 18.4256 16.1443 17.7495L15.8185 16.1214C17.9974 14.9189 19.375 12.5892 19.375 10.0845C19.375 6.30279 16.2696 3.19641 12.4869 3.19641L12.487 3.19652Z",
|
|
982
1006
|
fill: "#2B8473",
|
|
983
|
-
stroke: "#2B8473"
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
1007
|
+
stroke: "#2B8473"
|
|
1008
|
+
})), _path2$7 || (_path2$7 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1009
|
+
fillRule: "evenodd",
|
|
1010
|
+
clipRule: "evenodd",
|
|
1011
|
+
d: "M6.39343 10.7683V10.1215H8.06761V10.7683H6.39343Z",
|
|
1012
|
+
fill: "#ECF4F2"
|
|
1013
|
+
})), _path3$2 || (_path3$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1014
|
+
fillRule: "evenodd",
|
|
1015
|
+
clipRule: "evenodd",
|
|
1016
|
+
d: "M7.29937 13.6065L6.98608 13.0473L8.43487 12.1845L8.74815 12.7437L7.29937 13.6065Z",
|
|
1017
|
+
fill: "#ECF4F2"
|
|
1018
|
+
})), _path4 || (_path4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1019
|
+
fillRule: "evenodd",
|
|
1020
|
+
clipRule: "evenodd",
|
|
1021
|
+
d: "M8.43609 8.70399L6.9873 7.84261L7.30059 7.28345L8.74937 8.14483L8.43609 8.70399Z",
|
|
1022
|
+
fill: "#ECF4F2"
|
|
1023
|
+
})), _path5 || (_path5 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1024
|
+
fillRule: "evenodd",
|
|
1025
|
+
clipRule: "evenodd",
|
|
1026
|
+
d: "M16.6807 7.28345L16.994 7.84261L15.5452 8.70399L15.2319 8.14483L16.6807 7.28345Z",
|
|
1027
|
+
fill: "#ECF4F2"
|
|
1028
|
+
})), _path6 || (_path6 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1029
|
+
fillRule: "evenodd",
|
|
1030
|
+
clipRule: "evenodd",
|
|
1031
|
+
d: "M11.677 4.68039H12.305V6.4046H11.677V4.68039Z",
|
|
1032
|
+
fill: "#ECF4F2"
|
|
1033
|
+
})), _path7 || (_path7 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1034
|
+
fillRule: "evenodd",
|
|
1035
|
+
clipRule: "evenodd",
|
|
1036
|
+
d: "M9.46389 5.29071L10.3017 6.78279L9.75875 7.10544L8.92236 5.61336L9.46389 5.29071Z",
|
|
1037
|
+
fill: "#ECF4F2"
|
|
1038
|
+
})), _path8 || (_path8 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1039
|
+
fillRule: "evenodd",
|
|
1040
|
+
clipRule: "evenodd",
|
|
1041
|
+
d: "M13.3026 12.9977V14.6227H12.7313L12.7328 15.2505H11.2486L11.2471 14.6227H10.6787V12.9977C9.80547 12.5057 9.24976 11.5524 9.24976 10.5246C9.24976 8.96969 10.4802 7.70245 11.99 7.70245C13.5025 7.70245 14.733 8.96969 14.733 10.5246C14.7316 11.5509 14.1745 12.5043 13.3027 12.9977H13.3026Z",
|
|
1042
|
+
fill: "#ECF4F2"
|
|
1043
|
+
})), _path9 || (_path9 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1044
|
+
fillRule: "evenodd",
|
|
1045
|
+
clipRule: "evenodd",
|
|
1046
|
+
d: "M14.2243 7.10672L13.6814 6.78407L14.5178 5.29199L15.0607 5.61464L14.2243 7.10672Z",
|
|
1047
|
+
fill: "#ECF4F2"
|
|
1048
|
+
})), _path10 || (_path10 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
987
1049
|
fillRule: "evenodd",
|
|
988
|
-
|
|
989
|
-
|
|
1050
|
+
clipRule: "evenodd",
|
|
1051
|
+
d: "M16.6807 13.6065L15.2319 12.7437L15.5452 12.1845L16.994 13.0474L16.6807 13.6065Z",
|
|
1052
|
+
fill: "#ECF4F2"
|
|
1053
|
+
})), _path11 || (_path11 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1054
|
+
fillRule: "evenodd",
|
|
1055
|
+
clipRule: "evenodd",
|
|
1056
|
+
d: "M17.5865 10.7684H15.9124V10.1216H17.5865V10.7684Z",
|
|
1057
|
+
fill: "#ECF4F2"
|
|
990
1058
|
})));
|
|
991
1059
|
};
|
|
992
1060
|
|
|
993
|
-
var
|
|
1061
|
+
var _g$6, _path$s;
|
|
994
1062
|
function _extends$z() { _extends$z = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$z.apply(this, arguments); }
|
|
995
1063
|
var SvgCampaignFunctional = function SvgCampaignFunctional(props) {
|
|
996
1064
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$z({
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1065
|
+
width: 24,
|
|
1066
|
+
height: 24,
|
|
1067
|
+
viewBox: "0 0 24 24",
|
|
1000
1068
|
fill: "none",
|
|
1001
|
-
|
|
1002
|
-
}, props),
|
|
1003
|
-
fill: "#003A57",
|
|
1004
|
-
d: "M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Z",
|
|
1069
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
1070
|
+
}, props), _g$6 || (_g$6 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
1005
1071
|
opacity: 0.3
|
|
1006
|
-
}
|
|
1007
|
-
|
|
1008
|
-
d: "
|
|
1072
|
+
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
1073
|
+
opacity: 0.3,
|
|
1074
|
+
d: "M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z",
|
|
1075
|
+
fill: "#003A57"
|
|
1076
|
+
}))), _path$s || (_path$s = /*#__PURE__*/React__namespace.createElement("path", {
|
|
1077
|
+
d: "M17.9983 7.16705C17.5188 6.58566 17.1422 6.73039 17.1422 6.73039C17.1422 6.73039 16.406 7.02453 16.0401 7.16303C15.6742 7.30153 15.2408 7.17357 15.2408 7.17357L14.7579 6.8851C14.7579 6.8851 14.4296 6.56554 14.3656 6.18067C14.3123 5.78958 14.1888 5.00269 14.1888 5.00269C14.1888 5.00269 14.1356 4.61159 13.3938 4.47257C12.652 4.33356 12.4678 4.68715 12.4678 4.68715C12.4678 4.68715 12.0932 5.38344 11.9091 5.73703C11.7249 6.09062 11.3114 6.27118 11.3114 6.27118L10.7639 6.36908C10.7639 6.36908 10.3144 6.33771 10.0176 6.07271L9.12712 5.27769C9.12712 5.27769 8.8303 5.01268 8.18313 5.38632C7.53595 5.75997 7.61705 6.14953 7.61705 6.14953L7.86033 7.3182C7.94143 7.70776 7.74381 8.11275 7.74381 8.11275L7.38528 8.53794C7.38528 8.53794 7.02217 8.80577 6.62387 8.78845C6.22557 8.77114 5.43527 8.7474 5.43527 8.7474C5.43527 8.7474 5.03697 8.73009 4.78646 9.44201C4.53595 10.1539 4.84804 10.3956 4.84804 10.3956C4.84804 10.3956 5.46774 10.896 5.77983 11.1376C6.09192 11.3793 6.19373 11.8296 6.19373 11.8296L6.20207 12.3921C6.20207 12.3921 6.09618 12.8314 5.79331 13.079C5.49043 13.3266 4.86759 13.8171 4.86759 13.8171C4.86759 13.8171 4.56471 14.0647 4.81769 14.7769C5.08144 15.4828 5.46713 15.4783 5.46713 15.4783C5.46713 15.4783 6.26012 15.4569 6.64582 15.4524C7.03152 15.4479 7.40116 15.7145 7.40116 15.7145L7.76458 16.1447C7.76458 16.1447 7.96976 16.5499 7.89441 16.9425C7.81907 17.3351 7.66208 18.1094 7.66208 18.1094C7.66208 18.1094 7.58674 18.502 8.23785 18.8824C8.88895 19.2629 9.18553 19.0044 9.18553 19.0044C9.18553 19.0044 9.7724 18.4765 10.069 18.218C10.3655 17.9595 10.8115 17.9347 10.8115 17.9347L11.3609 18.0394C11.3609 18.0394 11.77 18.225 11.9608 18.5803C12.1516 18.9356 12.5268 19.6354 12.5268 19.6354C12.5268 19.6354 12.7176 19.9907 13.4583 19.8539C14.1946 19.7343 14.2529 19.337 14.2529 19.337C14.2529 19.337 14.3586 18.5487 14.4232 18.1623C14.4814 17.765 14.8086 17.4598 14.8086 17.4598L15.2939 17.1796C15.2939 17.1796 15.7281 17.0598 16.095 17.1971C16.4682 17.3453 17.1975 17.637 17.1975 17.637C17.1975 17.637 17.5707 17.7851 18.0424 17.2073C18.5142 16.6295 18.3189 16.2913 18.3189 16.2913C18.3189 16.2913 17.9006 15.6164 17.6882 15.2736C17.4759 14.9307 17.5197 14.4836 17.5197 14.4836L17.7038 13.9555C17.7038 13.9555 17.9482 13.5816 18.3203 13.454C18.6925 13.3264 19.4431 13.0822 19.4431 13.0822C19.4431 13.0822 19.8153 12.9546 19.8113 12.2005C19.8074 11.4464 19.4297 11.3153 19.4297 11.3153C19.4297 11.3153 18.6807 11.0641 18.303 10.9331C17.9253 10.802 17.677 10.4217 17.677 10.4217L17.4861 9.8919C17.4861 9.8919 17.4293 9.4447 17.6368 9.1067C17.8443 8.7687 18.2486 8.09891 18.2486 8.09891C18.2486 8.09891 18.4778 7.74844 17.9983 7.16707L17.9983 7.16705ZM9.33902 8.38466L10.6176 10.5992C10.0433 11.149 9.82793 11.9715 10.0567 12.7413L7.86713 14.0054C6.98868 12.0106 7.60355 9.66286 9.33905 8.38457L9.33902 8.38466ZM13.9748 16.414C11.9998 17.2778 9.65918 16.6363 8.37099 14.8783L10.5605 13.6141C11.1128 14.1971 11.9329 14.4219 12.6961 14.1994L13.9748 16.414ZM12.6552 13.132C12.1159 13.4434 11.4325 13.2561 11.1176 12.7107C10.8027 12.1652 10.9822 11.4797 11.5215 11.1684C12.0608 10.857 12.7441 11.0443 13.0591 11.5897C13.374 12.1352 13.1945 12.8207 12.6552 13.132ZM14.8376 15.9158L13.5591 13.7012C14.1333 13.1515 14.3487 12.3289 14.12 11.5591L16.3095 10.295C17.188 12.2898 16.5731 14.6376 14.8376 15.9159L14.8376 15.9158ZM13.6161 10.6863C13.0638 10.1034 12.2437 9.87862 11.4805 10.1011L10.2019 7.88652C12.1769 7.02266 14.5112 7.65314 15.8057 9.42223L13.6161 10.6863Z",
|
|
1078
|
+
fill: "#003A57"
|
|
1009
1079
|
})));
|
|
1010
1080
|
};
|
|
1011
1081
|
|
|
@@ -2339,29 +2409,31 @@ const editorStyle = styled.css `
|
|
|
2339
2409
|
}
|
|
2340
2410
|
`;
|
|
2341
2411
|
|
|
2342
|
-
var _path$
|
|
2412
|
+
var _path$r;
|
|
2343
2413
|
function _extends$y() { _extends$y = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$y.apply(this, arguments); }
|
|
2344
2414
|
var SvgBoldFill = function SvgBoldFill(props) {
|
|
2345
2415
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$y({
|
|
2346
2416
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2347
|
-
width:
|
|
2348
|
-
height:
|
|
2417
|
+
width: 16,
|
|
2418
|
+
height: 16,
|
|
2419
|
+
focusable: "false",
|
|
2349
2420
|
viewBox: "0 0 16 16"
|
|
2350
|
-
}, props), _path$
|
|
2421
|
+
}, props), _path$r || (_path$r = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2351
2422
|
fill: "currentColor",
|
|
2352
|
-
d: "M7.5 0C9.952 0 12 2.048 12 4.5a4.483 4.483 0
|
|
2423
|
+
d: "M7.5 0C9.952 0 12 2.048 12 4.5a4.483 4.483 0 01-1.27 3.108C12.078 8.39 13 9.855 13 11.5c0 2.452-2.048 4.5-4.5 4.5H4a1 1 0 01-1-1V1a1 1 0 011-1h3.5zM5 14h3.5c1.348 0 2.5-1.152 2.5-2.5S9.848 9 8.5 9H5v5zM7.5 2H5v5h2.5C8.848 7 10 5.848 10 4.5S8.848 2 7.5 2z"
|
|
2353
2424
|
})));
|
|
2354
2425
|
};
|
|
2355
2426
|
|
|
2356
|
-
var _path$
|
|
2427
|
+
var _path$q;
|
|
2357
2428
|
function _extends$x() { _extends$x = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$x.apply(this, arguments); }
|
|
2358
2429
|
var SvgItalicFill = function SvgItalicFill(props) {
|
|
2359
2430
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$x({
|
|
2360
2431
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2361
|
-
width:
|
|
2362
|
-
height:
|
|
2432
|
+
width: 16,
|
|
2433
|
+
height: 16,
|
|
2434
|
+
focusable: "false",
|
|
2363
2435
|
viewBox: "0 0 16 16"
|
|
2364
|
-
}, props), _path$
|
|
2436
|
+
}, props), _path$q || (_path$q = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2365
2437
|
fill: "none",
|
|
2366
2438
|
stroke: "currentColor",
|
|
2367
2439
|
strokeLinecap: "round",
|
|
@@ -2370,18 +2442,19 @@ var SvgItalicFill = function SvgItalicFill(props) {
|
|
|
2370
2442
|
})));
|
|
2371
2443
|
};
|
|
2372
2444
|
|
|
2373
|
-
var _path$
|
|
2445
|
+
var _path$p, _path2$6;
|
|
2374
2446
|
function _extends$w() { _extends$w = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$w.apply(this, arguments); }
|
|
2375
2447
|
var SvgQuoteFill = function SvgQuoteFill(props) {
|
|
2376
2448
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$w({
|
|
2377
2449
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2378
|
-
width:
|
|
2379
|
-
height:
|
|
2450
|
+
width: 16,
|
|
2451
|
+
height: 16,
|
|
2452
|
+
focusable: "false",
|
|
2380
2453
|
viewBox: "0 0 16 16"
|
|
2381
|
-
}, props), _path$
|
|
2454
|
+
}, props), _path$p || (_path$p = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2382
2455
|
fill: "currentColor",
|
|
2383
2456
|
d: "M7 8H4c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1zm6 0h-3c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c.55 0 1 .45 1 1v3c0 .55-.45 1-1 1z"
|
|
2384
|
-
})), _path2$
|
|
2457
|
+
})), _path2$6 || (_path2$6 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2385
2458
|
fill: "none",
|
|
2386
2459
|
stroke: "currentColor",
|
|
2387
2460
|
strokeLinecap: "round",
|
|
@@ -2390,73 +2463,94 @@ var SvgQuoteFill = function SvgQuoteFill(props) {
|
|
|
2390
2463
|
})));
|
|
2391
2464
|
};
|
|
2392
2465
|
|
|
2393
|
-
var
|
|
2466
|
+
var _g$5;
|
|
2394
2467
|
function _extends$v() { _extends$v = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$v.apply(this, arguments); }
|
|
2395
2468
|
var SvgH1Fill = function SvgH1Fill(props) {
|
|
2396
2469
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$v({
|
|
2397
2470
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2398
|
-
width:
|
|
2399
|
-
height:
|
|
2471
|
+
width: 16,
|
|
2472
|
+
height: 16,
|
|
2473
|
+
focusable: "false",
|
|
2400
2474
|
viewBox: "0 0 16 16"
|
|
2401
|
-
}, props),
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2475
|
+
}, props), _g$5 || (_g$5 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
2476
|
+
transform: "translate(-464 -332)"
|
|
2477
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2478
|
+
width: 16,
|
|
2479
|
+
height: 16,
|
|
2480
|
+
transform: "translate(464 332)",
|
|
2481
|
+
fill: "none"
|
|
2482
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2483
|
+
d: "M3,1V12.273M11.052,1V12.273M3,6.636h8.052",
|
|
2484
|
+
transform: "translate(462 333.5)",
|
|
2405
2485
|
fill: "none",
|
|
2406
2486
|
stroke: "currentColor",
|
|
2407
2487
|
strokeLinecap: "round",
|
|
2408
|
-
strokeWidth: 2
|
|
2409
|
-
|
|
2410
|
-
})), _path3$2 || (_path3$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2488
|
+
strokeWidth: 2
|
|
2489
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2411
2490
|
fill: "currentColor",
|
|
2412
|
-
d: "
|
|
2413
|
-
|
|
2491
|
+
d: "M1.755,15A.731.731,0,0,1,1,14.375a.7.7,0,0,1,.617-.739l.136-.011H2.51V6.346l-.22.2a.81.81,0,0,1-1.018.043.646.646,0,0,1-.137-.92l.086-.1L2.731,4.2l.063-.051.094-.058.091-.041.094-.028.082-.016L3.2,4l.082,0a.734.734,0,0,1,.094.007L3.265,4l.08,0,.113.019.1.028.115.055.083.055L3.8,4.2l.056.056.063.085.045.082.03.085.023.113,0,.063v8.937h.755a.731.731,0,0,1,.753.625.7.7,0,0,1-.617.739L4.775,15Z",
|
|
2492
|
+
transform: "translate(474.469 331)"
|
|
2493
|
+
}))));
|
|
2414
2494
|
};
|
|
2415
2495
|
|
|
2416
|
-
var
|
|
2496
|
+
var _g$4;
|
|
2417
2497
|
function _extends$u() { _extends$u = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$u.apply(this, arguments); }
|
|
2418
2498
|
var SvgH2Fill = function SvgH2Fill(props) {
|
|
2419
2499
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$u({
|
|
2420
2500
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2421
|
-
width:
|
|
2422
|
-
height:
|
|
2501
|
+
width: 16,
|
|
2502
|
+
height: 16,
|
|
2503
|
+
focusable: "false",
|
|
2423
2504
|
viewBox: "0 0 16 16"
|
|
2424
|
-
}, props),
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2505
|
+
}, props), _g$4 || (_g$4 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
2506
|
+
transform: "translate(-464 -332)"
|
|
2507
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2508
|
+
width: 16,
|
|
2509
|
+
height: 16,
|
|
2510
|
+
transform: "translate(464 332)",
|
|
2511
|
+
fill: "none"
|
|
2512
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2513
|
+
d: "M3,1V12.273M11.052,1V12.273M3,6.636h8.052",
|
|
2514
|
+
transform: "translate(462 333.5)",
|
|
2428
2515
|
fill: "none",
|
|
2429
2516
|
stroke: "currentColor",
|
|
2430
2517
|
strokeLinecap: "round",
|
|
2431
|
-
strokeWidth: 2
|
|
2432
|
-
|
|
2433
|
-
})), _path3$1 || (_path3$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2518
|
+
strokeWidth: 2
|
|
2519
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2434
2520
|
fill: "currentColor",
|
|
2435
|
-
d: "
|
|
2436
|
-
|
|
2521
|
+
d: "M5.5,6.75a2.576,2.576,0,1,1,5.141,0,4.961,4.961,0,0,1-1.1,3l-.256.348-1,1.291a8.564,8.564,0,0,0-1.222,2.047l-.071.191H10a.656.656,0,0,1,.632.564l.01.124a.677.677,0,0,1-.527.676L10,15H6.143a.627.627,0,0,1-.5-.252.723.723,0,0,1-.133-.57,8.183,8.183,0,0,1,1.753-3.637L8.24,9.292l.085-.111A3.975,3.975,0,0,0,9.355,6.75a1.288,1.288,0,1,0-2.57,0,.644.644,0,1,1-1.285,0Z",
|
|
2522
|
+
transform: "translate(469.359 331)"
|
|
2523
|
+
}))));
|
|
2437
2524
|
};
|
|
2438
2525
|
|
|
2439
|
-
var
|
|
2526
|
+
var _g$3;
|
|
2440
2527
|
function _extends$t() { _extends$t = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$t.apply(this, arguments); }
|
|
2441
2528
|
var SvgH3Fill = function SvgH3Fill(props) {
|
|
2442
2529
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$t({
|
|
2443
2530
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2444
|
-
width:
|
|
2445
|
-
height:
|
|
2531
|
+
width: 16,
|
|
2532
|
+
height: 16,
|
|
2533
|
+
focusable: "false",
|
|
2446
2534
|
viewBox: "0 0 16 16"
|
|
2447
|
-
}, props),
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2535
|
+
}, props), _g$3 || (_g$3 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
2536
|
+
transform: "translate(-464 -332)"
|
|
2537
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
2538
|
+
width: 16,
|
|
2539
|
+
height: 16,
|
|
2540
|
+
transform: "translate(464 332)",
|
|
2541
|
+
fill: "none"
|
|
2542
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2543
|
+
d: "M3,1V12.273M11.052,1V12.273M3,6.636h8.052",
|
|
2544
|
+
transform: "translate(462 333.5)",
|
|
2451
2545
|
fill: "none",
|
|
2452
2546
|
stroke: "currentColor",
|
|
2453
2547
|
strokeLinecap: "round",
|
|
2454
|
-
strokeWidth: 2
|
|
2455
|
-
|
|
2456
|
-
})), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2548
|
+
strokeWidth: 2
|
|
2549
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2457
2550
|
fill: "currentColor",
|
|
2458
|
-
d: "M15.
|
|
2459
|
-
|
|
2551
|
+
d: "M15.375,4A.658.658,0,0,1,16,4.688a3.531,3.531,0,0,1-.744,1.665l-.3.44-.171.238-.384.514-.438.568-.136.168.145.043a2.839,2.839,0,0,1,1.95,2.5l.031.225.015.151.021.294.01.334,0,.424a3.323,3.323,0,0,1-.3,1.339A2.286,2.286,0,0,1,13.5,15c-1.6,0-2.5-1-2.5-2.75a.628.628,0,1,1,1.25,0c0,1,.345,1.375,1.25,1.375a1.053,1.053,0,0,0,1.081-.652,1.9,1.9,0,0,0,.169-.723l0-.378-.015-.415-.021-.238c-.134-1.172-.653-1.719-2.149-1.719a.625.625,0,0,1-.571-.407.741.741,0,0,1,.106-.739l.494-.61.446-.564.4-.518.347-.465.3-.41.282-.411H11.625a.645.645,0,0,1-.615-.564L11,4.688a.673.673,0,0,1,.512-.676L11.625,4Z",
|
|
2552
|
+
transform: "translate(464.001 331)"
|
|
2553
|
+
}))));
|
|
2460
2554
|
};
|
|
2461
2555
|
|
|
2462
2556
|
const StyledIconButton = styled__default["default"](IconButton) ``;
|
|
@@ -2647,18 +2741,19 @@ function _extends$s() { _extends$s = Object.assign ? Object.assign.bind() : func
|
|
|
2647
2741
|
var SvgNotesStroke = function SvgNotesStroke(props) {
|
|
2648
2742
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$s({
|
|
2649
2743
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2650
|
-
width:
|
|
2651
|
-
height:
|
|
2744
|
+
width: 16,
|
|
2745
|
+
height: 16,
|
|
2746
|
+
focusable: "false",
|
|
2652
2747
|
viewBox: "0 0 16 16"
|
|
2653
2748
|
}, props), _g$2 || (_g$2 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
2654
2749
|
fill: "none",
|
|
2655
2750
|
stroke: "currentColor"
|
|
2656
2751
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
2657
2752
|
strokeLinejoin: "round",
|
|
2658
|
-
d: "
|
|
2753
|
+
d: "M10.51 8.4l-3.01.1.1-3.01L12.59.5l2.91 2.91-4.99 4.99z"
|
|
2659
2754
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
2660
2755
|
strokeLinecap: "round",
|
|
2661
|
-
d: "M7.41 1.5H2.09a.58.58 0
|
|
2756
|
+
d: "M7.41 1.5H2.09a.58.58 0 00-.59.59v11.82a.58.58 0 00.59.59h11.82a.58.58 0 00.59-.59V8.59"
|
|
2662
2757
|
}))));
|
|
2663
2758
|
};
|
|
2664
2759
|
|
|
@@ -2694,7 +2789,6 @@ const Wrapper$1 = styled__default["default"].div `
|
|
|
2694
2789
|
|
|
2695
2790
|
svg {
|
|
2696
2791
|
margin-left: ${({ theme }) => theme.space.xs};
|
|
2697
|
-
flex-shrink: 0;
|
|
2698
2792
|
}
|
|
2699
2793
|
}
|
|
2700
2794
|
`;
|
|
@@ -2768,15 +2862,15 @@ var _path$o;
|
|
|
2768
2862
|
function _extends$r() { _extends$r = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$r.apply(this, arguments); }
|
|
2769
2863
|
var SvgCheckLg = function SvgCheckLg(props) {
|
|
2770
2864
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$r({
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2865
|
+
width: 16,
|
|
2866
|
+
height: 16,
|
|
2867
|
+
viewBox: "0 0 16 16",
|
|
2774
2868
|
fill: "#68737D",
|
|
2775
|
-
|
|
2869
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
2776
2870
|
}, props), _path$o || (_path$o = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2777
2871
|
fillRule: "evenodd",
|
|
2778
|
-
|
|
2779
|
-
|
|
2872
|
+
clipRule: "evenodd",
|
|
2873
|
+
d: "M14.6464 2.64645C14.8417 2.45118 15.1583 2.45118 15.3536 2.64645C15.5488 2.84171 15.5488 3.15829 15.3536 3.35355L5.35355 13.3536C5.15829 13.5488 4.84171 13.5488 4.64645 13.3536L0.646447 9.35355C0.451184 9.15829 0.451184 8.84171 0.646447 8.64645C0.841709 8.45118 1.15829 8.45118 1.35355 8.64645L5 12.2929L14.6464 2.64645Z"
|
|
2780
2874
|
})));
|
|
2781
2875
|
};
|
|
2782
2876
|
|
|
@@ -2795,7 +2889,7 @@ const Circle = styled__default["default"].div `
|
|
|
2795
2889
|
height: ${({ theme }) => theme.space.base * 6}px;
|
|
2796
2890
|
padding: ${({ theme }) => theme.space.base * 1.25}px;
|
|
2797
2891
|
border-radius: 50%;
|
|
2798
|
-
background-color: ${({ theme }) => theme.
|
|
2892
|
+
background-color: ${({ theme }) => getColor(theme.colors.primaryHue, 600)};
|
|
2799
2893
|
display: flex;
|
|
2800
2894
|
flex-direction: column;
|
|
2801
2895
|
justify-content: center;
|
|
@@ -2971,12 +3065,13 @@ function _extends$q() { _extends$q = Object.assign ? Object.assign.bind() : func
|
|
|
2971
3065
|
var SvgChevronDownStroke = function SvgChevronDownStroke(props) {
|
|
2972
3066
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$q({
|
|
2973
3067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
2974
|
-
width:
|
|
2975
|
-
height:
|
|
3068
|
+
width: 16,
|
|
3069
|
+
height: 16,
|
|
3070
|
+
focusable: "false",
|
|
2976
3071
|
viewBox: "0 0 16 16"
|
|
2977
3072
|
}, props), _path$n || (_path$n = /*#__PURE__*/React__namespace.createElement("path", {
|
|
2978
3073
|
fill: "currentColor",
|
|
2979
|
-
d: "M12.688 5.61a.5.5 0
|
|
3074
|
+
d: "M12.688 5.61a.5.5 0 01.69.718l-.066.062-5 4a.5.5 0 01-.542.054l-.082-.054-5-4a.5.5 0 01.55-.83l.074.05L8 9.359l4.688-3.75z"
|
|
2980
3075
|
})));
|
|
2981
3076
|
};
|
|
2982
3077
|
|
|
@@ -3027,8 +3122,9 @@ function _extends$p() { _extends$p = Object.assign ? Object.assign.bind() : func
|
|
|
3027
3122
|
var SvgMenuStroke = function SvgMenuStroke(props) {
|
|
3028
3123
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$p({
|
|
3029
3124
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3030
|
-
width:
|
|
3031
|
-
height:
|
|
3125
|
+
width: 16,
|
|
3126
|
+
height: 16,
|
|
3127
|
+
focusable: "false",
|
|
3032
3128
|
viewBox: "0 0 16 16"
|
|
3033
3129
|
}, props), _path$m || (_path$m = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3034
3130
|
fill: "none",
|
|
@@ -3175,12 +3271,13 @@ function _extends$o() { _extends$o = Object.assign ? Object.assign.bind() : func
|
|
|
3175
3271
|
var SvgChevronRightStroke = function SvgChevronRightStroke(props) {
|
|
3176
3272
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$o({
|
|
3177
3273
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3178
|
-
width:
|
|
3179
|
-
height:
|
|
3274
|
+
width: 16,
|
|
3275
|
+
height: 16,
|
|
3276
|
+
focusable: "false",
|
|
3180
3277
|
viewBox: "0 0 16 16"
|
|
3181
3278
|
}, props), _path$l || (_path$l = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3182
3279
|
fill: "currentColor",
|
|
3183
|
-
d: "M5.61 3.312a.5.5 0
|
|
3280
|
+
d: "M5.61 3.312a.5.5 0 01.718-.69l.062.066 4 5a.5.5 0 01.054.542l-.054.082-4 5a.5.5 0 01-.83-.55l.05-.074L9.359 8l-3.75-4.688z"
|
|
3184
3281
|
})));
|
|
3185
3282
|
};
|
|
3186
3283
|
|
|
@@ -3189,12 +3286,13 @@ function _extends$n() { _extends$n = Object.assign ? Object.assign.bind() : func
|
|
|
3189
3286
|
var SvgChevronLeftStroke = function SvgChevronLeftStroke(props) {
|
|
3190
3287
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$n({
|
|
3191
3288
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3192
|
-
width:
|
|
3193
|
-
height:
|
|
3289
|
+
width: 16,
|
|
3290
|
+
height: 16,
|
|
3291
|
+
focusable: "false",
|
|
3194
3292
|
viewBox: "0 0 16 16"
|
|
3195
3293
|
}, props), _path$k || (_path$k = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3196
3294
|
fill: "currentColor",
|
|
3197
|
-
d: "M10.39 12.688a.5.5 0
|
|
3295
|
+
d: "M10.39 12.688a.5.5 0 01-.718.69l-.062-.066-4-5a.5.5 0 01-.054-.542l.054-.082 4-5a.5.5 0 01.83.55l-.05.074L6.641 8l3.75 4.688z"
|
|
3198
3296
|
})));
|
|
3199
3297
|
};
|
|
3200
3298
|
|
|
@@ -3266,12 +3364,13 @@ function _extends$m() { _extends$m = Object.assign ? Object.assign.bind() : func
|
|
|
3266
3364
|
var SvgHomeFill = function SvgHomeFill(props) {
|
|
3267
3365
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$m({
|
|
3268
3366
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3269
|
-
width:
|
|
3270
|
-
height:
|
|
3367
|
+
width: 26,
|
|
3368
|
+
height: 26,
|
|
3369
|
+
focusable: "false",
|
|
3271
3370
|
viewBox: "0 0 26 26"
|
|
3272
3371
|
}, props), _path$j || (_path$j = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3273
3372
|
fill: "currentColor",
|
|
3274
|
-
d: "
|
|
3373
|
+
d: "M23.885 13.2l-1.328 1.639a.522.522 0 01-.737.084l-1.444-1.155v7.182c0 .577-.474 1.05-1.054 1.05H16.51c-.58 0-1.054-.473-1.054-1.05v-3.182a2.43 2.43 0 00-.716-1.732 2.448 2.448 0 00-1.74-.714 2.45 2.45 0 00-1.739.714 2.43 2.43 0 00-.716 1.732v3.182c0 .577-.474 1.05-1.054 1.05H6.678c-.582 0-1.054-.47-1.054-1.05v-7.182L4.18 14.923a.522.522 0 01-.737-.084L2.115 13.2a.52.52 0 01.084-.735l10.474-8.348a.51.51 0 01.654 0L23.8 12.466a.52.52 0 01.084.735"
|
|
3275
3374
|
})));
|
|
3276
3375
|
};
|
|
3277
3376
|
|
|
@@ -3280,20 +3379,23 @@ function _extends$l() { _extends$l = Object.assign ? Object.assign.bind() : func
|
|
|
3280
3379
|
var SvgHomeFillStyled = function SvgHomeFillStyled(props) {
|
|
3281
3380
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$l({
|
|
3282
3381
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3283
|
-
width:
|
|
3284
|
-
height:
|
|
3382
|
+
width: 26,
|
|
3383
|
+
height: 26,
|
|
3384
|
+
focusable: "false",
|
|
3285
3385
|
viewBox: "0 0 26 26"
|
|
3286
3386
|
}, props), _linearGradient || (_linearGradient = /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
3287
|
-
id: "
|
|
3387
|
+
id: "unguessIconGradient"
|
|
3288
3388
|
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3289
|
-
className: "
|
|
3290
|
-
offset: "11.98%"
|
|
3389
|
+
className: "stop1",
|
|
3390
|
+
offset: "11.98%",
|
|
3391
|
+
stopColor: "#70c38a"
|
|
3291
3392
|
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3292
|
-
className: "
|
|
3293
|
-
offset: "100%"
|
|
3393
|
+
className: "stop3",
|
|
3394
|
+
offset: "100%",
|
|
3395
|
+
stopColor: "#001825"
|
|
3294
3396
|
}))), _path$i || (_path$i = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3295
|
-
fill: "url(#
|
|
3296
|
-
d: "
|
|
3397
|
+
fill: "url(#unguessIconGradient)",
|
|
3398
|
+
d: "M23.885 13.2l-1.328 1.639a.522.522 0 01-.737.084l-1.444-1.155v7.182c0 .577-.474 1.05-1.054 1.05H16.51c-.58 0-1.054-.473-1.054-1.05v-3.182a2.43 2.43 0 00-.716-1.732 2.448 2.448 0 00-1.74-.714 2.45 2.45 0 00-1.739.714 2.43 2.43 0 00-.716 1.732v3.182c0 .577-.474 1.05-1.054 1.05H6.678c-.582 0-1.054-.47-1.054-1.05v-7.182L4.18 14.923a.522.522 0 01-.737-.084L2.115 13.2a.52.52 0 01.084-.735l10.474-8.348a.51.51 0 01.654 0L23.8 12.466a.52.52 0 01.084.735"
|
|
3297
3399
|
})));
|
|
3298
3400
|
};
|
|
3299
3401
|
|
|
@@ -3301,39 +3403,38 @@ var _g$1, _defs$2;
|
|
|
3301
3403
|
function _extends$k() { _extends$k = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$k.apply(this, arguments); }
|
|
3302
3404
|
var SvgToken = function SvgToken(props) {
|
|
3303
3405
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$k({
|
|
3304
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
3305
3406
|
fill: "none",
|
|
3306
3407
|
viewBox: "0 0 32 32",
|
|
3307
|
-
|
|
3308
|
-
height: "1em"
|
|
3408
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3309
3409
|
}, props), _g$1 || (_g$1 = /*#__PURE__*/React__namespace.createElement("g", {
|
|
3310
|
-
clipPath: "url(#
|
|
3410
|
+
clipPath: "url(#a)"
|
|
3311
3411
|
}, /*#__PURE__*/React__namespace.createElement("path", {
|
|
3412
|
+
d: "m32 16c0 8.8363-7.1635 16-16 16-8.8369 0-16-7.1635-16-16 0-8.8367 7.1632-16 16-16 8.8364 0 16 7.1632 16 16z",
|
|
3413
|
+
clipRule: "evenodd",
|
|
3312
3414
|
fill: "#9FD7B1",
|
|
3313
|
-
fillRule: "evenodd"
|
|
3314
|
-
d: "M32 16c0 8.836-7.163 16-16 16S0 24.837 0 16 7.163 0 16 0c8.836 0 16 7.163 16 16z",
|
|
3315
|
-
clipRule: "evenodd"
|
|
3415
|
+
fillRule: "evenodd"
|
|
3316
3416
|
}), /*#__PURE__*/React__namespace.createElement("rect", {
|
|
3317
|
-
width: 23.742,
|
|
3318
|
-
height: 23.742,
|
|
3319
3417
|
x: 4.129,
|
|
3320
3418
|
y: 4.129,
|
|
3321
|
-
|
|
3322
|
-
|
|
3419
|
+
width: 23.742,
|
|
3420
|
+
height: 23.742,
|
|
3421
|
+
rx: 11.871,
|
|
3422
|
+
fill: "#003A57"
|
|
3323
3423
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3324
|
-
|
|
3325
|
-
|
|
3424
|
+
d: "m18.662 16.433v1.1544h-0.0144c-0.1011 1.6739-1.0246 2.6263-2.5686 2.6263-1.645 0-2.6263-0.9524-2.7273-2.6263h-0.0144v-1.1544h-2.3377v1.1688c0.1299 2.9149 2.0924 4.7764 5.065 4.7764 2.9437 0 4.8052-1.8182 4.9351-4.7764v-1.1688h-2.3377z",
|
|
3425
|
+
fill: "#fff"
|
|
3326
3426
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3327
|
-
|
|
3328
|
-
|
|
3427
|
+
d: "m13.367 10.545h-2.3522v2.3521h2.3522v-2.3521z",
|
|
3428
|
+
fill: "#54C38A"
|
|
3329
3429
|
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
3330
|
-
|
|
3331
|
-
|
|
3430
|
+
d: "m20.986 10.545h-2.381v2.381h2.381v-2.381z",
|
|
3431
|
+
fill: "#fff"
|
|
3332
3432
|
}))), _defs$2 || (_defs$2 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("clipPath", {
|
|
3333
|
-
id: "
|
|
3334
|
-
}, /*#__PURE__*/React__namespace.createElement("
|
|
3335
|
-
|
|
3336
|
-
|
|
3433
|
+
id: "a"
|
|
3434
|
+
}, /*#__PURE__*/React__namespace.createElement("rect", {
|
|
3435
|
+
width: 32,
|
|
3436
|
+
height: 32,
|
|
3437
|
+
fill: "#fff"
|
|
3337
3438
|
})))));
|
|
3338
3439
|
};
|
|
3339
3440
|
|
|
@@ -3341,15 +3442,15 @@ var _path$h;
|
|
|
3341
3442
|
function _extends$j() { _extends$j = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$j.apply(this, arguments); }
|
|
3342
3443
|
var SvgFolderIcon = function SvgFolderIcon(props) {
|
|
3343
3444
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$j({
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
|
|
3445
|
+
width: 12,
|
|
3446
|
+
height: 12,
|
|
3447
|
+
viewBox: "0 0 12 12",
|
|
3448
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3348
3449
|
}, props), _path$h || (_path$h = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3349
|
-
fill: "currentColor",
|
|
3350
3450
|
fillRule: "evenodd",
|
|
3351
|
-
|
|
3352
|
-
|
|
3451
|
+
clipRule: "evenodd",
|
|
3452
|
+
d: "M9.99976 4H6.99976V3.5C6.99976 2.62386 6.3759 2 5.49976 2H2.49976C1.62362 2 0.999758 2.62386 0.999758 3.5V6H0.499758C0.174472 6 -0.0642066 6.30569 0.0146868 6.62127L1.01469 10.6213C1.07033 10.8439 1.27032 11 1.49976 11H10.4998C10.7292 11 10.9292 10.8439 10.9848 10.6213L11.9848 6.62127C12.0637 6.30569 11.825 6 11.4998 6H10.9998V5C10.9998 4.42386 10.5759 4 9.99976 4ZM10.8594 7H1.14015L1.89015 10H10.1094L10.8594 7ZM1.99976 6H9.99976V5H5.99976V3.5C5.99976 3.17614 5.82362 3 5.49976 3H2.49976C2.1759 3 1.99976 3.17614 1.99976 3.5V6Z",
|
|
3453
|
+
fill: "currentColor"
|
|
3353
3454
|
})));
|
|
3354
3455
|
};
|
|
3355
3456
|
|
|
@@ -3357,22 +3458,22 @@ var _path$g, _defs$1;
|
|
|
3357
3458
|
function _extends$i() { _extends$i = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$i.apply(this, arguments); }
|
|
3358
3459
|
var SvgTemplates = function SvgTemplates(props) {
|
|
3359
3460
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$i({
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3461
|
+
width: 26,
|
|
3462
|
+
height: 26,
|
|
3463
|
+
viewBox: "0 0 26 26",
|
|
3363
3464
|
fill: "none",
|
|
3364
|
-
|
|
3465
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3365
3466
|
}, props), _path$g || (_path$g = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3366
|
-
fill: "url(#templates_svg__a)",
|
|
3367
3467
|
fillRule: "evenodd",
|
|
3368
|
-
|
|
3369
|
-
|
|
3468
|
+
clipRule: "evenodd",
|
|
3469
|
+
d: "M8 5H3.5C3.2 5 3 5.2 3 5.5V18.5C3 18.8 3.2 19 3.5 19H7C10 19 11 21 11 21H12V7C12 6.9 11 5 8 5ZM9 15H6C5.5 15 5 14.5 5 14C5 13.5 5.5 13 6 13H9C9.5 13 10 13.5 10 14C10 14.5 9.5 15 9 15ZM9 11H6C5.5 11 5 10.5 5 10C5 9.5 5.5 9 6 9H9C9.5 9 10 9.5 10 10C10 10.5 9.5 11 9 11ZM14 7V21H15C15 21 16 19 19 19H22.5C22.8 19 23 18.8 23 18.5V5.5C23 5.2 22.8 5 22.5 5H18C15 5 14 6.9 14 7ZM16 14C16 13.5 16.5 13 17 13H20C20.5 13 21 13.5 21 14C21 14.5 20.5 15 20 15H17C16.5 15 16 14.5 16 14ZM16 10C16 9.5 16.5 9 17 9H20C20.5 9 21 9.5 21 10C21 10.5 20.5 11 20 11H17C16.5 11 16 10.5 16 10Z",
|
|
3470
|
+
fill: "url(#paint0_linear_342_21583)"
|
|
3370
3471
|
})), _defs$1 || (_defs$1 = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
3371
|
-
id: "
|
|
3472
|
+
id: "paint0_linear_342_21583",
|
|
3372
3473
|
x1: 3,
|
|
3373
|
-
x2: 23.277,
|
|
3374
3474
|
y1: 5,
|
|
3375
|
-
|
|
3475
|
+
x2: 23.2766,
|
|
3476
|
+
y2: 5.35853,
|
|
3376
3477
|
gradientUnits: "userSpaceOnUse"
|
|
3377
3478
|
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3378
3479
|
stopColor: "#001825"
|
|
@@ -3386,25 +3487,25 @@ var _path$f, _defs;
|
|
|
3386
3487
|
function _extends$h() { _extends$h = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$h.apply(this, arguments); }
|
|
3387
3488
|
var SvgTemplatesActive = function SvgTemplatesActive(props) {
|
|
3388
3489
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$h({
|
|
3389
|
-
|
|
3390
|
-
|
|
3391
|
-
|
|
3490
|
+
width: 26,
|
|
3491
|
+
height: 26,
|
|
3492
|
+
viewBox: "0 0 26 26",
|
|
3392
3493
|
fill: "none",
|
|
3393
|
-
|
|
3494
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3394
3495
|
}, props), _path$f || (_path$f = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3395
|
-
fill: "url(#templates-active_svg__a)",
|
|
3396
3496
|
fillRule: "evenodd",
|
|
3397
|
-
|
|
3398
|
-
|
|
3497
|
+
clipRule: "evenodd",
|
|
3498
|
+
d: "M8 5H3.5C3.2 5 3 5.2 3 5.5V18.5C3 18.8 3.2 19 3.5 19H7C10 19 11 21 11 21H12V7C12 6.9 11 5 8 5ZM9 15H6C5.5 15 5 14.5 5 14C5 13.5 5.5 13 6 13H9C9.5 13 10 13.5 10 14C10 14.5 9.5 15 9 15ZM9 11H6C5.5 11 5 10.5 5 10C5 9.5 5.5 9 6 9H9C9.5 9 10 9.5 10 10C10 10.5 9.5 11 9 11ZM14 7V21H15C15 21 16 19 19 19H22.5C22.8 19 23 18.8 23 18.5V5.5C23 5.2 22.8 5 22.5 5H18C15 5 14 6.9 14 7ZM16 14C16 13.5 16.5 13 17 13H20C20.5 13 21 13.5 21 14C21 14.5 20.5 15 20 15H17C16.5 15 16 14.5 16 14ZM16 10C16 9.5 16.5 9 17 9H20C20.5 9 21 9.5 21 10C21 10.5 20.5 11 20 11H17C16.5 11 16 10.5 16 10Z",
|
|
3499
|
+
fill: "url(#paint0_linear_342_4104)"
|
|
3399
3500
|
})), _defs || (_defs = /*#__PURE__*/React__namespace.createElement("defs", null, /*#__PURE__*/React__namespace.createElement("linearGradient", {
|
|
3400
|
-
id: "
|
|
3501
|
+
id: "paint0_linear_342_4104",
|
|
3401
3502
|
x1: 3,
|
|
3402
|
-
x2: 23.277,
|
|
3403
3503
|
y1: 5,
|
|
3404
|
-
|
|
3504
|
+
x2: 23.2766,
|
|
3505
|
+
y2: 5.35853,
|
|
3405
3506
|
gradientUnits: "userSpaceOnUse"
|
|
3406
3507
|
}, /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3407
|
-
offset: 0.
|
|
3508
|
+
offset: 0.119792,
|
|
3408
3509
|
stopColor: "#003A57"
|
|
3409
3510
|
}), /*#__PURE__*/React__namespace.createElement("stop", {
|
|
3410
3511
|
offset: 1,
|
|
@@ -3635,16 +3736,16 @@ var _path$e;
|
|
|
3635
3736
|
function _extends$g() { _extends$g = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$g.apply(this, arguments); }
|
|
3636
3737
|
var SvgPlus = function SvgPlus(props) {
|
|
3637
3738
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$g({
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3739
|
+
width: 16,
|
|
3740
|
+
height: 16,
|
|
3741
|
+
viewBox: "0 0 16 16",
|
|
3641
3742
|
fill: "none",
|
|
3642
|
-
|
|
3743
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3643
3744
|
}, props), _path$e || (_path$e = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3644
|
-
fill: "#68737D",
|
|
3645
3745
|
fillRule: "evenodd",
|
|
3646
|
-
|
|
3647
|
-
|
|
3746
|
+
clipRule: "evenodd",
|
|
3747
|
+
d: "M7.5 2C7.22386 2 7 2.22386 7 2.5V8H1.5C1.22386 8 1 8.22386 1 8.5C1 8.77614 1.22386 9 1.5 9H7V14.5C7 14.7761 7.22386 15 7.5 15C7.77614 15 8 14.7761 8 14.5V9H13.5C13.7761 9 14 8.77614 14 8.5C14 8.22386 13.7761 8 13.5 8H8V2.5C8 2.22386 7.77614 2 7.5 2Z",
|
|
3748
|
+
fill: "#68737D"
|
|
3648
3749
|
})));
|
|
3649
3750
|
};
|
|
3650
3751
|
|
|
@@ -3949,12 +4050,13 @@ function _extends$f() { _extends$f = Object.assign ? Object.assign.bind() : func
|
|
|
3949
4050
|
var SvgPlayFill = function SvgPlayFill(props) {
|
|
3950
4051
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$f({
|
|
3951
4052
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3952
|
-
width:
|
|
3953
|
-
height:
|
|
4053
|
+
width: 16,
|
|
4054
|
+
height: 16,
|
|
4055
|
+
focusable: "false",
|
|
3954
4056
|
viewBox: "0 0 16 16"
|
|
3955
4057
|
}, props), _path$d || (_path$d = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3956
4058
|
fill: "currentColor",
|
|
3957
|
-
d: "M6 15.79c-.13 0-.26-.03-.38-.08a.977.977 0
|
|
4059
|
+
d: "M6 15.79c-.13 0-.26-.03-.38-.08a.977.977 0 01-.62-.92V1.21a1 1 0 01.62-.93C6 .12 6.42.21 6.71.5l6.44 6.44c.58.58.58 1.54 0 2.12L6.71 15.5c-.19.19-.45.29-.71.29z"
|
|
3958
4060
|
})));
|
|
3959
4061
|
};
|
|
3960
4062
|
|
|
@@ -3963,8 +4065,9 @@ function _extends$e() { _extends$e = Object.assign ? Object.assign.bind() : func
|
|
|
3963
4065
|
var SvgPauseFill = function SvgPauseFill(props) {
|
|
3964
4066
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$e({
|
|
3965
4067
|
xmlns: "http://www.w3.org/2000/svg",
|
|
3966
|
-
width:
|
|
3967
|
-
height:
|
|
4068
|
+
width: 16,
|
|
4069
|
+
height: 16,
|
|
4070
|
+
focusable: "false",
|
|
3968
4071
|
viewBox: "0 0 16 16"
|
|
3969
4072
|
}, props), _g || (_g = /*#__PURE__*/React__namespace.createElement("g", {
|
|
3970
4073
|
fill: "currentColor"
|
|
@@ -3985,57 +4088,67 @@ var SvgPauseFill = function SvgPauseFill(props) {
|
|
|
3985
4088
|
}))));
|
|
3986
4089
|
};
|
|
3987
4090
|
|
|
3988
|
-
var _path$c, _path2$
|
|
4091
|
+
var _path$c, _path2$5, _path3$1;
|
|
3989
4092
|
function _extends$d() { _extends$d = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$d.apply(this, arguments); }
|
|
3990
4093
|
var SvgForwardSecondsFill = function SvgForwardSecondsFill(props) {
|
|
3991
4094
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$d({
|
|
3992
|
-
|
|
3993
|
-
|
|
3994
|
-
|
|
4095
|
+
width: 16,
|
|
4096
|
+
height: 16,
|
|
4097
|
+
viewBox: "0 0 16 16",
|
|
3995
4098
|
fill: "none",
|
|
3996
|
-
|
|
4099
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
3997
4100
|
}, props), _path$c || (_path$c = /*#__PURE__*/React__namespace.createElement("path", {
|
|
3998
|
-
fill: "currentColor",
|
|
3999
4101
|
fillRule: "evenodd",
|
|
4000
|
-
|
|
4001
|
-
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
-
d: "M5.5 7.
|
|
4102
|
+
clipRule: "evenodd",
|
|
4103
|
+
d: "M11.659 3.5C10.7411 2.85974 9.65081 2.5 8.5 2.5C5.45228 2.5 3 4.95228 3 8C3 11.0477 5.45228 13.5 8.5 13.5C10.2023 13.5 11.7457 12.7171 12.8191 11.3753C13.1641 10.944 13.7934 10.8741 14.2247 11.2191C14.656 11.5641 14.7259 12.1934 14.3809 12.6247C12.9372 14.4292 10.8263 15.5 8.5 15.5C4.34772 15.5 1 12.1523 1 8C1 3.84772 4.34772 0.5 8.5 0.5C10.1564 0.5 11.7168 1.04496 13 2.00147V1C13 0.447715 13.4477 0 14 0C14.5523 0 15 0.447715 15 1V4C15 4.85228 14.3523 5.5 13.5 5.5H10.5C9.94771 5.5 9.5 5.05228 9.5 4.5C9.5 3.94772 9.94771 3.5 10.5 3.5H11.659Z",
|
|
4104
|
+
fill: "currentColor"
|
|
4105
|
+
})), _path2$5 || (_path2$5 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4106
|
+
d: "M5.5 7.63073V7.07008H6.67566V11H6.02566V7.63073H5.5Z",
|
|
4107
|
+
fill: "currentColor"
|
|
4108
|
+
})), _path3$1 || (_path3$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4109
|
+
d: "M7.56085 8.98383C7.56085 8.36208 7.67013 7.87691 7.88868 7.5283C8.111 7.1761 8.49158 7 9.03042 7C9.56927 7 9.94797 7.1761 10.1665 7.5283C10.3888 7.87691 10.5 8.36208 10.5 8.98383C10.5 9.61276 10.3888 10.1051 10.1665 10.4609C9.94797 10.8131 9.56927 10.9892 9.03042 10.9892C8.49158 10.9892 8.111 10.8131 7.88868 10.4609C7.67013 10.1051 7.56085 9.61276 7.56085 8.98383ZM9.86695 8.98383C9.86695 8.69272 9.84623 8.44654 9.80478 8.24528C9.7671 8.04403 9.68797 7.8805 9.56738 7.75472C9.4468 7.62534 9.26782 7.56065 9.03042 7.56065C8.79303 7.56065 8.61405 7.62534 8.49346 7.75472C8.37288 7.8805 8.29187 8.04403 8.25042 8.24528C8.21274 8.44654 8.1939 8.69272 8.1939 8.98383C8.1939 9.28571 8.21274 9.53908 8.25042 9.74394C8.2881 9.94879 8.36723 10.1141 8.48781 10.2399C8.61216 10.3657 8.79303 10.4286 9.03042 10.4286C9.26782 10.4286 9.4468 10.3657 9.56738 10.2399C9.69173 10.1141 9.77275 9.94879 9.81043 9.74394C9.84811 9.53908 9.86695 9.28571 9.86695 8.98383Z",
|
|
4110
|
+
fill: "currentColor"
|
|
4005
4111
|
})));
|
|
4006
4112
|
};
|
|
4007
4113
|
|
|
4008
|
-
var _path$b, _path2$
|
|
4114
|
+
var _path$b, _path2$4, _path3;
|
|
4009
4115
|
function _extends$c() { _extends$c = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$c.apply(this, arguments); }
|
|
4010
4116
|
var SvgBackSecondsFill = function SvgBackSecondsFill(props) {
|
|
4011
4117
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$c({
|
|
4012
|
-
|
|
4013
|
-
|
|
4014
|
-
|
|
4118
|
+
width: 16,
|
|
4119
|
+
height: 16,
|
|
4120
|
+
viewBox: "0 0 16 16",
|
|
4015
4121
|
fill: "none",
|
|
4016
|
-
|
|
4122
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4017
4123
|
}, props), _path$b || (_path$b = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4018
|
-
fill: "currentColor",
|
|
4019
4124
|
fillRule: "evenodd",
|
|
4020
|
-
|
|
4021
|
-
|
|
4022
|
-
|
|
4023
|
-
|
|
4024
|
-
d: "M5.5 7.
|
|
4125
|
+
clipRule: "evenodd",
|
|
4126
|
+
d: "M4.34099 3.5C5.25886 2.85974 6.34919 2.5 7.5 2.5C10.5477 2.5 13 4.95228 13 8C13 11.0477 10.5477 13.5 7.5 13.5C5.79771 13.5 4.25432 12.7171 3.18087 11.3753C2.83586 10.944 2.20657 10.8741 1.7753 11.2191C1.34404 11.5641 1.27412 12.1934 1.61913 12.6247C3.06275 14.4292 5.17372 15.5 7.5 15.5C11.6523 15.5 15 12.1523 15 8C15 3.84772 11.6523 0.5 7.5 0.5C5.84359 0.5 4.28318 1.04496 3 2.00147V1C3 0.447715 2.55229 0 2 0C1.44771 0 1 0.447715 1 1V4C1 4.85228 1.64772 5.5 2.5 5.5H5.5C6.05229 5.5 6.5 5.05228 6.5 4.5C6.5 3.94772 6.05229 3.5 5.5 3.5H4.34099Z",
|
|
4127
|
+
fill: "currentColor"
|
|
4128
|
+
})), _path2$4 || (_path2$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4129
|
+
d: "M5.5 7.63073V7.07008H6.67566V11H6.02566V7.63073H5.5Z",
|
|
4130
|
+
fill: "currentColor"
|
|
4131
|
+
})), _path3 || (_path3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4132
|
+
d: "M7.56085 8.98383C7.56085 8.36208 7.67013 7.87691 7.88868 7.5283C8.111 7.1761 8.49158 7 9.03042 7C9.56927 7 9.94797 7.1761 10.1665 7.5283C10.3888 7.87691 10.5 8.36208 10.5 8.98383C10.5 9.61276 10.3888 10.1051 10.1665 10.4609C9.94797 10.8131 9.56927 10.9892 9.03042 10.9892C8.49158 10.9892 8.111 10.8131 7.88868 10.4609C7.67013 10.1051 7.56085 9.61276 7.56085 8.98383ZM9.86695 8.98383C9.86695 8.69272 9.84623 8.44654 9.80478 8.24528C9.7671 8.04403 9.68797 7.8805 9.56738 7.75472C9.4468 7.62534 9.26782 7.56065 9.03042 7.56065C8.79303 7.56065 8.61405 7.62534 8.49346 7.75472C8.37288 7.8805 8.29187 8.04403 8.25042 8.24528C8.21274 8.44654 8.1939 8.69272 8.1939 8.98383C8.1939 9.28571 8.21274 9.53908 8.25042 9.74394C8.2881 9.94879 8.36723 10.1141 8.48781 10.2399C8.61216 10.3657 8.79303 10.4286 9.03042 10.4286C9.26782 10.4286 9.4468 10.3657 9.56738 10.2399C9.69173 10.1141 9.77275 9.94879 9.81043 9.74394C9.84811 9.53908 9.86695 9.28571 9.86695 8.98383Z",
|
|
4133
|
+
fill: "currentColor"
|
|
4025
4134
|
})));
|
|
4026
4135
|
};
|
|
4027
4136
|
|
|
4028
|
-
var _path$a;
|
|
4137
|
+
var _path$a, _path2$3;
|
|
4029
4138
|
function _extends$b() { _extends$b = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$b.apply(this, arguments); }
|
|
4030
4139
|
var SvgPreviousFill = function SvgPreviousFill(props) {
|
|
4031
4140
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$b({
|
|
4032
4141
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4033
|
-
width:
|
|
4034
|
-
height:
|
|
4142
|
+
width: 16,
|
|
4143
|
+
height: 16,
|
|
4144
|
+
focusable: "false",
|
|
4035
4145
|
viewBox: "0 0 24 24"
|
|
4036
4146
|
}, props), _path$a || (_path$a = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4037
|
-
|
|
4038
|
-
|
|
4147
|
+
d: "M2.75 20C2.75 20.5523 3.19772 21 3.75 21C4.30228 21 4.75 20.5523 4.75 20L4.75 4C4.75 3.44772 4.30229 3 3.75 3C3.19772 3 2.75 3.44772 2.75 4V20Z",
|
|
4148
|
+
fill: "currentColor"
|
|
4149
|
+
})), _path2$3 || (_path2$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4150
|
+
d: "M20.75 19.0526C20.75 20.4774 19.1383 21.305 17.9803 20.4748L7.51062 12.9682C6.50574 12.2477 6.54467 10.7407 7.5854 10.073L18.0551 3.35665C19.2198 2.60946 20.75 3.44583 20.75 4.82961L20.75 19.0526Z",
|
|
4151
|
+
fill: "currentColor"
|
|
4039
4152
|
})));
|
|
4040
4153
|
};
|
|
4041
4154
|
|
|
@@ -4136,16 +4249,17 @@ function _extends$a() { _extends$a = Object.assign ? Object.assign.bind() : func
|
|
|
4136
4249
|
var SvgVolumeMutedFill = function SvgVolumeMutedFill(props) {
|
|
4137
4250
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$a({
|
|
4138
4251
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4139
|
-
width:
|
|
4140
|
-
height:
|
|
4252
|
+
width: 16,
|
|
4253
|
+
height: 16,
|
|
4254
|
+
focusable: "false",
|
|
4141
4255
|
viewBox: "0 0 16 16"
|
|
4142
4256
|
}, props), _path$9 || (_path$9 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4143
4257
|
stroke: "currentColor",
|
|
4144
4258
|
strokeLinecap: "round",
|
|
4145
|
-
d: "
|
|
4259
|
+
d: "M11.5 10l4-4m-4 0l4 4"
|
|
4146
4260
|
})), _path2$2 || (_path2$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4147
4261
|
fill: "currentColor",
|
|
4148
|
-
d: "M9 15.29c-.26 0-.51-.1-.71-.29l-4-4H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.29l4-4a1.002 1.002 0
|
|
4262
|
+
d: "M9 15.29c-.26 0-.51-.1-.71-.29l-4-4H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.29l4-4a1.002 1.002 0 011.71.71V14.3a.986.986 0 01-1 .99z"
|
|
4149
4263
|
})));
|
|
4150
4264
|
};
|
|
4151
4265
|
|
|
@@ -4154,12 +4268,13 @@ function _extends$9() { _extends$9 = Object.assign ? Object.assign.bind() : func
|
|
|
4154
4268
|
var SvgVolumeUnmutedFill = function SvgVolumeUnmutedFill(props) {
|
|
4155
4269
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$9({
|
|
4156
4270
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4157
|
-
width:
|
|
4158
|
-
height:
|
|
4271
|
+
width: 16,
|
|
4272
|
+
height: 16,
|
|
4273
|
+
focusable: "false",
|
|
4159
4274
|
viewBox: "0 0 16 16"
|
|
4160
4275
|
}, props), _path$8 || (_path$8 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4161
4276
|
fill: "currentColor",
|
|
4162
|
-
d: "M9 15.29c-.26 0-.51-.1-.71-.29l-4-4H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.29l4-4a1.002 1.002 0
|
|
4277
|
+
d: "M9 15.29c-.26 0-.51-.1-.71-.29l-4-4H1c-.55 0-1-.45-1-1V6c0-.55.45-1 1-1h3.29l4-4a1.002 1.002 0 011.71.71V14.3a.986.986 0 01-1 .99z"
|
|
4163
4278
|
})), _path2$1 || (_path2$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4164
4279
|
fill: "none",
|
|
4165
4280
|
stroke: "currentColor",
|
|
@@ -4214,12 +4329,13 @@ function _extends$8() { _extends$8 = Object.assign ? Object.assign.bind() : func
|
|
|
4214
4329
|
var SvgMaximizeFill = function SvgMaximizeFill(props) {
|
|
4215
4330
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$8({
|
|
4216
4331
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4217
|
-
width:
|
|
4218
|
-
height:
|
|
4332
|
+
width: 16,
|
|
4333
|
+
height: 16,
|
|
4334
|
+
focusable: "false",
|
|
4219
4335
|
viewBox: "0 0 16 16"
|
|
4220
4336
|
}, props), _path$7 || (_path$7 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4221
4337
|
fill: "currentColor",
|
|
4222
|
-
d: "M16 4.29V1c0-.55-.45-1-1-1h-3.29c-.45 0-.67.54-.35.85l3.79 3.79c.31.32.85.1.85-.35zM0 11.71V15c0 .55.45 1 1 1h3.29c.45 0 .67-.54.35-.85L.85 11.36a.495.495 0
|
|
4338
|
+
d: "M16 4.29V1c0-.55-.45-1-1-1h-3.29c-.45 0-.67.54-.35.85l3.79 3.79c.31.32.85.1.85-.35zM0 11.71V15c0 .55.45 1 1 1h3.29c.45 0 .67-.54.35-.85L.85 11.36a.495.495 0 00-.85.35zm0-7.42V1c0-.55.45-1 1-1h3.29c.45 0 .67.54.35.85L.85 4.65A.5.5 0 010 4.29zm16 7.42V15c0 .55-.45 1-1 1h-3.29c-.45 0-.67-.54-.35-.85l3.79-3.79c.31-.32.85-.1.85.35z"
|
|
4223
4339
|
})));
|
|
4224
4340
|
};
|
|
4225
4341
|
|
|
@@ -4492,12 +4608,13 @@ function _extends$7() { _extends$7 = Object.assign ? Object.assign.bind() : func
|
|
|
4492
4608
|
var SvgExit = function SvgExit(props) {
|
|
4493
4609
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$7({
|
|
4494
4610
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4495
|
-
width:
|
|
4496
|
-
height:
|
|
4611
|
+
width: 16,
|
|
4612
|
+
height: 16,
|
|
4613
|
+
focusable: "false",
|
|
4497
4614
|
viewBox: "0 0 16 16"
|
|
4498
4615
|
}, props), _path$6 || (_path$6 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4499
4616
|
fill: "currentColor",
|
|
4500
|
-
d: "M3 15.93c-.23 0-.45-.08-.64-.23l-2-1.67a.987.987 0
|
|
4617
|
+
d: "M3 15.93c-.23 0-.45-.08-.64-.23l-2-1.67a.987.987 0 01-.36-.76V2.73c0-.3.13-.58.36-.77l2-1.67c.3-.24.71-.29 1.06-.13a1 1 0 01.58.91v13.87a1 1 0 01-.58.91c-.13.05-.28.08-.42.08zM12 11V5c0-.45.54-.67.85-.35L15.5 7.3c.39.39.39 1.02 0 1.41l-2.65 2.65A.5.5 0 0112 11z"
|
|
4501
4618
|
})), _path2 || (_path2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4502
4619
|
fill: "none",
|
|
4503
4620
|
stroke: "currentColor",
|
|
@@ -4510,16 +4627,16 @@ var _path$5;
|
|
|
4510
4627
|
function _extends$6() { _extends$6 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$6.apply(this, arguments); }
|
|
4511
4628
|
var SvgThumbsUp = function SvgThumbsUp(props) {
|
|
4512
4629
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$6({
|
|
4513
|
-
|
|
4514
|
-
|
|
4515
|
-
|
|
4630
|
+
width: 16,
|
|
4631
|
+
height: 16,
|
|
4632
|
+
viewBox: "0 0 16 16",
|
|
4516
4633
|
fill: "none",
|
|
4517
|
-
|
|
4634
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4518
4635
|
}, props), _path$5 || (_path$5 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4519
|
-
fill: "#68737D",
|
|
4520
4636
|
fillRule: "evenodd",
|
|
4521
|
-
|
|
4522
|
-
|
|
4637
|
+
clipRule: "evenodd",
|
|
4638
|
+
d: "M13.5 15C14.2828 15 14.8192 11.8284 15 7.5C15 7.22386 14.7761 7 14.5 7H9.5C9.22386 7 9 6.77614 9 6.5V2C9 1.44772 8.55229 1 8 1C7.44772 1 7 1.44772 7 2C7 4.97341 6.19918 6.46065 5.02719 6.8454C5.01015 6.85409 4.99957 6.87174 5 6.9L4.99891 15C4.99927 15 13.5 15 13.5 15ZM10 6H14.5C15.3284 6 16 6.67157 15.9996 7.52082C15.7692 13.0486 15.2701 16 13.5 16L5.03301 15.9989C4.75408 16.0174 4.48075 15.9146 4.28308 15.7169C4.08542 15.5193 3.98264 15.2459 4 15L4.00008 6.90914C3.99274 6.50762 4.21507 6.13707 4.64189 5.92566C5.41645 5.66747 6 4.58373 6 2C6 0.89543 6.89543 0 8 0C9.10457 0 10 0.89543 10 2V6ZM1 7V15H2V7H1ZM1 6H2C2.55228 6 3 6.44772 3 7V15C3 15.5523 2.55228 16 2 16H1C0.447715 16 0 15.5523 0 15V7C0 6.44772 0.447715 6 1 6Z",
|
|
4639
|
+
fill: "#68737D"
|
|
4523
4640
|
})));
|
|
4524
4641
|
};
|
|
4525
4642
|
|
|
@@ -4528,8 +4645,9 @@ function _extends$5() { _extends$5 = Object.assign ? Object.assign.bind() : func
|
|
|
4528
4645
|
var SvgLockLockedFill = function SvgLockLockedFill(props) {
|
|
4529
4646
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$5({
|
|
4530
4647
|
xmlns: "http://www.w3.org/2000/svg",
|
|
4531
|
-
width:
|
|
4532
|
-
height:
|
|
4648
|
+
width: 16,
|
|
4649
|
+
height: 16,
|
|
4650
|
+
focusable: "false",
|
|
4533
4651
|
viewBox: "0 0 16 16"
|
|
4534
4652
|
}, props), _rect || (_rect = /*#__PURE__*/React__namespace.createElement("rect", {
|
|
4535
4653
|
width: 12,
|
|
@@ -4542,7 +4660,7 @@ var SvgLockLockedFill = function SvgLockLockedFill(props) {
|
|
|
4542
4660
|
})), _path$4 || (_path$4 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4543
4661
|
fill: "none",
|
|
4544
4662
|
stroke: "currentColor",
|
|
4545
|
-
d: "M4.5 7.5V4a3.5 3.5 0
|
|
4663
|
+
d: "M4.5 7.5V4a3.5 3.5 0 017 0v3.5"
|
|
4546
4664
|
})));
|
|
4547
4665
|
};
|
|
4548
4666
|
|
|
@@ -4655,15 +4773,15 @@ var _path$3;
|
|
|
4655
4773
|
function _extends$4() { _extends$4 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$4.apply(this, arguments); }
|
|
4656
4774
|
var SvgQuestionMark = function SvgQuestionMark(props) {
|
|
4657
4775
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$4({
|
|
4658
|
-
|
|
4659
|
-
|
|
4660
|
-
|
|
4776
|
+
width: 16,
|
|
4777
|
+
height: 16,
|
|
4778
|
+
viewBox: "0 0 16 16",
|
|
4661
4779
|
fill: "currentColor",
|
|
4662
|
-
|
|
4780
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4663
4781
|
}, props), _path$3 || (_path$3 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4664
4782
|
fillRule: "evenodd",
|
|
4665
|
-
|
|
4666
|
-
|
|
4783
|
+
clipRule: "evenodd",
|
|
4784
|
+
d: "M7.99997 11.5C8.55226 11.5 8.99997 11.0523 8.99997 10.5V9.4C8.99997 8.83787 9.33361 8.32072 9.92997 7.948C11.3791 7.15957 12.2479 5.53522 11.9883 3.84794C11.7161 2.21413 10.3858 0.883851 8.76437 0.613605C6.74482 0.234732 4.81137 1.36258 4.24419 3.20591C4.08177 3.73378 4.37802 4.29336 4.90589 4.45578C5.43375 4.6182 5.99333 4.32195 6.15575 3.79409C6.41982 2.93586 7.36323 2.38554 8.41568 2.58287C9.2141 2.71615 9.88382 3.38587 10.0136 4.1644C10.139 4.98036 9.70294 5.79565 8.92112 6.2221C7.72579 6.96712 6.99997 8.09213 6.99997 9.4V10.5C6.99997 11.0523 7.44769 11.5 7.99997 11.5ZM7.99997 15.5C8.8284 15.5 9.49997 14.8284 9.49997 14C9.49997 13.1716 8.8284 12.5 7.99997 12.5C7.17155 12.5 6.49997 13.1716 6.49997 14C6.49997 14.8284 7.17155 15.5 7.99997 15.5Z"
|
|
4667
4785
|
})));
|
|
4668
4786
|
};
|
|
4669
4787
|
|
|
@@ -4671,16 +4789,16 @@ var _path$2;
|
|
|
4671
4789
|
function _extends$3() { _extends$3 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$3.apply(this, arguments); }
|
|
4672
4790
|
var SvgCopy = function SvgCopy(props) {
|
|
4673
4791
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$3({
|
|
4674
|
-
|
|
4675
|
-
|
|
4676
|
-
|
|
4792
|
+
width: 12,
|
|
4793
|
+
height: 16,
|
|
4794
|
+
viewBox: "0 0 12 16",
|
|
4677
4795
|
fill: "none",
|
|
4678
|
-
|
|
4796
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4679
4797
|
}, props), _path$2 || (_path$2 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4680
|
-
fill: "#003A57",
|
|
4681
4798
|
fillRule: "evenodd",
|
|
4682
|
-
|
|
4683
|
-
|
|
4799
|
+
clipRule: "evenodd",
|
|
4800
|
+
d: "M2.625 10C2.83211 10 3 10.2239 3 10.5C3 10.7761 2.83211 11 2.625 11H0.75C0.335786 11 0 10.5523 0 10V1C0 0.447715 0.335786 0 0.75 0H7.5C7.91421 0 8.25 0.447715 8.25 1V3.5C8.25 3.77614 8.08211 4 7.875 4C7.66789 4 7.5 3.77614 7.5 3.5V1H0.75V10H2.625ZM4.5 6V15H11.25V6H4.5ZM4.5 5H11.25C11.6642 5 12 5.44772 12 6V15C12 15.5523 11.6642 16 11.25 16H4.5C4.08579 16 3.75 15.5523 3.75 15V6C3.75 5.44772 4.08579 5 4.5 5Z",
|
|
4801
|
+
fill: "#003A57"
|
|
4684
4802
|
})));
|
|
4685
4803
|
};
|
|
4686
4804
|
|
|
@@ -4688,15 +4806,15 @@ var _path$1;
|
|
|
4688
4806
|
function _extends$2() { _extends$2 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$2.apply(this, arguments); }
|
|
4689
4807
|
var SvgInfoFill = function SvgInfoFill(props) {
|
|
4690
4808
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$2({
|
|
4691
|
-
|
|
4692
|
-
|
|
4693
|
-
|
|
4809
|
+
width: 16,
|
|
4810
|
+
height: 16,
|
|
4811
|
+
viewBox: "0 0 16 16",
|
|
4694
4812
|
fill: "currentColor",
|
|
4695
|
-
|
|
4813
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4696
4814
|
}, props), _path$1 || (_path$1 = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4697
4815
|
fillRule: "evenodd",
|
|
4698
|
-
|
|
4699
|
-
|
|
4816
|
+
clipRule: "evenodd",
|
|
4817
|
+
d: "M7.5 16C3.36 16 0 12.64 0 8.5C0 4.36 3.36 1 7.5 1C11.64 1 15 4.36 15 8.5C15 12.64 11.64 16 7.5 16ZM7 12.5C7 12.78 7.22 13 7.5 13C7.78 13 8 12.78 8 12.5V8C8 7.72 7.78 7.5 7.5 7.5C7.22 7.5 7 7.72 7 8V12.5ZM7.5 4C6.95 4 6.5 4.45 6.5 5C6.5 5.55 6.95 6 7.5 6C8.05 6 8.5 5.55 8.5 5C8.5 4.45 8.05 4 7.5 4Z"
|
|
4700
4818
|
})));
|
|
4701
4819
|
};
|
|
4702
4820
|
|
|
@@ -4785,11 +4903,11 @@ const HelpItem = (props) => {
|
|
|
4785
4903
|
function _extends$1() { _extends$1 = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends$1.apply(this, arguments); }
|
|
4786
4904
|
var SvgEmpty = function SvgEmpty(props) {
|
|
4787
4905
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends$1({
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
|
|
4906
|
+
width: 16,
|
|
4907
|
+
height: 16,
|
|
4908
|
+
viewBox: "0 0 16 16",
|
|
4791
4909
|
fill: "#68737D",
|
|
4792
|
-
|
|
4910
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4793
4911
|
}, props));
|
|
4794
4912
|
};
|
|
4795
4913
|
|
|
@@ -4797,15 +4915,15 @@ var _path;
|
|
|
4797
4915
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
4798
4916
|
var SvgTranslationExists = function SvgTranslationExists(props) {
|
|
4799
4917
|
return /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4918
|
+
width: 16,
|
|
4919
|
+
height: 16,
|
|
4920
|
+
viewBox: "0 0 16 16",
|
|
4803
4921
|
fill: "#68737D",
|
|
4804
|
-
|
|
4922
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
4805
4923
|
}, props), _path || (_path = /*#__PURE__*/React__namespace.createElement("path", {
|
|
4806
4924
|
fillRule: "evenodd",
|
|
4807
|
-
|
|
4808
|
-
|
|
4925
|
+
clipRule: "evenodd",
|
|
4926
|
+
d: "M6 8.31C6.0087 8.47711 5.93254 8.63735 5.79747 8.73613C5.6624 8.83491 5.48662 8.85893 5.33 8.8C5 8.68 4.71 8.5 4.45 8.31C3.9 8.73 3.26 9 2.5 9C2.22 9 2 8.78 2 8.5C2 8.22 2.22 8 2.5 8C2.94 8 3.34 7.86 3.69 7.63C2.9 6.73 2.55 5.72 2.53 5.66C2.44 5.4 2.58 5.11 2.84 5.03C3.1 4.94 3.39 5.08 3.47 5.34C3.47 5.35 3.78 6.21 4.43 6.95C5.19 6.04 5.64 4.75 5.86 4H2.5C2.22 4 2 3.78 2 3.5C2 3.22 2.22 3 2.5 3H4V2.5C4 2.22 4.22 2 4.5 2C4.78 2 5 2.22 5 2.5V3H6.5C6.65 3 6.79 3.07 6.89 3.18C6.98 3.3 7.02 3.45 6.99 3.6C6.98 3.65 6.91 3.98 6.77 4.43C7.11 4.17 7.53 4 8 4H9V1C9 0.45 8.55 0 8 0H1C0.45 0 0 0.45 0 1V10C0 10.55 0.45 11 1 11H6V8.31ZM5.67 7.86C5.86 7.93 5.99 8.1 6 8.29V6.35C5.77 6.79 5.5 7.22 5.18 7.61C5.33 7.71 5.49 7.79 5.67 7.86ZM15 5H8C7.45 5 7 5.45 7 6V15C7 15.55 7.45 16 8 16H15C15.55 16 16 15.55 16 15V6C16 5.45 15.55 5 15 5ZM13.7 12.96C13.4459 13.0656 13.1538 12.9505 13.04 12.7L12.73 12H10.27L9.96 12.7C9.85 12.95 9.55 13.07 9.3 12.95C9.05 12.83 8.93 12.54 9.05 12.29L11.05 7.79C11.21 7.43 11.8 7.43 11.96 7.79L13.96 12.29C14.07 12.55 13.96 12.84 13.7 12.96ZM10.71 11H12.29L11.5 9.23L10.71 11Z"
|
|
4809
4927
|
})));
|
|
4810
4928
|
};
|
|
4811
4929
|
|