@lobehub/icons 2.11.0 → 2.13.0

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.
@@ -10,12 +10,12 @@ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("
10
10
  import { memo } from 'react';
11
11
  import IconAvatar from "../../features/IconAvatar";
12
12
  import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
13
- import Mono from "./Mono";
13
+ import Color from "./Color";
14
14
  import { jsx as _jsx } from "react/jsx-runtime";
15
15
  var Avatar = /*#__PURE__*/memo(function (_ref) {
16
16
  var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
17
17
  return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
18
- Icon: Mono,
18
+ Icon: Color,
19
19
  "aria-label": TITLE,
20
20
  background: AVATAR_BACKGROUND,
21
21
  color: AVATAR_COLOR,
@@ -7,10 +7,16 @@ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t =
7
7
  function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
8
  function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
9
  function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
11
+ function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
12
+ function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
13
+ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
14
+ function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
15
+ function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
10
16
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
17
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
18
  import { memo } from 'react';
13
- import { useFillId } from "../../hooks/useFillId";
19
+ import { useFillIds } from "../../hooks/useFillId";
14
20
  import { TITLE } from "../style";
15
21
  import { jsx as _jsx } from "react/jsx-runtime";
16
22
  import { jsxs as _jsxs } from "react/jsx-runtime";
@@ -19,9 +25,11 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
19
25
  size = _ref$size === void 0 ? '1em' : _ref$size,
20
26
  style = _ref.style,
21
27
  rest = _objectWithoutProperties(_ref, _excluded);
22
- var _useFillId = useFillId(TITLE),
23
- id = _useFillId.id,
24
- fill = _useFillId.fill;
28
+ var _useFillIds = useFillIds(TITLE, 3),
29
+ _useFillIds2 = _slicedToArray(_useFillIds, 3),
30
+ a = _useFillIds2[0],
31
+ b = _useFillIds2[1],
32
+ c = _useFillIds2[2];
25
33
  return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
26
34
  height: size,
27
35
  style: _objectSpread({
@@ -34,28 +42,62 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
34
42
  }, rest), {}, {
35
43
  children: [/*#__PURE__*/_jsx("title", {
36
44
  children: TITLE
37
- }), /*#__PURE__*/_jsx("defs", {
38
- children: /*#__PURE__*/_jsxs("linearGradient", {
39
- id: id,
40
- x1: "0%",
41
- x2: "68.73%",
42
- y1: "100%",
43
- y2: "30.395%",
45
+ }), /*#__PURE__*/_jsx("path", {
46
+ d: "M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z",
47
+ fill: "#3186FF"
48
+ }), /*#__PURE__*/_jsx("path", {
49
+ d: "M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z",
50
+ fill: a.fill
51
+ }), /*#__PURE__*/_jsx("path", {
52
+ d: "M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z",
53
+ fill: b.fill
54
+ }), /*#__PURE__*/_jsx("path", {
55
+ d: "M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z",
56
+ fill: c.fill
57
+ }), /*#__PURE__*/_jsxs("defs", {
58
+ children: [/*#__PURE__*/_jsxs("linearGradient", {
59
+ gradientUnits: "userSpaceOnUse",
60
+ id: a.id,
61
+ x1: "7",
62
+ x2: "11",
63
+ y1: "15.5",
64
+ y2: "12",
65
+ children: [/*#__PURE__*/_jsx("stop", {
66
+ stopColor: "#08B962"
67
+ }), /*#__PURE__*/_jsx("stop", {
68
+ offset: "1",
69
+ stopColor: "#08B962",
70
+ stopOpacity: "0"
71
+ })]
72
+ }), /*#__PURE__*/_jsxs("linearGradient", {
73
+ gradientUnits: "userSpaceOnUse",
74
+ id: b.id,
75
+ x1: "8",
76
+ x2: "11.5",
77
+ y1: "5.5",
78
+ y2: "11",
44
79
  children: [/*#__PURE__*/_jsx("stop", {
45
- offset: "0%",
46
- stopColor: "#1C7DFF"
80
+ stopColor: "#F94543"
47
81
  }), /*#__PURE__*/_jsx("stop", {
48
- offset: "52.021%",
49
- stopColor: "#1C69FF"
82
+ offset: "1",
83
+ stopColor: "#F94543",
84
+ stopOpacity: "0"
85
+ })]
86
+ }), /*#__PURE__*/_jsxs("linearGradient", {
87
+ gradientUnits: "userSpaceOnUse",
88
+ id: c.id,
89
+ x1: "3.5",
90
+ x2: "17.5",
91
+ y1: "13.5",
92
+ y2: "12",
93
+ children: [/*#__PURE__*/_jsx("stop", {
94
+ stopColor: "#FABC12"
50
95
  }), /*#__PURE__*/_jsx("stop", {
51
- offset: "100%",
52
- stopColor: "#F0DCD6"
96
+ offset: ".46",
97
+ stopColor: "#FABC12",
98
+ stopOpacity: "0"
53
99
  })]
54
- })
55
- }), /*#__PURE__*/_jsx("path", {
56
- d: "M12 24A14.304 14.304 0 000 12 14.304 14.304 0 0012 0a14.305 14.305 0 0012 12 14.305 14.305 0 00-12 12",
57
- fill: fill,
58
- fillRule: "nonzero"
100
+ })]
59
101
  })]
60
102
  }));
61
103
  });
@@ -33,7 +33,7 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
33
33
  children: [/*#__PURE__*/_jsx("title", {
34
34
  children: TITLE
35
35
  }), /*#__PURE__*/_jsx("path", {
36
- d: "M12 24A14.304 14.304 0 000 12 14.304 14.304 0 0012 0a14.305 14.305 0 0012 12 14.305 14.305 0 00-12 12"
36
+ d: "M20.616 10.835a14.147 14.147 0 01-4.45-3.001 14.111 14.111 0 01-3.678-6.452.503.503 0 00-.975 0 14.134 14.134 0 01-3.679 6.452 14.155 14.155 0 01-4.45 3.001c-.65.28-1.318.505-2.002.678a.502.502 0 000 .975c.684.172 1.35.397 2.002.677a14.147 14.147 0 014.45 3.001 14.112 14.112 0 013.679 6.453.502.502 0 00.975 0c.172-.685.397-1.351.677-2.003a14.145 14.145 0 013.001-4.45 14.113 14.113 0 016.453-3.678.503.503 0 000-.975 13.245 13.245 0 01-2.003-.678z"
37
37
  })]
38
38
  }));
39
39
  });
@@ -1,14 +1,10 @@
1
1
  import Avatar from './components/Avatar';
2
- import BrandColor from './components/BrandColor';
3
- import BrandMono from './components/BrandMono';
4
2
  import Color from './components/Color';
5
3
  import Combine from './components/Combine';
6
4
  import Mono from './components/Mono';
7
5
  import Text from './components/Text';
8
6
  export type CompoundedIcon = typeof Mono & {
9
7
  Avatar: typeof Avatar;
10
- Brand: typeof BrandMono;
11
- BrandColor: typeof BrandColor;
12
8
  Color: typeof Color;
13
9
  Combine: typeof Combine;
14
10
  Text: typeof Text;
@@ -1,19 +1,14 @@
1
1
  import Avatar from "./components/Avatar";
2
- import BrandColor from "./components/BrandColor";
3
- import BrandMono from "./components/BrandMono";
4
2
  import Color from "./components/Color";
5
3
  import Combine from "./components/Combine";
6
4
  import Mono from "./components/Mono";
7
5
  import Text from "./components/Text";
8
- import { COLOR_GRADIENT, COLOR_PRIMARY, TITLE } from "./style";
6
+ import { COLOR_PRIMARY, TITLE } from "./style";
9
7
  var Icons = Mono;
10
8
  Icons.Color = Color;
11
9
  Icons.Text = Text;
12
10
  Icons.Combine = Combine;
13
11
  Icons.Avatar = Avatar;
14
- Icons.Brand = BrandMono;
15
- Icons.BrandColor = BrandColor;
16
12
  Icons.colorPrimary = COLOR_PRIMARY;
17
- Icons.colorGradient = COLOR_GRADIENT;
18
13
  Icons.title = TITLE;
19
14
  export default Icons;
@@ -1,8 +1,7 @@
1
1
  export declare const TITLE = "Gemini";
2
2
  export declare const COMBINE_TEXT_MULTIPLE = 0.8;
3
3
  export declare const COMBINE_SPACE_MULTIPLE = 0.2;
4
- export declare const COLOR_PRIMARY = "#1C69FF";
5
- export declare const COLOR_GRADIENT = "linear-gradient(45deg, #1C69FF 40%, #F0DCD6 100%)";
6
- export declare const AVATAR_BACKGROUND = "linear-gradient(45deg, #1C69FF 40%, #F0DCD6 100%)";
4
+ export declare const COLOR_PRIMARY = "#fff";
5
+ export declare const AVATAR_BACKGROUND = "#fff";
7
6
  export declare const AVATAR_COLOR = "#fff";
8
- export declare const AVATAR_ICON_MULTIPLE = 0.6;
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.8;
@@ -1,10 +1,9 @@
1
1
  export var TITLE = 'Gemini';
2
2
  export var COMBINE_TEXT_MULTIPLE = 0.8;
3
3
  export var COMBINE_SPACE_MULTIPLE = 0.2;
4
- export var COLOR_PRIMARY = '#1C69FF';
5
- export var COLOR_GRADIENT = 'linear-gradient(45deg, #1C69FF 40%, #F0DCD6 100%)';
4
+ export var COLOR_PRIMARY = '#fff';
6
5
 
7
6
  // Avatar constants
8
- export var AVATAR_BACKGROUND = COLOR_GRADIENT;
7
+ export var AVATAR_BACKGROUND = COLOR_PRIMARY;
9
8
  export var AVATAR_COLOR = '#fff';
10
- export var AVATAR_ICON_MULTIPLE = 0.6;
9
+ export var AVATAR_ICON_MULTIPLE = 0.8;
@@ -10,7 +10,7 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
10
10
  function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
11
  function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
12
  import { memo } from 'react';
13
- import { COLOR_PRIMARY, TITLE } from "../style";
13
+ import { TITLE } from "../style";
14
14
  import { jsx as _jsx } from "react/jsx-runtime";
15
15
  import { jsxs as _jsxs } from "react/jsx-runtime";
16
16
  var Icon = /*#__PURE__*/memo(function (_ref) {
@@ -32,8 +32,8 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
32
32
  children: TITLE
33
33
  }), /*#__PURE__*/_jsx("path", {
34
34
  clipRule: "evenodd",
35
- d: "M20.663 0h-1.741c-5.575 0-8.788 3.56-8.788 9.018v.937a7.161 7.161 0 105.043 5.451h5.486a2.623 2.623 0 100-5.246h-5.458V8.787c0-2.09 1.51-3.6 3.717-3.6h1.741a2.594 2.594 0 000-5.187zM10.29 16.839a2.13 2.13 0 10-4.258-.094 2.13 2.13 0 004.258.094z",
36
- fill: COLOR_PRIMARY,
35
+ d: "M22.956 6.521H12.522c-.577 0-1.044.468-1.044 1.044v3.13c0 .577-.466 1.044-1.043 1.044H1.044c-.577 0-1.044.467-1.044 1.044v4.174C0 17.533.467 18 1.044 18h10.434c.577 0 1.044-.467 1.044-1.043v-3.13c0-.578.466-1.044 1.043-1.044h9.391c.577 0 1.044-.467 1.044-1.044V7.565c0-.576-.467-1.044-1.044-1.044z",
36
+ fill: "#6E29F6",
37
37
  fillRule: "evenodd"
38
38
  })]
39
39
  }));
@@ -34,7 +34,7 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
34
34
  children: TITLE
35
35
  }), /*#__PURE__*/_jsx("path", {
36
36
  clipRule: "evenodd",
37
- d: "M20.663 0h-1.741c-5.575 0-8.788 3.56-8.788 9.018v.937a7.161 7.161 0 105.043 5.451h5.486a2.623 2.623 0 100-5.246h-5.458V8.787c0-2.09 1.51-3.6 3.717-3.6h1.741a2.594 2.594 0 000-5.187zM10.29 16.839a2.13 2.13 0 10-4.258-.094 2.13 2.13 0 004.258.094z"
37
+ d: "M22.956 6.521H12.522c-.577 0-1.044.468-1.044 1.044v3.13c0 .577-.466 1.044-1.043 1.044H1.044c-.577 0-1.044.467-1.044 1.044v4.174C0 17.533.467 18 1.044 18h10.434c.577 0 1.044-.467 1.044-1.043v-3.13c0-.578.466-1.044 1.043-1.044h9.391c.577 0 1.044-.467 1.044-1.044V7.565c0-.576-.467-1.044-1.044-1.044z"
38
38
  })]
39
39
  }));
40
40
  });
@@ -26,14 +26,14 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
26
26
  flex: 'none',
27
27
  lineHeight: 1
28
28
  }, style),
29
- viewBox: "0 0 230 24",
29
+ viewBox: "0 0 140 24",
30
30
  xmlns: "http://www.w3.org/2000/svg"
31
31
  }, rest), {}, {
32
32
  children: [/*#__PURE__*/_jsx("title", {
33
33
  children: TITLE
34
34
  }), /*#__PURE__*/_jsx("path", {
35
35
  clipRule: "evenodd",
36
- d: "M25.504 22V2h3.481v20h-3.481zM35 2v15.668H52.49V22H33.806c-.623 0-1.16-.274-1.611-.82-.45-.547-.675-1.215-.675-2.003V2h3.481zM55.91 22V2h3.48v20h-3.48zm69.727-4.332V2h3.325v20h-3.325L111.373 6.444V22h-3.326V3.556c0-.393.104-.732.312-1.017.207-.285.467-.427.78-.427h2.234l14.266 15.555h-.002zM159.319 2v15.668h17.487V22h-18.682c-.624 0-1.16-.274-1.61-.82-.45-.547-.675-1.215-.675-2.003V2h3.48zm67.061 17.637c1.247-1.575 1.87-3.457 1.87-5.645V2h-3.429v11.992c0 1.007-.286 1.86-.857 2.56s-1.255 1.05-2.052 1.05h-4.727V2h-3.325v15.602h-4.78c-.796 0-1.473-.35-2.026-1.05-.554-.7-.832-1.553-.832-2.56V2h-3.428v11.992c0 2.188.615 4.07 1.843 5.645 1.23 1.575 2.712 2.363 4.443 2.363h12.832c1.732 0 3.222-.788 4.468-2.363zm-156.556-1.97h13.124V22H69.824c-1.42 0-2.736-.449-3.949-1.345-1.213-.898-2.172-2.1-2.883-3.611-.71-1.509-1.064-3.162-1.064-4.955 0-1.838.355-3.513 1.065-5.022.71-1.51 1.67-2.712 2.882-3.61 1.213-.896 2.529-1.345 3.95-1.345h13.123v4.332H69.824c-1.213 0-2.25.547-3.117 1.641-.866 1.094-1.3 2.429-1.3 4.004 0 1.531.434 2.843 1.3 3.937.866 1.095 1.904 1.642 3.117 1.642zm33.843 2.003c-1.23 1.554-2.727 2.33-4.493 2.33H90.88c-1.731 0-3.211-.776-4.441-2.33s-1.845-3.425-1.845-5.613V10.12c0-2.187.615-4.07 1.845-5.645 1.23-1.575 2.71-2.362 4.441-2.362h8.293c1.766 0 3.263.787 4.493 2.362 1.23 1.575 1.845 3.456 1.845 5.645v3.938c0 2.187-.615 4.058-1.845 5.612zm48.748-17.558v4.332h-17.566v3.412h17.566v4.333h-17.486V22h-3.43V11.666h-.009V2.625h.009v-.513h20.916zm45.999 17.558c-1.229 1.554-2.728 2.33-4.494 2.33h-8.292c-1.732 0-3.212-.776-4.442-2.33s-1.844-3.425-1.844-5.613V10.12c0-2.187.614-4.07 1.844-5.645 1.23-1.575 2.71-2.362 4.442-2.362h8.292c1.766 0 3.265.787 4.494 2.362 1.23 1.575 1.845 3.456 1.845 5.645v3.938c0 2.187-.615 4.058-1.845 5.612zm-176.848.557C20.631 21.41 19.505 22 18.19 22H2v-4.332H18.19c.381 0 .701-.163.962-.492.259-.328.388-.733.388-1.215 0-.481-.129-.886-.388-1.213-.261-.33-.581-.493-.962-.493H6.78c-1.316 0-2.441-.591-3.378-1.773C2.467 11.303 2 9.88 2 8.216c0-1.662.467-3.085 1.402-4.266.936-1.181 2.062-1.772 3.378-1.772h15.305V6.51H6.78c-.381 0-.701.164-.961.493-.26.327-.39.732-.39 1.213 0 .482.13.886.39 1.214.26.329.58.492.961.492h11.409c1.316 0 2.442.592 3.377 1.773.935 1.181 1.403 2.604 1.403 4.266 0 1.663-.468 3.085-1.403 4.266zm79.66-12.667c-.572-.7-1.256-1.05-2.052-1.05H90.88c-.796 0-1.471.35-2.025 1.05-.555.7-.832 1.554-.832 2.56v3.938c.001 1.006.277 1.86.832 2.56.554.7 1.229 1.05 2.025 1.05h8.293c.796 0 1.481-.35 2.052-1.05.571-.7.858-1.553.858-2.56V10.12c0-1.006-.287-1.86-.858-2.56zm94.747 0c-.572-.7-1.257-1.05-2.053-1.05h-8.292c-.797 0-1.472.35-2.025 1.05-.555.7-.832 1.554-.832 2.56v3.938c0 1.006.277 1.86.832 2.56.553.7 1.228 1.05 2.025 1.05h8.292c.796 0 1.481-.35 2.053-1.05.571-.7.857-1.553.857-2.56V10.12c0-1.006-.286-1.86-.857-2.56z"
36
+ d: "M13.075 16.36c0-4.47-10.605-.758-10.605-8.238 0-3.93 3.527-5.746 6.673-5.746 2.333 0 4.313.731 6.184 2.276l-1.438 2.44c-1.438-1.355-2.956-1.979-4.746-1.979-1.628 0-3.553.895-3.553 2.9 0 4.472 10.605.758 10.605 8.238 0 4.012-3.608 5.746-6.954 5.746-2.848 0-5.506-1.056-7.241-3.278l1.501-2.575c1.735 2.168 3.58 3.116 5.722 3.116 1.817 0 3.852-.84 3.852-2.9zm5.495-8.236h2.984v13.551h-2.983V8.125zM20.063 2c1.004 0 1.763.732 1.763 1.762s-.76 1.761-1.763 1.761c-1.004 0-1.763-.732-1.763-1.761 0-1.03.76-1.762 1.763-1.762zm4.648.703h2.983v18.972H24.71V2.703zm6.146 5.421h2.983v13.551h-2.983V8.125zM32.347 2c1.004 0 1.763.732 1.763 1.762s-.76 1.761-1.763 1.761c-1.004 0-1.763-.732-1.763-1.761 0-1.03.76-1.762 1.763-1.762zm3.855 12.897c0-4.12 3.064-7.1 7.268-7.1 2.333 0 4.367 1.003 5.615 2.522l-2.224 1.813c-.732-.921-1.953-1.571-3.39-1.571-2.468 0-4.285 1.788-4.285 4.336s1.817 4.337 4.284 4.337c1.438 0 2.658-.65 3.39-1.572l2.225 1.817C47.837 20.995 45.695 22 43.47 22c-4.204 0-7.268-2.981-7.268-7.101v-.002zm21.01-4.336c-2.495 0-4.285 1.896-4.285 4.336 0 2.44 1.79 4.337 4.285 4.337s4.285-1.897 4.285-4.337c0-2.44-1.79-4.336-4.285-4.336zm0-2.765c4.122 0 7.268 3.01 7.268 7.101 0 4.093-3.146 7.101-7.268 7.101-4.123 0-7.268-3.008-7.268-7.1 0-4.093 3.145-7.102 7.268-7.102zm12.57 6.589v7.29H66.8V8.125h2.983v2.14C70.568 8.64 72.303 7.8 74.094 7.8c3.064 0 5.397 2.114 5.397 6.097v7.29h-2.984v-7.67c0-2.194-1.302-3.388-3.2-3.388-2.034 0-3.526 1.355-3.526 3.768l.001.488zm16.017 7.29h-3.118V2.703h12.07V5.55H85.8v5.42h7.974v2.792H85.8v7.914zM96.592 2.703h2.983v18.972h-2.983V2.703zm12.555 7.858c-2.495 0-4.285 1.896-4.285 4.336 0 2.44 1.79 4.337 4.285 4.337s4.284-1.897 4.284-4.337c0-2.44-1.789-4.336-4.284-4.336zm0-2.765c4.122 0 7.268 3.01 7.268 7.101 0 4.093-3.146 7.101-7.268 7.101-4.123 0-7.268-3.008-7.268-7.1 0-4.093 3.145-7.102 7.268-7.102zm25.933.328H138l-3.701 13.551h-3.961l-2.603-10.083-2.775 10.083h-3.961l-3.556-13.551h2.977l2.661 10.816 2.949-10.817h3.412l2.833 10.816 2.805-10.815z"
37
37
  })]
38
38
  }));
39
39
  });
@@ -1,7 +1,7 @@
1
1
  export declare const TITLE = "SiliconCloud";
2
- export declare const COMBINE_TEXT_MULTIPLE = 0.75;
3
- export declare const COMBINE_SPACE_MULTIPLE = 0.3;
4
- export declare const COLOR_PRIMARY = "#7C3AED";
5
- export declare const AVATAR_BACKGROUND = "#7C3AED";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.7;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#6E29F6";
5
+ export declare const AVATAR_BACKGROUND = "#6E29F6";
6
6
  export declare const AVATAR_COLOR = "#fff";
7
- export declare const AVATAR_ICON_MULTIPLE = 0.6;
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.7;
@@ -1,9 +1,9 @@
1
1
  export var TITLE = 'SiliconCloud';
2
- export var COMBINE_TEXT_MULTIPLE = 0.75;
3
- export var COMBINE_SPACE_MULTIPLE = 0.3;
4
- export var COLOR_PRIMARY = '#7C3AED';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.7;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#6E29F6';
5
5
 
6
6
  // Avatar constants
7
7
  export var AVATAR_BACKGROUND = COLOR_PRIMARY;
8
8
  export var AVATAR_COLOR = '#fff';
9
- export var AVATAR_ICON_MULTIPLE = 0.6;
9
+ export var AVATAR_ICON_MULTIPLE = 0.7;
package/es/toc.js CHANGED
@@ -1339,8 +1339,7 @@ var toc = [{
1339
1339
  },
1340
1340
  "title": "Friendli"
1341
1341
  }, {
1342
- "color": "#1C69FF",
1343
- "colorGradient": "linear-gradient(45deg, #1C69FF 40%, #F0DCD6 100%)",
1342
+ "color": "#fff",
1344
1343
  "desc": "https://deepmind.google/technologies/gemini",
1345
1344
  "docsUrl": "gemini",
1346
1345
  "fullTitle": "Gemini (Google)",
@@ -1348,8 +1347,8 @@ var toc = [{
1348
1347
  "id": "Gemini",
1349
1348
  "param": {
1350
1349
  "hasAvatar": true,
1351
- "hasBrand": true,
1352
- "hasBrandColor": true,
1350
+ "hasBrand": false,
1351
+ "hasBrandColor": false,
1353
1352
  "hasColor": true,
1354
1353
  "hasCombine": true,
1355
1354
  "hasText": true,
@@ -3172,8 +3171,8 @@ var toc = [{
3172
3171
  },
3173
3172
  "title": "SenseNova"
3174
3173
  }, {
3175
- "color": "#7C3AED",
3176
- "desc": "https://siliconflow.cn/zh-cn/",
3174
+ "color": "#6E29F6",
3175
+ "desc": "https://www.siliconflow.com",
3177
3176
  "docsUrl": "silicon-cloud",
3178
3177
  "fullTitle": "SiliconCloud (SiliconFlow)",
3179
3178
  "group": "provider",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "2.11.0",
3
+ "version": "2.13.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",
@@ -1,3 +0,0 @@
1
- import type { IconType } from "../../types";
2
- declare const Icon: IconType;
3
- export default Icon;
@@ -1,60 +0,0 @@
1
- 'use client';
2
-
3
- function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
- var _excluded = ["size", "style"];
5
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
- function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
- import { memo } from 'react';
13
- import { useFillId } from "../../hooks/useFillId";
14
- import { TITLE } from "../style";
15
- import { jsx as _jsx } from "react/jsx-runtime";
16
- import { jsxs as _jsxs } from "react/jsx-runtime";
17
- var Icon = /*#__PURE__*/memo(function (_ref) {
18
- var _ref$size = _ref.size,
19
- size = _ref$size === void 0 ? '1em' : _ref$size,
20
- style = _ref.style,
21
- rest = _objectWithoutProperties(_ref, _excluded);
22
- var _useFillId = useFillId("".concat(TITLE, "-brand")),
23
- id = _useFillId.id,
24
- fill = _useFillId.fill;
25
- return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
26
- height: size,
27
- style: _objectSpread({
28
- flex: 'none',
29
- lineHeight: 1
30
- }, style),
31
- viewBox: "0 0 64 24",
32
- xmlns: "http://www.w3.org/2000/svg"
33
- }, rest), {}, {
34
- children: [/*#__PURE__*/_jsx("title", {
35
- children: TITLE
36
- }), /*#__PURE__*/_jsx("defs", {
37
- children: /*#__PURE__*/_jsxs("radialGradient", {
38
- cx: "67.977%",
39
- cy: "18.976%",
40
- fx: "67.977%",
41
- fy: "18.976%",
42
- gradientTransform: "scale(-.3667 -1) rotate(-20.122 -1.657 7.14)",
43
- id: id,
44
- r: "192.358%",
45
- children: [/*#__PURE__*/_jsx("stop", {
46
- offset: "0%",
47
- stopColor: "#1C69FF"
48
- }), /*#__PURE__*/_jsx("stop", {
49
- offset: "100%",
50
- stopColor: "#94BCFE"
51
- })]
52
- })
53
- }), /*#__PURE__*/_jsx("path", {
54
- d: "M16.759 14.825c0 2.037-.605 3.66-1.815 4.868-1.359 1.439-3.146 2.158-5.36 2.158-2.12 0-3.915-.733-5.383-2.2C2.734 18.187 2 16.38 2 14.236c0-2.145.734-3.95 2.201-5.417C5.67 7.352 7.463 6.62 9.583 6.62c1.074 0 2.086.19 3.037.57.952.38 1.733.917 2.345 1.609l-1.346 1.344c-.448-.543-1.03-.967-1.743-1.273a5.763 5.763 0 00-2.293-.458c-1.59 0-2.935.55-4.036 1.65-1.087 1.113-1.63 2.504-1.63 4.174 0 1.67.543 3.061 1.63 4.175 1.1 1.1 2.446 1.65 4.036 1.65 1.454 0 2.664-.408 3.629-1.223.964-.814 1.522-1.934 1.671-3.36h-5.3v-1.751h7.074c.068.38.102.747.102 1.1m5.886-3.563c1.496 0 2.687.483 3.572 1.45.886.967 1.329 2.32 1.329 4.062l-.021.206h-7.928c.028.987.357 1.783.989 2.386a3.164 3.164 0 002.265.905c1.208 0 2.155-.603 2.841-1.81l1.689.823a5.03 5.03 0 01-1.884 1.995c-.803.48-1.713.72-2.729.72-1.482 0-2.704-.507-3.665-1.522-.96-1.015-1.441-2.297-1.441-3.847 0-1.536.467-2.814 1.4-3.836.934-1.022 2.128-1.532 3.583-1.532m-.041 1.727c-.714 0-1.328.22-1.843.659-.515.438-.855 1.028-1.02 1.769h5.787a2.508 2.508 0 00-.855-1.738c-.515-.46-1.204-.69-2.07-.69m8.049 8.65h-1.89V11.59h1.807v1.395h.083c.287-.492.728-.902 1.324-1.23.595-.328 1.187-.492 1.775-.492.74 0 1.39.17 1.95.512.562.342.972.814 1.232 1.415.835-1.285 1.991-1.927 3.47-1.927 1.163 0 2.06.355 2.689 1.066.63.71.944 1.723.944 3.035v6.275h-1.889v-5.988c0-.943-.17-1.623-.513-2.04-.342-.417-.917-.626-1.724-.626-.726 0-1.334.308-1.827.923-.493.615-.74 1.34-.74 2.174v5.557h-1.888v-5.988c0-.943-.17-1.623-.513-2.04-.342-.417-.917-.626-1.724-.626-.726 0-1.335.308-1.827.923-.493.615-.74 1.34-.74 2.174v5.557zM46.749 6.767c.37 0 .685.13.946.39.26.26.39.575.39.945s-.13.685-.39.945c-.26.26-.576.39-.946.39s-.685-.13-.946-.39c-.26-.26-.39-.575-.39-.945s.13-.685.39-.945c.26-.26.576-.39.946-.39zM42.825 0a5.08 5.08 0 004.263 4.259 5.08 5.08 0 00-4.263 4.259 5.08 5.08 0 00-4.263-4.26A5.08 5.08 0 0042.825 0zm5.176 11.574V21.64h-2.198V11.574h2.198zM62 8.103c0 .37-.13.685-.39.945-.261.26-.576.39-.946.39s-.686-.13-.946-.39c-.26-.26-.391-.575-.391-.945s.13-.685.39-.945c.261-.26.576-.39.946-.39s.686.13.946.39c.26.26.391.575.391.945m-.085 3.471V21.64h-2.197V11.574h2.197zm-12.57.017h1.806v1.394h.082c.287-.492.729-.902 1.324-1.23a3.797 3.797 0 011.858-.492c1.231 0 2.179.352 2.843 1.056.664.704.995 1.705.995 3.004v6.316h-1.888v-6.193c-.041-1.64-.87-2.46-2.484-2.46-.753 0-1.382.303-1.889.912-.506.608-.76 1.336-.76 2.184v5.557h-1.888V11.591z",
55
- fill: fill,
56
- fillRule: "nonzero"
57
- })]
58
- }));
59
- });
60
- export default Icon;
@@ -1,3 +0,0 @@
1
- import type { IconType } from "../../types";
2
- declare const Icon: IconType;
3
- export default Icon;
@@ -1,39 +0,0 @@
1
- 'use client';
2
-
3
- function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
- var _excluded = ["size", "style"];
5
- function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
- function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
- function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
- function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
- function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
- function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
- function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
- import { memo } from 'react';
13
- import { TITLE } from "../style";
14
- import { jsx as _jsx } from "react/jsx-runtime";
15
- import { jsxs as _jsxs } from "react/jsx-runtime";
16
- var Icon = /*#__PURE__*/memo(function (_ref) {
17
- var _ref$size = _ref.size,
18
- size = _ref$size === void 0 ? '1em' : _ref$size,
19
- style = _ref.style,
20
- rest = _objectWithoutProperties(_ref, _excluded);
21
- return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
- fill: "currentColor",
23
- fillRule: "evenodd",
24
- height: size,
25
- style: _objectSpread({
26
- flex: 'none',
27
- lineHeight: 1
28
- }, style),
29
- viewBox: "0 0 64 24",
30
- xmlns: "http://www.w3.org/2000/svg"
31
- }, rest), {}, {
32
- children: [/*#__PURE__*/_jsx("title", {
33
- children: TITLE
34
- }), /*#__PURE__*/_jsx("path", {
35
- d: "M16.759 14.825c0 2.037-.605 3.66-1.815 4.868-1.359 1.439-3.146 2.158-5.36 2.158-2.12 0-3.915-.733-5.383-2.2C2.734 18.187 2 16.38 2 14.236c0-2.145.734-3.95 2.201-5.417C5.67 7.352 7.463 6.62 9.583 6.62c1.074 0 2.086.19 3.037.57.952.38 1.733.917 2.345 1.609l-1.346 1.344c-.448-.543-1.03-.967-1.743-1.273a5.763 5.763 0 00-2.293-.458c-1.59 0-2.935.55-4.036 1.65-1.087 1.113-1.63 2.504-1.63 4.174 0 1.67.543 3.061 1.63 4.175 1.1 1.1 2.446 1.65 4.036 1.65 1.454 0 2.664-.408 3.629-1.223.964-.814 1.522-1.934 1.671-3.36h-5.3v-1.751h7.074c.068.38.102.747.102 1.1m5.886-3.563c1.496 0 2.687.483 3.572 1.45.886.967 1.329 2.32 1.329 4.062l-.021.206h-7.928c.028.987.357 1.783.989 2.386a3.164 3.164 0 002.265.905c1.208 0 2.155-.603 2.841-1.81l1.689.823a5.03 5.03 0 01-1.884 1.995c-.803.48-1.713.72-2.729.72-1.482 0-2.704-.507-3.665-1.522-.96-1.015-1.441-2.297-1.441-3.847 0-1.536.467-2.814 1.4-3.836.934-1.022 2.128-1.532 3.583-1.532m-.041 1.727c-.714 0-1.328.22-1.843.659-.515.438-.855 1.028-1.02 1.769h5.787a2.508 2.508 0 00-.855-1.738c-.515-.46-1.204-.69-2.07-.69m8.049 8.65h-1.89V11.59h1.807v1.395h.083c.287-.492.728-.902 1.324-1.23.595-.328 1.187-.492 1.775-.492.74 0 1.39.17 1.95.512.562.342.972.814 1.232 1.415.835-1.285 1.991-1.927 3.47-1.927 1.163 0 2.06.355 2.689 1.066.63.71.944 1.723.944 3.035v6.275h-1.889v-5.988c0-.943-.17-1.623-.513-2.04-.342-.417-.917-.626-1.724-.626-.726 0-1.334.308-1.827.923-.493.615-.74 1.34-.74 2.174v5.557h-1.888v-5.988c0-.943-.17-1.623-.513-2.04-.342-.417-.917-.626-1.724-.626-.726 0-1.335.308-1.827.923-.493.615-.74 1.34-.74 2.174v5.557zM46.749 6.767c.37 0 .685.13.946.39.26.26.39.575.39.945s-.13.685-.39.945c-.26.26-.576.39-.946.39s-.685-.13-.946-.39c-.26-.26-.39-.575-.39-.945s.13-.685.39-.945c.26-.26.576-.39.946-.39zM42.825 0a5.08 5.08 0 004.263 4.259 5.08 5.08 0 00-4.263 4.259 5.08 5.08 0 00-4.263-4.26A5.08 5.08 0 0042.825 0zm5.176 11.574V21.64h-2.198V11.574h2.198zM62 8.103c0 .37-.13.685-.39.945-.261.26-.576.39-.946.39s-.686-.13-.946-.39c-.26-.26-.391-.575-.391-.945s.13-.685.39-.945c.261-.26.576-.39.946-.39s.686.13.946.39c.26.26.391.575.391.945m-.085 3.471V21.64h-2.197V11.574h2.197zm-12.57.017h1.806v1.394h.082c.287-.492.729-.902 1.324-1.23a3.797 3.797 0 011.858-.492c1.231 0 2.179.352 2.843 1.056.664.704.995 1.705.995 3.004v6.316h-1.888v-6.193c-.041-1.64-.87-2.46-2.484-2.46-.753 0-1.382.303-1.889.912-.506.608-.76 1.336-.76 2.184v5.557h-1.888V11.591z"
36
- })]
37
- }));
38
- });
39
- export default Icon;