@lobehub/icons 4.6.0 → 4.7.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.
package/README.md CHANGED
@@ -32,7 +32,6 @@ Contributions, corrections & requests can be made on GitHub.
32
32
 
33
33
  ![](https://github.com/lobehub/lobe-icons/assets/17870709/7e2c56d2-d7ea-4cb8-842b-22de162d6486)
34
34
 
35
-
36
35
  </div>
37
36
 
38
37
  <details>
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconAvatarProps } from "../../features/IconAvatar";
3
+ export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
4
+ declare const Avatar: import("react").NamedExoticComponent<AvatarProps>;
5
+ export default Avatar;
@@ -0,0 +1,25 @@
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
+ 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; }
5
+ 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; }
6
+ 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; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ 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); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconAvatar from "../../features/IconAvatar";
12
+ import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
13
+ import Inner from "./Inner";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
16
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
17
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
18
+ Icon: Inner,
19
+ "aria-label": TITLE,
20
+ background: AVATAR_BACKGROUND,
21
+ color: AVATAR_COLOR,
22
+ iconMultiple: AVATAR_ICON_MULTIPLE
23
+ }, rest));
24
+ });
25
+ export default Avatar;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,56 @@
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
+ height: size,
23
+ style: _objectSpread({
24
+ flex: 'none',
25
+ lineHeight: 1
26
+ }, style),
27
+ viewBox: "0 0 24 24",
28
+ width: size,
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M1.5 19.824c0-.548.444-.992.991-.992h.744a.991.991 0 010 1.983H2.49a.991.991 0 01-.991-.991z",
35
+ fill: "#F3AD61"
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M14.837 13.5h7.076c.522 0 .784-.657.413-1.044l-1.634-1.704a3.183 3.183 0 00-4.636 0l-1.633 1.704c-.37.385-.107 1.044.414 1.044zM3.587 13.5h7.076c.521 0 .784-.659.414-1.044l-1.635-1.704a3.183 3.183 0 00-4.636 0l-1.633 1.704c-.37.385-.107 1.044.414 1.044z",
38
+ fill: "#F9C23C"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M12.525 1.521c3.69-.53 5.97 8.923 4.309 12.744-1.662 3.82-5.248 4.657-9.053 6.152a3.49 3.49 0 01-1.279.244c-1.443 0-2.227 1.187-2.774-.282-.707-1.9.22-4.031 2.069-4.757 2.014-.79 3.084-2.308 3.89-4.364.82-2.096.877-2.956.873-5.241-.003-1.827-.123-4.195 1.965-4.496z",
41
+ fill: "#FEEFC2"
42
+ }), /*#__PURE__*/_jsx("path", {
43
+ d: "M16.834 14.264l-7.095-3.257c-.815 1.873-2.29 3.308-4.156 4.043-2.16.848-3.605 3.171-2.422 5.54 2.364 4.727 13.673-.05 13.673-6.325z",
44
+ fill: "#FCD53F"
45
+ }), /*#__PURE__*/_jsx("path", {
46
+ clipRule: "evenodd",
47
+ d: "M13.68 12.362c.296.094.46.41.365.707-1.486 4.65-5.818 6.798-9.689 6.997a.562.562 0 11-.057-1.124c3.553-.182 7.372-2.138 8.674-6.216a.562.562 0 01.707-.364z",
48
+ fill: "#F9C23C",
49
+ fillRule: "evenodd"
50
+ }), /*#__PURE__*/_jsx("path", {
51
+ d: "M17.43 19.85l-7.648-8.835h6.753c1.595.08 2.846 1.433 2.846 3.073v5.664c0 .997-.898 1.302-1.95.098z",
52
+ fill: "#FFF478"
53
+ })]
54
+ }));
55
+ });
56
+ export default Icon;
@@ -0,0 +1,7 @@
1
+ /// <reference types="react" />
2
+ import { type IconCombineProps } from "../../features/IconCombine";
3
+ export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
4
+ type?: 'color' | 'mono';
5
+ }
6
+ declare const Combine: import("react").NamedExoticComponent<CombineProps>;
7
+ export default Combine;
@@ -0,0 +1,32 @@
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 = ["type"];
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 IconCombine from "../../features/IconCombine";
14
+ import { COMBINE_SPACE_MULTIPLE, COMBINE_TEXT_MULTIPLE, TITLE } from "../style";
15
+ import Color from "./Color";
16
+ import Mono from "./Mono";
17
+ import Text from "./Text";
18
+ import { jsx as _jsx } from "react/jsx-runtime";
19
+ var Combine = /*#__PURE__*/memo(function (_ref) {
20
+ var _ref$type = _ref.type,
21
+ type = _ref$type === void 0 ? 'mono' : _ref$type,
22
+ rest = _objectWithoutProperties(_ref, _excluded);
23
+ var Icon = type === 'color' ? Color : Mono;
24
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
25
+ Icon: Icon,
26
+ Text: Text,
27
+ "aria-label": TITLE,
28
+ spaceMultiple: COMBINE_SPACE_MULTIPLE,
29
+ textMultiple: COMBINE_TEXT_MULTIPLE
30
+ }, rest));
31
+ });
32
+ export default Combine;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,59 @@
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
+ height: size,
23
+ style: _objectSpread({
24
+ flex: 'none',
25
+ lineHeight: 1
26
+ }, style),
27
+ viewBox: "0 0 24 24",
28
+ width: size,
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M12.453 1.026c.826-.118 1.574.17 2.207.684.625.508 1.157 1.25 1.596 2.102.797 1.548 1.332 3.555 1.535 5.487a3.689 3.689 0 013.263 1.107l1.634 1.704c.645.674.23 1.89-.775 1.89H19.88l.002.088v5.664l-.014.237c-.028.234-.1.457-.228.647-.177.263-.445.44-.769.485-.613.087-1.256-.302-1.815-.942l-.002-.002-1.387-1.602c-1.57 1.96-4.028 3.442-6.387 4.08-2.409.65-4.976.471-6.262-1.34H2.49c-.823 0-1.49-.668-1.491-1.49l.008-.153A1.492 1.492 0 012.27 18.35c.203-1.603 1.343-2.938 2.804-3.625l.326-.141A6.95 6.95 0 006.554 14H3.587c-1.004 0-1.42-1.218-.775-1.89l1.633-1.704a3.68 3.68 0 015.105-.241 8.88 8.88 0 00.4-1.615c.099-.696.112-1.431.11-2.532 0-.88-.037-2.013.215-2.952.13-.48.342-.946.702-1.319.366-.38.855-.631 1.476-.72z",
35
+ stroke: "#451D1C"
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M1.5 19.824c0-.548.444-.992.991-.992h.744a.991.991 0 010 1.983H2.49a.991.991 0 01-.991-.991z",
38
+ fill: "#F3AD61"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M14.837 13.5h7.076c.522 0 .784-.657.413-1.044l-1.634-1.704a3.183 3.183 0 00-4.636 0l-1.633 1.704c-.37.385-.107 1.044.414 1.044zM3.587 13.5h7.076c.521 0 .784-.659.414-1.044l-1.635-1.704a3.183 3.183 0 00-4.636 0l-1.633 1.704c-.37.385-.107 1.044.414 1.044z",
41
+ fill: "#F9C23C"
42
+ }), /*#__PURE__*/_jsx("path", {
43
+ d: "M12.525 1.521c3.69-.53 5.97 8.923 4.309 12.744-1.662 3.82-5.248 4.657-9.053 6.152a3.49 3.49 0 01-1.279.244c-1.443 0-2.227 1.187-2.774-.282-.707-1.9.22-4.031 2.069-4.757 2.014-.79 3.084-2.308 3.89-4.364.82-2.096.877-2.956.873-5.241-.003-1.827-.123-4.195 1.965-4.496z",
44
+ fill: "#FEEFC2"
45
+ }), /*#__PURE__*/_jsx("path", {
46
+ d: "M16.834 14.264l-7.095-3.257c-.815 1.873-2.29 3.308-4.156 4.043-2.16.848-3.605 3.171-2.422 5.54 2.364 4.727 13.673-.05 13.673-6.325z",
47
+ fill: "#FCD53F"
48
+ }), /*#__PURE__*/_jsx("path", {
49
+ clipRule: "evenodd",
50
+ d: "M13.68 12.362c.296.094.46.41.365.707-1.486 4.65-5.818 6.798-9.689 6.997a.562.562 0 11-.057-1.124c3.553-.182 7.372-2.138 8.674-6.216a.562.562 0 01.707-.364z",
51
+ fill: "#F9C23C",
52
+ fillRule: "evenodd"
53
+ }), /*#__PURE__*/_jsx("path", {
54
+ d: "M17.43 19.85l-7.648-8.835h6.753c1.595.08 2.846 1.433 2.846 3.073v5.664c0 .997-.898 1.302-1.95.098z",
55
+ fill: "#FFF478"
56
+ })]
57
+ }));
58
+ });
59
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,40 @@
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 24 24",
30
+ width: size,
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M8.342 13.16H3.455c-.513 0-.772-.639-.408-1.012l1.608-1.653a3.166 3.166 0 014.565 0l.513.527.006-.015.038.017c.735-1.93.786-2.809.783-5.007v-.275c-.01-1.782-.02-3.935 1.965-4.22 2.603-.375 4.504 4.219 4.815 8.299a3.166 3.166 0 013.38.774l1.609 1.653c.365.375.106 1.012-.407 1.012H19.27c.072.264.11.542.11.828v5.664c0 .914-.994 1.292-1.602.576-.229-.27-1.067-1.25-2.155-2.52-2.92 4.183-10.266 6.462-12.34 3.006a.915.915 0 01-.05 0h-.743a.991.991 0 110-1.982h.246c.014-1.687 1.23-3.148 2.846-3.783a7.448 7.448 0 002.76-1.889zm7.543-2.145c0-.127-.001-.256-.005-.388a15.693 15.693 0 00-.632-3.939c-.38-1.282-.887-2.33-1.425-2.992-.545-.671-.906-.715-1.085-.69-.223.032-.292.098-.322.129-.05.052-.135.176-.209.45-.152.567-.15 1.286-.147 2.186v.244c.002 1.134-.009 2.028-.145 2.92a11.292 11.292 0 01-.537 2.08h4.507zm-3.468 3.056c-1.636 3.166-4.981 4.71-8.118 4.87a.562.562 0 00.057 1.124c3.294-.169 6.921-1.749 8.845-5.081l-.784-.913z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
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: "nonzero",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 169 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: "M159.626 22c-1.002 0-1.886-.191-2.651-.574a4.55 4.55 0 01-1.803-1.666c-.437-.71-.656-1.521-.656-2.432 0-.984.255-1.822.765-2.514.51-.71 1.194-1.248 2.05-1.612.856-.383 1.812-.574 2.869-.574.564 0 1.083.037 1.557.11.492.072.92.164 1.284.273.383.109.683.218.902.328v-.656c0-.838-.31-1.512-.929-2.022-.601-.528-1.403-.792-2.405-.792-.692 0-1.348.154-1.967.464a4.31 4.31 0 00-1.53 1.257l-2.158-1.694a6.783 6.783 0 011.53-1.448 6.114 6.114 0 011.967-.93 7.849 7.849 0 012.268-.327c2.076 0 3.661.5 4.754 1.503 1.111.983 1.667 2.395 1.667 4.235v8.634h-3.197v-1.557h-.191a4.409 4.409 0 01-.957.983c-.4.291-.865.528-1.393.71-.528.2-1.12.301-1.776.301zm.683-2.596c.747 0 1.393-.164 1.94-.491a3.547 3.547 0 001.257-1.34 3.827 3.827 0 00.437-1.775 5.033 5.033 0 00-1.421-.547 7.082 7.082 0 00-1.667-.191c-1.129 0-1.921.219-2.377.656a2.149 2.149 0 00-.683 1.612c0 .6.219 1.102.656 1.503.437.382 1.056.573 1.858.573zM139.245 21.563V7.628h3.06v1.83h.192c.4-.673.992-1.22 1.776-1.639a5.303 5.303 0 012.541-.628c1.712 0 2.996.52 3.852 1.557.875 1.02 1.312 2.377 1.312 4.072v8.743h-3.279v-8.306c0-1.02-.255-1.776-.765-2.268-.51-.51-1.193-.765-2.049-.765-.674 0-1.266.191-1.776.574-.51.364-.911.856-1.203 1.475a4.768 4.768 0 00-.409 1.995v7.295h-3.252zM128.487 22c-1.002 0-1.885-.191-2.65-.574a4.56 4.56 0 01-1.804-1.666c-.437-.71-.655-1.521-.655-2.432 0-.984.255-1.822.765-2.514.51-.71 1.193-1.248 2.049-1.612.856-.383 1.812-.574 2.869-.574.565 0 1.084.037 1.557.11.492.072.92.164 1.284.273.383.109.684.218.902.328v-.656c0-.838-.31-1.512-.929-2.022-.601-.528-1.402-.792-2.404-.792-.692 0-1.348.154-1.968.464a4.31 4.31 0 00-1.53 1.257l-2.158-1.694a6.783 6.783 0 011.53-1.448 6.124 6.124 0 011.967-.93 7.854 7.854 0 012.268-.327c2.077 0 3.661.5 4.754 1.503 1.111.983 1.667 2.395 1.667 4.235v8.634h-3.197v-1.557h-.191a4.425 4.425 0 01-.956.983 5.29 5.29 0 01-1.394.71c-.528.2-1.12.301-1.776.301zm.683-2.596c.747 0 1.394-.164 1.94-.491a3.532 3.532 0 001.257-1.34 3.827 3.827 0 00.437-1.775 5.021 5.021 0 00-1.421-.547 7.074 7.074 0 00-1.666-.191c-1.13 0-1.922.219-2.377.656a2.146 2.146 0 00-.684 1.612c0 .6.219 1.102.656 1.503.437.382 1.057.573 1.858.573zM108.106 21.563V7.628h3.06v1.83h.192c.4-.673.992-1.22 1.776-1.639a5.303 5.303 0 012.541-.628c1.712 0 2.996.52 3.852 1.557.875 1.02 1.312 2.377 1.312 4.072v8.743h-3.279v-8.306c0-1.02-.255-1.776-.765-2.268-.51-.51-1.193-.765-2.049-.765-.674 0-1.266.191-1.776.574-.51.364-.911.856-1.203 1.475a4.768 4.768 0 00-.409 1.995v7.295h-3.252zM97.348 22c-1.002 0-1.885-.191-2.65-.574a4.552 4.552 0 01-1.803-1.666c-.438-.71-.656-1.521-.656-2.432 0-.984.255-1.822.765-2.514.51-.71 1.193-1.248 2.049-1.612.856-.383 1.813-.574 2.869-.574.565 0 1.084.037 1.557.11.492.072.92.164 1.285.273.382.109.683.218.901.328v-.656c0-.838-.309-1.512-.929-2.022-.601-.528-1.402-.792-2.404-.792a4.34 4.34 0 00-1.967.464c-.62.31-1.13.729-1.53 1.257l-2.16-1.694a6.79 6.79 0 011.531-1.448 6.119 6.119 0 011.967-.93 7.85 7.85 0 012.268-.327c2.077 0 3.661.5 4.754 1.503 1.111.983 1.667 2.395 1.667 4.235v8.634h-3.197v-1.557h-.191a4.425 4.425 0 01-.956.983 5.286 5.286 0 01-1.394.71c-.528.2-1.12.301-1.776.301zm.683-2.596c.747 0 1.394-.164 1.94-.491a3.533 3.533 0 001.257-1.34 3.815 3.815 0 00.437-1.775 5.01 5.01 0 00-1.421-.547 7.076 7.076 0 00-1.666-.191c-1.13 0-1.922.219-2.377.656a2.147 2.147 0 00-.683 1.612c0 .6.218 1.102.655 1.503.438.382 1.057.573 1.858.573zM76.151 21.563V2h7.514c1.093 0 2.077.228 2.951.683.893.455 1.603 1.075 2.131 1.858.529.765.793 1.64.793 2.623 0 1.002-.255 1.858-.765 2.568a4.787 4.787 0 01-1.858 1.613v.19a4.941 4.941 0 012.404 1.695c.62.783.93 1.74.93 2.869 0 1.11-.292 2.076-.875 2.896-.565.802-1.32 1.43-2.268 1.885-.947.456-1.995.683-3.142.683H76.15zm1.858-8.552v-2.923h5.438c.6 0 1.11-.119 1.53-.356a2.47 2.47 0 00.956-.929c.219-.4.328-.82.328-1.256 0-.456-.11-.866-.328-1.23a2.28 2.28 0 00-.929-.929c-.4-.237-.883-.355-1.448-.355h-4.044v13.47h4.372c.637 0 1.175-.127 1.612-.382.455-.255.792-.583 1.01-.984a2.73 2.73 0 00.356-1.366c0-.51-.118-.975-.355-1.394-.219-.419-.565-.747-1.038-.983-.456-.255-1.02-.383-1.694-.383h-5.766zM59.271 22c-1.439 0-2.714-.319-3.825-.956a6.971 6.971 0 01-2.596-2.65c-.619-1.13-.929-2.396-.929-3.798 0-1.403.31-2.66.93-3.771a6.726 6.726 0 012.595-2.65c1.111-.656 2.386-.984 3.825-.984 1.457 0 2.733.328 3.825.984a6.917 6.917 0 012.596 2.677c.62 1.111.93 2.36.93 3.743 0 1.403-.31 2.669-.93 3.798a6.971 6.971 0 01-2.595 2.65c-1.112.638-2.387.957-3.826.957zm0-3.033c.729 0 1.403-.173 2.022-.519a3.967 3.967 0 001.503-1.503c.383-.655.574-1.439.574-2.35 0-.929-.191-1.712-.574-2.35a3.967 3.967 0 00-1.503-1.502 4.024 4.024 0 00-1.994-.52 4.23 4.23 0 00-2.05.52c-.619.346-1.12.847-1.502 1.503-.383.655-.574 1.439-.574 2.35 0 .928.191 1.72.574 2.377a3.967 3.967 0 001.502 1.502 4.362 4.362 0 002.022.492zM36.65 21.563V7.628h3.06v1.83h.191c.401-.673.993-1.22 1.776-1.639a5.304 5.304 0 012.541-.628c1.713 0 2.997.52 3.853 1.557.874 1.02 1.312 2.377 1.312 4.072v8.743h-3.28v-8.306c0-1.02-.254-1.776-.764-2.268-.51-.51-1.193-.765-2.05-.765-.673 0-1.265.191-1.776.574-.51.364-.91.856-1.202 1.475a4.765 4.765 0 00-.41 1.995v7.295H36.65zM25.892 22c-1.002 0-1.885-.191-2.65-.574a4.552 4.552 0 01-1.804-1.666c-.437-.71-.655-1.521-.655-2.432 0-.984.255-1.822.765-2.514.51-.71 1.193-1.248 2.049-1.612.856-.383 1.812-.574 2.869-.574.564 0 1.084.037 1.557.11.492.072.92.164 1.284.273.383.109.684.218.902.328v-.656c0-.838-.31-1.512-.929-2.022-.601-.528-1.402-.792-2.404-.792a4.34 4.34 0 00-1.968.464c-.619.31-1.129.729-1.53 1.257L21.22 9.896a6.788 6.788 0 011.53-1.448 6.117 6.117 0 011.967-.93 7.85 7.85 0 012.268-.327c2.076 0 3.661.5 4.754 1.503 1.111.983 1.667 2.395 1.667 4.235v8.634h-3.197v-1.557h-.191a4.407 4.407 0 01-.957.983c-.4.291-.865.528-1.393.71-.528.2-1.12.301-1.776.301zm.683-2.596c.747 0 1.394-.164 1.94-.491a3.54 3.54 0 001.257-1.34 3.823 3.823 0 00.437-1.775 5.024 5.024 0 00-1.42-.547 7.083 7.083 0 00-1.668-.191c-1.129 0-1.921.219-2.377.656a2.148 2.148 0 00-.683 1.612c0 .6.219 1.102.656 1.503.437.382 1.057.573 1.858.573zM2 21.563V2h3.935l8.36 13.743h.192l-.192-3.77V2h3.334v19.563h-3.525L5.306 7.083h-.191l.191 3.77v10.71H2z"
36
+ })]
37
+ }));
38
+ });
39
+ export default Icon;
@@ -0,0 +1,16 @@
1
+ import Avatar from './components/Avatar';
2
+ import Color from './components/Color';
3
+ import Combine from './components/Combine';
4
+ import Mono from './components/Mono';
5
+ import Text from './components/Text';
6
+ export type CompoundedIcon = typeof Mono & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Color;
9
+ Combine: typeof Combine;
10
+ Text: typeof Text;
11
+ colorGradient: string;
12
+ colorPrimary: string;
13
+ title: string;
14
+ };
15
+ declare const Icons: CompoundedIcon;
16
+ export default Icons;
@@ -0,0 +1,14 @@
1
+ import Avatar from "./components/Avatar";
2
+ import Color from "./components/Color";
3
+ import Combine from "./components/Combine";
4
+ import Mono from "./components/Mono";
5
+ import Text from "./components/Text";
6
+ import { COLOR_PRIMARY, TITLE } from "./style";
7
+ var Icons = Mono;
8
+ Icons.Color = Color;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.title = TITLE;
14
+ export default Icons;
@@ -0,0 +1,7 @@
1
+ export declare const TITLE = "NanoBanana";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#FCD53F";
5
+ export declare const AVATAR_BACKGROUND = "#FCD53F";
6
+ export declare const AVATAR_COLOR = "#fff";
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.8;
@@ -0,0 +1,9 @@
1
+ export var TITLE = 'NanoBanana';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#FCD53F';
5
+
6
+ // Avatar constants
7
+ export var AVATAR_BACKGROUND = COLOR_PRIMARY;
8
+ export var AVATAR_COLOR = '#fff';
9
+ export var AVATAR_ICON_MULTIPLE = 0.8;
@@ -57,6 +57,7 @@ import Minimax from "../Minimax";
57
57
  import Mistral from "../Mistral";
58
58
  import Moonshot from "../Moonshot";
59
59
  import Morph from "../Morph";
60
+ import NanoBanana from "../NanoBanana";
60
61
  import NousResearch from "../NousResearch";
61
62
  import Nova from "../Nova";
62
63
  import Nvidia from "../Nvidia";
@@ -175,6 +176,9 @@ export var modelMappings = [{
175
176
  }, {
176
177
  Icon: LLaVA,
177
178
  keywords: ['llava']
179
+ }, {
180
+ Icon: NanoBanana,
181
+ keywords: ['gemini-3.1-pro-preview', 'gemini-3-pro-preview', 'gemini-\\d+(?:\\.\\d+)?-(?:flash|pro)-image-preview$', 'nanobanana', 'nano-banana']
178
182
  }, {
179
183
  Icon: Gemini,
180
184
  keywords: ['gemini']
package/es/icons.d.ts CHANGED
@@ -172,6 +172,7 @@ export { default as Moonshot, type CompoundedIcon as MoonshotProps } from './Moo
172
172
  export { default as Morph, type CompoundedIcon as MorphProps } from './Morph';
173
173
  export { default as MyShell, type CompoundedIcon as MyShellProps } from './MyShell';
174
174
  export { default as N8n, type CompoundedIcon as N8nProps } from './N8n';
175
+ export { default as NanoBanana, type CompoundedIcon as NanoBananaProps } from './NanoBanana';
175
176
  export { default as Nebius, type CompoundedIcon as NebiusProps } from './Nebius';
176
177
  export { default as NewAPI, type CompoundedIcon as NewAPIProps } from './NewAPI';
177
178
  export { default as NotebookLM, type CompoundedIcon as NotebookLMProps } from './NotebookLM';
package/es/icons.js CHANGED
@@ -172,6 +172,7 @@ export { default as Moonshot } from "./Moonshot";
172
172
  export { default as Morph } from "./Morph";
173
173
  export { default as MyShell } from "./MyShell";
174
174
  export { default as N8n } from "./N8n";
175
+ export { default as NanoBanana } from "./NanoBanana";
175
176
  export { default as Nebius } from "./Nebius";
176
177
  export { default as NewAPI } from "./NewAPI";
177
178
  export { default as NotebookLM } from "./NotebookLM";
package/es/toc.js CHANGED
@@ -3167,6 +3167,24 @@ var toc = [{
3167
3167
  "hasTextColor": false
3168
3168
  },
3169
3169
  "title": "NPLCloud"
3170
+ }, {
3171
+ "color": "#FCD53F",
3172
+ "desc": "https://gemini.google/overview/image-generation",
3173
+ "docsUrl": "nano-banana",
3174
+ "fullTitle": "Nano Banana (Google)",
3175
+ "group": "model",
3176
+ "id": "NanoBanana",
3177
+ "param": {
3178
+ "hasAvatar": true,
3179
+ "hasBrand": false,
3180
+ "hasBrandColor": false,
3181
+ "hasColor": true,
3182
+ "hasCombine": true,
3183
+ "hasText": true,
3184
+ "hasTextCn": false,
3185
+ "hasTextColor": false
3186
+ },
3187
+ "title": "NanoBanana"
3170
3188
  }, {
3171
3189
  "color": "#DAFF33",
3172
3190
  "desc": "https://nebius.com",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "4.6.0",
3
+ "version": "4.7.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",