@lobehub/icons 1.70.0 → 1.71.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.
Files changed (43) hide show
  1. package/es/Jina/components/Avatar.d.ts +5 -0
  2. package/es/Jina/components/Avatar.js +26 -0
  3. package/es/Jina/components/Color.d.ts +3 -0
  4. package/es/Jina/components/Color.js +46 -0
  5. package/es/Jina/components/Combine.d.ts +7 -0
  6. package/es/Jina/components/Combine.js +22 -0
  7. package/es/Jina/components/Mono.d.ts +3 -0
  8. package/es/Jina/components/Mono.js +45 -0
  9. package/es/Jina/components/Text.d.ts +3 -0
  10. package/es/Jina/components/Text.js +44 -0
  11. package/es/Jina/components/TextColor.d.ts +3 -0
  12. package/es/Jina/components/TextColor.js +47 -0
  13. package/es/Jina/index.d.ts +15 -0
  14. package/es/Jina/index.js +16 -0
  15. package/es/Jina/style.d.ts +4 -0
  16. package/es/Jina/style.js +4 -0
  17. package/es/PPIO/components/Avatar.d.ts +5 -0
  18. package/es/PPIO/components/Avatar.js +27 -0
  19. package/es/PPIO/components/BrandColor.d.ts +3 -0
  20. package/es/PPIO/components/BrandColor.js +44 -0
  21. package/es/PPIO/components/BrandMono.d.ts +3 -0
  22. package/es/PPIO/components/BrandMono.js +44 -0
  23. package/es/PPIO/components/Color.d.ts +3 -0
  24. package/es/PPIO/components/Color.js +42 -0
  25. package/es/PPIO/components/Combine.d.ts +7 -0
  26. package/es/PPIO/components/Combine.js +32 -0
  27. package/es/PPIO/components/Mono.d.ts +3 -0
  28. package/es/PPIO/components/Mono.js +41 -0
  29. package/es/PPIO/components/Text.d.ts +3 -0
  30. package/es/PPIO/components/Text.js +42 -0
  31. package/es/PPIO/components/TextCn.d.ts +3 -0
  32. package/es/PPIO/components/TextCn.js +44 -0
  33. package/es/PPIO/index.d.ts +21 -0
  34. package/es/PPIO/index.js +22 -0
  35. package/es/PPIO/style.d.ts +4 -0
  36. package/es/PPIO/style.js +4 -0
  37. package/es/features/providerConfig.js +15 -3
  38. package/es/features/providerEnum.d.ts +3 -0
  39. package/es/features/providerEnum.js +3 -0
  40. package/es/icons.d.ts +2 -0
  41. package/es/icons.js +2 -0
  42. package/es/toc.js +36 -0
  43. package/package.json +1 -1
@@ -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,26 @@
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 = ["background"];
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 IconAvatar from "../../features/IconAvatar";
14
+ import { COLOR_PRIMARY, TITLE } from "../style";
15
+ import Mono from "./Mono";
16
+ import { jsx as _jsx } from "react/jsx-runtime";
17
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
18
+ var background = _ref.background,
19
+ rest = _objectWithoutProperties(_ref, _excluded);
20
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
21
+ Icon: Mono,
22
+ "aria-label": TITLE,
23
+ background: background || COLOR_PRIMARY
24
+ }, rest));
25
+ });
26
+ 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,46 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
24
+ style: _objectSpread({
25
+ flex: 'none',
26
+ lineHeight: 1
27
+ }, style),
28
+ viewBox: "0 0 24 24",
29
+ width: size,
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M1.80913 16.9737C2.65296 16.9737 3.33701 16.2897 3.33701 15.4459C3.33701 14.602 2.65296 13.918 1.80913 13.918C0.965306 13.918 0.28125 14.602 0.28125 15.4459C0.28125 16.2897 0.965306 16.9737 1.80913 16.9737Z",
36
+ fill: "#EB6161"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M6.62248 10.6329C6.82221 10.6329 6.98198 10.7927 6.98198 10.9924L6.96201 13.9184C6.96201 15.5861 5.62387 16.9442 3.95618 16.9741H3.90625V13.9284H3.91624L3.92622 11.0024C3.92622 10.8027 4.086 10.6429 4.28572 10.6429H6.62248V10.6329ZM11.316 10.6329C11.5157 10.6329 11.6755 10.7927 11.6755 10.9924V15.0868C11.6755 15.2865 11.5157 15.4463 11.316 15.4463H8.97922C8.77949 15.4463 8.61971 15.2865 8.61971 15.0868V10.9924C8.61971 10.7927 8.77949 10.6329 8.97922 10.6329H11.316ZM14.9909 10.623H15.0408C16.5387 10.6429 17.757 11.8512 17.797 13.3492V15.0768C17.797 15.2765 17.6372 15.4363 17.4375 15.4363H13.6627C13.463 15.4363 13.3032 15.2765 13.3032 15.0768V10.9825C13.3032 10.7827 13.463 10.623 13.6627 10.623H14.9909ZM21.1723 15.3963C19.9141 15.3164 18.9055 14.2679 18.9055 12.9897C18.9055 11.6615 19.984 10.583 21.3121 10.583C22.5903 10.583 23.6389 11.5816 23.7188 12.8499V15.0368C23.7188 15.2366 23.559 15.3963 23.3593 15.3963H21.1723Z",
39
+ fill: "#009191"
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M10.1426 10.0636C10.9865 10.0636 11.6705 9.37952 11.6705 8.53569C11.6705 7.69187 10.9865 7.00781 10.1426 7.00781C9.2988 7.00781 8.61475 7.69187 8.61475 8.53569C8.61475 9.37952 9.2988 10.0636 10.1426 10.0636Z",
42
+ fill: "#FBCB67"
43
+ })]
44
+ }));
45
+ });
46
+ 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,22 @@
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 Mono from "./Text";
14
+ import Color from "./TextColor";
15
+ import { jsx as _jsx } from "react/jsx-runtime";
16
+ var Combine = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$type = _ref.type,
18
+ type = _ref$type === void 0 ? 'mono' : _ref$type,
19
+ rest = _objectWithoutProperties(_ref, _excluded);
20
+ return type === 'color' ? /*#__PURE__*/_jsx(Color, _objectSpread({}, rest)) : /*#__PURE__*/_jsx(Mono, _objectSpread({}, rest));
21
+ });
22
+ 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,45 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 24 24",
31
+ width: size,
32
+ xmlns: "http://www.w3.org/2000/svg"
33
+ }, rest), {}, {
34
+ children: [/*#__PURE__*/_jsx("title", {
35
+ children: TITLE
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M1.80913 16.9737C2.65296 16.9737 3.33701 16.2897 3.33701 15.4459C3.33701 14.602 2.65296 13.918 1.80913 13.918C0.965306 13.918 0.28125 14.602 0.28125 15.4459C0.28125 16.2897 0.965306 16.9737 1.80913 16.9737Z"
38
+ }), /*#__PURE__*/_jsx("path", {
39
+ d: "M6.62248 10.6329C6.82221 10.6329 6.98198 10.7927 6.98198 10.9924L6.96201 13.9184C6.96201 15.5861 5.62387 16.9442 3.95618 16.9741H3.90625V13.9284H3.91624L3.92622 11.0024C3.92622 10.8027 4.086 10.6429 4.28572 10.6429H6.62248V10.6329ZM11.316 10.6329C11.5157 10.6329 11.6755 10.7927 11.6755 10.9924V15.0868C11.6755 15.2865 11.5157 15.4463 11.316 15.4463H8.97922C8.77949 15.4463 8.61971 15.2865 8.61971 15.0868V10.9924C8.61971 10.7927 8.77949 10.6329 8.97922 10.6329H11.316ZM14.9909 10.623H15.0408C16.5387 10.6429 17.757 11.8512 17.797 13.3492V15.0768C17.797 15.2765 17.6372 15.4363 17.4375 15.4363H13.6627C13.463 15.4363 13.3032 15.2765 13.3032 15.0768V10.9825C13.3032 10.7827 13.463 10.623 13.6627 10.623H14.9909ZM21.1723 15.3963C19.9141 15.3164 18.9055 14.2679 18.9055 12.9897C18.9055 11.6615 19.984 10.583 21.3121 10.583C22.5903 10.583 23.6389 11.5816 23.7188 12.8499V15.0368C23.7188 15.2366 23.559 15.3963 23.3593 15.3963H21.1723Z"
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M10.1426 10.0636C10.9865 10.0636 11.6705 9.37952 11.6705 8.53569C11.6705 7.69187 10.9865 7.00781 10.1426 7.00781C9.2988 7.00781 8.61475 7.69187 8.61475 8.53569C8.61475 9.37952 9.2988 10.0636 10.1426 10.0636Z"
42
+ })]
43
+ }));
44
+ });
45
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Text: IconType;
3
+ export default Text;
@@ -0,0 +1,44 @@
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 { forwardRef } 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 Text = /*#__PURE__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 56 24",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M3.67936 23.9993C5.71141 23.9993 7.35872 22.352 7.35872 20.32C7.35872 18.2879 5.71141 16.6406 3.67936 16.6406C1.64731 16.6406 0 18.2879 0 20.32C0 22.352 1.64731 23.9993 3.67936 23.9993Z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M15.2706 8.73059C15.7515 8.73059 16.1363 9.11536 16.1363 9.59632L16.0882 16.6424C16.0882 20.6584 12.8658 23.929 8.84973 24.0011H8.72949V16.6665H8.75354L8.77759 9.62037C8.77759 9.13941 9.16236 8.75464 9.64332 8.75464H15.2706V8.73059ZM26.5732 8.73059C27.0541 8.73059 27.4389 9.11536 27.4389 9.59632V19.456C27.4389 19.937 27.0541 20.3218 26.5732 20.3218H20.9459C20.465 20.3218 20.0802 19.937 20.0802 19.456V9.59632C20.0802 9.11536 20.465 8.73059 20.9459 8.73059H26.5732ZM35.4229 8.70654H35.5431C39.1503 8.75464 42.0842 11.6645 42.1804 15.2717V19.432C42.1804 19.913 41.7956 20.2977 41.3147 20.2977H32.2245C31.7435 20.2977 31.3588 19.913 31.3588 19.432V9.57228C31.3588 9.09131 31.7435 8.70654 32.2245 8.70654H35.4229ZM50.3086 20.2015C47.2786 20.0091 44.8497 17.4841 44.8497 14.4059C44.8497 11.2075 47.4469 8.61035 50.6453 8.61035C53.7235 8.61035 56.2485 11.0152 56.4409 14.0693V19.3358C56.4409 19.8168 56.0561 20.2015 55.5752 20.2015H50.3086Z"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M23.7477 7.35872C25.7798 7.35872 27.4271 5.71141 27.4271 3.67936C27.4271 1.64731 25.7798 0 23.7477 0C21.7157 0 20.0684 1.64731 20.0684 3.67936C20.0684 5.71141 21.7157 7.35872 23.7477 7.35872Z"
41
+ })]
42
+ }));
43
+ });
44
+ export default Text;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,47 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 58 24",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M4.45866 23.9896C6.49071 23.9896 8.13801 22.3423 8.13801 20.3102C8.13801 18.2782 6.49071 16.6309 4.45866 16.6309C2.4266 16.6309 0.779297 18.2782 0.779297 20.3102C0.779297 22.3423 2.4266 23.9896 4.45866 23.9896Z",
37
+ fill: "#EB6161"
38
+ }), /*#__PURE__*/_jsx("path", {
39
+ d: "M16.0499 8.72083C16.5308 8.72083 16.9156 9.1056 16.9156 9.58656L16.8675 16.6326C16.8675 20.6487 13.6451 23.9192 9.62903 23.9914H9.50879V16.6567H9.53284L9.55689 9.61061C9.55689 9.12964 9.94166 8.74487 10.4226 8.74487H16.0499V8.72083ZM27.3525 8.72083C27.8334 8.72083 28.2182 9.1056 28.2182 9.58656V19.4463C28.2182 19.9272 27.8334 20.312 27.3525 20.312H21.7252C21.2443 20.312 20.8595 19.9272 20.8595 19.4463V9.58656C20.8595 9.1056 21.2443 8.72083 21.7252 8.72083H27.3525ZM36.2022 8.69678H36.3224C39.9296 8.74487 42.8635 11.6547 42.9597 15.2619V19.4222C42.9597 19.9032 42.5749 20.288 42.094 20.288H33.0038C32.5228 20.288 32.138 19.9032 32.138 19.4222V9.56251C32.138 9.08155 32.5228 8.69678 33.0038 8.69678H36.2022ZM51.0879 20.1918C48.0579 19.9994 45.629 17.4743 45.629 14.3962C45.629 11.1978 48.2262 8.60059 51.4246 8.60059C54.5028 8.60059 57.0278 11.0054 57.2202 14.0595V19.326C57.2202 19.807 56.8354 20.1918 56.3545 20.1918H51.0879Z",
40
+ fill: "#009191"
41
+ }), /*#__PURE__*/_jsx("path", {
42
+ d: "M24.527 7.34895C26.5591 7.34895 28.2064 5.70165 28.2064 3.66959C28.2064 1.63754 26.5591 -0.00976562 24.527 -0.00976562C22.495 -0.00976562 20.8477 1.63754 20.8477 3.66959C20.8477 5.70165 22.495 7.34895 24.527 7.34895Z",
43
+ fill: "#FBCB67"
44
+ })]
45
+ }));
46
+ });
47
+ export default Icon;
@@ -0,0 +1,15 @@
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
+ colorPrimary: string;
12
+ title: string;
13
+ };
14
+ declare const Icons: CompoundedIcon;
15
+ export default Icons;
@@ -0,0 +1,16 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Color from "./components/Color";
5
+ import Combine from "./components/Combine";
6
+ import Mono from "./components/Mono";
7
+ import Text from "./components/Text";
8
+ import { COLOR_PRIMARY, TITLE } from "./style";
9
+ var Icons = Mono;
10
+ Icons.Color = Color;
11
+ Icons.Text = Text;
12
+ Icons.Combine = Combine;
13
+ Icons.Avatar = Avatar;
14
+ Icons.colorPrimary = COLOR_PRIMARY;
15
+ Icons.title = TITLE;
16
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Jina";
2
+ export declare const TEXT_MULTIPLE = 0.75;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#009191";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Jina';
2
+ export var TEXT_MULTIPLE = 0.75;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#009191';
@@ -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,27 @@
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 = ["background"];
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 IconAvatar from "../../features/IconAvatar";
14
+ import { COLOR_PRIMARY, TITLE } from "../style";
15
+ import Mono from "./Mono";
16
+ import { jsx as _jsx } from "react/jsx-runtime";
17
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
18
+ var background = _ref.background,
19
+ rest = _objectWithoutProperties(_ref, _excluded);
20
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
21
+ Icon: Mono,
22
+ "aria-label": TITLE,
23
+ background: background || '#fff',
24
+ color: COLOR_PRIMARY
25
+ }, rest));
26
+ });
27
+ 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,44 @@
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 { forwardRef } from 'react';
13
+ import { COLOR_PRIMARY, 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__*/forwardRef(function (_ref, 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
+ height: size,
24
+ ref: ref,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 300 100",
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M49.4653 0.800003C22.1583 0.800003 0 22.9189 0 50.2308C0 63.6945 5.38922 75.9079 14.1467 84.8276V50.2789C14.1467 40.8544 17.8277 31.9587 24.4921 25.299C31.1805 18.6153 40.0582 14.9609 49.4894 14.9609C49.5856 14.9609 49.6818 14.9609 49.7781 14.9609L49.4653 14.9849C68.9772 14.9849 84.808 30.8047 84.808 50.303C84.808 52.01 84.6877 53.6689 84.4471 55.3278L64.4781 35.3006C60.4843 31.3096 55.1432 29.0977 49.4894 29.0977C43.8355 29.0977 38.4944 31.3096 34.5006 35.3006C30.4828 39.3157 28.2934 44.629 28.2934 50.303C28.2934 55.9529 30.5068 61.2903 34.5006 65.3053C38.4944 69.2963 43.8355 71.5082 49.4894 71.5082C55.1432 71.5082 60.4843 69.2963 64.4781 65.3053C68.2073 61.5788 70.3485 56.7222 70.6372 51.5051L82.354 63.2617C77.1813 76.3648 64.406 85.6451 49.4653 85.6451C41.7183 85.6451 34.3322 83.1687 28.2693 78.5766V94.9254C34.6931 97.9787 41.8627 99.6857 49.4413 99.6857C76.7482 99.6857 98.9066 77.5669 98.9066 50.2549C98.9306 22.9189 76.7963 0.800003 49.4653 0.800003Z",
36
+ fill: COLOR_PRIMARY
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ clipRule: "evenodd",
39
+ d: "M140.147 78.1637V57.285H154.194C159.052 57.285 162.808 55.8581 165.462 53.0041C168.116 50.1502 169.443 46.32 169.443 41.5134C169.443 36.7068 168.116 32.8765 165.462 30.0226C162.808 27.1687 159.052 25.7417 154.194 25.7417H131.658V78.1637H140.147ZM153.668 49.8498H140.147V33.1769H153.668C155.822 33.1769 157.499 33.7402 158.701 34.8668C159.903 35.9933 160.504 37.608 160.504 39.7109V43.3158C160.504 45.4187 159.903 47.0335 158.701 48.16C157.499 49.2865 155.822 49.8498 153.668 49.8498ZM187.246 57.285V78.1637H178.758V25.7417H201.294C206.151 25.7417 209.907 27.1687 212.562 30.0226C215.216 32.8765 216.543 36.7068 216.543 41.5134C216.543 46.32 215.216 50.1502 212.562 53.0041C209.907 55.8581 206.151 57.285 201.294 57.285H187.246ZM200.768 49.8498H187.246V33.1769H200.768C202.921 33.1769 204.599 33.7402 205.801 34.8668C207.003 35.9933 207.604 37.608 207.604 39.7109V43.3158C207.604 45.4187 207.003 47.0335 205.801 48.16C204.599 49.2865 202.921 49.8498 200.768 49.8498ZM246.44 71.2542V78.1637H223.604V71.2542H230.74V32.6512H223.604V25.7417H246.44V32.6512H239.229V71.2542H246.44ZM277.389 78.1712C280.795 78.1712 283.887 77.6024 286.666 76.4649C289.446 75.3273 291.825 73.6572 293.803 71.4546C295.781 69.252 297.308 66.517 298.385 63.2494C299.462 59.9819 300 56.2181 300 51.9582C300 47.6983 299.462 43.9346 298.385 40.667C297.308 37.3995 295.781 34.6644 293.803 32.4618C291.825 30.2593 289.446 28.5892 286.666 27.4516C283.887 26.314 280.795 25.7452 277.389 25.7452C273.984 25.7452 270.891 26.314 268.112 27.4516C265.333 28.5892 262.954 30.2593 260.976 32.4618C258.998 34.6644 257.47 37.3995 256.393 40.667C255.317 43.9346 254.778 47.6983 254.778 51.9582C254.778 56.2181 255.317 59.9819 256.393 63.2494C257.47 66.517 258.998 69.252 260.976 71.4546C262.954 73.6572 265.333 75.3273 268.112 76.4649C270.891 77.6024 273.984 78.1712 277.389 78.1712ZM271.64 69.586C273.348 70.2548 275.263 70.5892 277.385 70.5892C279.455 70.5892 281.357 70.2548 283.09 69.586C284.824 68.9172 286.299 67.9498 287.515 66.6839C288.731 65.4179 289.676 63.8773 290.349 62.0619C291.022 60.2466 291.358 58.1924 291.358 55.8994V48.017C291.358 45.724 291.022 43.6698 290.349 41.8545C289.676 40.0391 288.731 38.4985 287.515 37.2326C286.299 35.9666 284.824 34.9992 283.09 34.3304C281.357 33.6616 279.455 33.3272 277.385 33.3272C275.263 33.3272 273.348 33.6616 271.64 34.3304C269.932 34.9992 268.47 35.9666 267.254 37.2326C266.038 38.4985 265.093 40.0391 264.421 41.8545C263.748 43.6698 263.411 45.724 263.411 48.017V55.8994C263.411 58.1924 263.748 60.2466 264.421 62.0619C265.093 63.8773 266.038 65.4179 267.254 66.6839C268.47 67.9498 269.932 68.9172 271.64 69.586Z",
40
+ fillRule: "evenodd"
41
+ })]
42
+ }));
43
+ });
44
+ 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,44 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 300 100",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M49.4653 0.800003C22.1583 0.800003 0 22.9189 0 50.2308C0 63.6945 5.38922 75.9079 14.1467 84.8276V50.2789C14.1467 40.8544 17.8277 31.9587 24.4921 25.299C31.1805 18.6153 40.0582 14.9609 49.4894 14.9609C49.5856 14.9609 49.6818 14.9609 49.7781 14.9609L49.4653 14.9849C68.9772 14.9849 84.808 30.8047 84.808 50.303C84.808 52.01 84.6877 53.6689 84.4471 55.3278L64.4781 35.3006C60.4843 31.3096 55.1432 29.0977 49.4894 29.0977C43.8355 29.0977 38.4944 31.3096 34.5006 35.3006C30.4828 39.3157 28.2934 44.629 28.2934 50.303C28.2934 55.9529 30.5068 61.2903 34.5006 65.3053C38.4944 69.2963 43.8355 71.5082 49.4894 71.5082C55.1432 71.5082 60.4843 69.2963 64.4781 65.3053C68.2073 61.5788 70.3485 56.7222 70.6372 51.5051L82.354 63.2617C77.1813 76.3648 64.406 85.6451 49.4653 85.6451C41.7183 85.6451 34.3322 83.1687 28.2693 78.5766V94.9254C34.6931 97.9787 41.8627 99.6857 49.4413 99.6857C76.7482 99.6857 98.9066 77.5669 98.9066 50.2549C98.9306 22.9189 76.7963 0.800003 49.4653 0.800003Z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ clipRule: "evenodd",
39
+ d: "M140.147 78.1637V57.285H154.194C159.052 57.285 162.808 55.8581 165.462 53.0041C168.116 50.1502 169.443 46.32 169.443 41.5134C169.443 36.7068 168.116 32.8765 165.462 30.0226C162.808 27.1687 159.052 25.7417 154.194 25.7417H131.658V78.1637H140.147ZM153.668 49.8498H140.147V33.1769H153.668C155.822 33.1769 157.499 33.7402 158.701 34.8668C159.903 35.9933 160.504 37.608 160.504 39.7109V43.3158C160.504 45.4187 159.903 47.0335 158.701 48.16C157.499 49.2865 155.822 49.8498 153.668 49.8498ZM187.246 57.285V78.1637H178.758V25.7417H201.294C206.151 25.7417 209.907 27.1687 212.562 30.0226C215.216 32.8765 216.543 36.7068 216.543 41.5134C216.543 46.32 215.216 50.1502 212.562 53.0041C209.907 55.8581 206.151 57.285 201.294 57.285H187.246ZM200.768 49.8498H187.246V33.1769H200.768C202.921 33.1769 204.599 33.7402 205.801 34.8668C207.003 35.9933 207.604 37.608 207.604 39.7109V43.3158C207.604 45.4187 207.003 47.0335 205.801 48.16C204.599 49.2865 202.921 49.8498 200.768 49.8498ZM246.44 71.2542V78.1637H223.604V71.2542H230.74V32.6512H223.604V25.7417H246.44V32.6512H239.229V71.2542H246.44ZM277.389 78.1712C280.795 78.1712 283.887 77.6024 286.666 76.4649C289.446 75.3273 291.825 73.6572 293.803 71.4546C295.781 69.252 297.308 66.517 298.385 63.2494C299.462 59.9819 300 56.2181 300 51.9582C300 47.6983 299.462 43.9346 298.385 40.667C297.308 37.3995 295.781 34.6644 293.803 32.4618C291.825 30.2593 289.446 28.5892 286.666 27.4516C283.887 26.314 280.795 25.7452 277.389 25.7452C273.984 25.7452 270.891 26.314 268.112 27.4516C265.333 28.5892 262.954 30.2593 260.976 32.4618C258.998 34.6644 257.47 37.3995 256.393 40.667C255.317 43.9346 254.778 47.6983 254.778 51.9582C254.778 56.2181 255.317 59.9819 256.393 63.2494C257.47 66.517 258.998 69.252 260.976 71.4546C262.954 73.6572 265.333 75.3273 268.112 76.4649C270.891 77.6024 273.984 78.1712 277.389 78.1712ZM271.64 69.586C273.348 70.2548 275.263 70.5892 277.385 70.5892C279.455 70.5892 281.357 70.2548 283.09 69.586C284.824 68.9172 286.299 67.9498 287.515 66.6839C288.731 65.4179 289.676 63.8773 290.349 62.0619C291.022 60.2466 291.358 58.1924 291.358 55.8994V48.017C291.358 45.724 291.022 43.6698 290.349 41.8545C289.676 40.0391 288.731 38.4985 287.515 37.2326C286.299 35.9666 284.824 34.9992 283.09 34.3304C281.357 33.6616 279.455 33.3272 277.385 33.3272C275.263 33.3272 273.348 33.6616 271.64 34.3304C269.932 34.9992 268.47 35.9666 267.254 37.2326C266.038 38.4985 265.093 40.0391 264.421 41.8545C263.748 43.6698 263.411 45.724 263.411 48.017V55.8994C263.411 58.1924 263.748 60.2466 264.421 62.0619C265.093 63.8773 266.038 65.4179 267.254 66.6839C268.47 67.9498 269.932 68.9172 271.64 69.586Z",
40
+ fillRule: "evenodd"
41
+ })]
42
+ }));
43
+ });
44
+ 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,42 @@
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 { forwardRef } from 'react';
13
+ import { COLOR_PRIMARY, 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__*/forwardRef(function (_ref, 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
+ ref: ref,
24
+ style: _objectSpread({
25
+ flex: 'none',
26
+ lineHeight: 1
27
+ }, style),
28
+ viewBox: "0 0 100 100",
29
+ width: size,
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ clipRule: "evenodd",
36
+ d: "M49.6479 0.359833C22.2415 0.359833 0 22.5703 0 49.9767C0 63.4861 5.41303 75.7546 14.1918 84.7039V50.0233C14.1918 40.5621 17.8832 31.6283 24.568 24.9434C31.2839 18.2275 40.1867 14.5671 49.6634 14.5671H49.9581L49.6479 14.5981C69.2372 14.5981 85.1196 30.4805 85.1196 50.0543C85.1196 51.7604 84.9955 53.4355 84.7628 55.0951L64.7238 34.9939C60.7221 30.9923 55.3556 28.7744 49.6789 28.7744C44.0022 28.7744 38.6512 30.9923 34.6341 34.9939C30.6015 39.0266 28.399 44.3621 28.399 50.0543C28.399 55.7465 30.617 61.082 34.6341 65.1146C38.6357 69.1162 44.0022 71.3342 49.6789 71.3342C55.3556 71.3342 60.7066 69.1162 64.7238 65.1146C68.4617 61.3767 70.6176 56.491 70.9123 51.2641L82.669 63.0673C77.4731 76.2199 64.6617 85.5415 49.6634 85.5415C41.8929 85.5415 34.479 83.0598 28.3835 78.4533V94.863C34.8357 97.934 42.0324 99.6402 49.6324 99.6402C77.0388 99.6402 99.2803 77.4297 99.2803 50.0233C99.3113 22.5858 77.0853 0.375343 49.6634 0.375343L49.6479 0.359833Z",
37
+ fill: COLOR_PRIMARY,
38
+ fillRule: "evenodd"
39
+ })]
40
+ }));
41
+ });
42
+ 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 { SPACE_MULTIPLE, 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: SPACE_MULTIPLE,
29
+ textMultiple: 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,41 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 100 100",
31
+ width: size,
32
+ xmlns: "http://www.w3.org/2000/svg"
33
+ }, rest), {}, {
34
+ children: [/*#__PURE__*/_jsx("title", {
35
+ children: TITLE
36
+ }), /*#__PURE__*/_jsx("path", {
37
+ d: "M49.6479 0.359833C22.2415 0.359833 0 22.5703 0 49.9767C0 63.4861 5.41303 75.7546 14.1918 84.7039V50.0233C14.1918 40.5621 17.8832 31.6283 24.568 24.9434C31.2839 18.2275 40.1867 14.5671 49.6634 14.5671H49.9581L49.6479 14.5981C69.2372 14.5981 85.1196 30.4805 85.1196 50.0543C85.1196 51.7604 84.9955 53.4355 84.7628 55.0951L64.7238 34.9939C60.7221 30.9923 55.3556 28.7744 49.6789 28.7744C44.0022 28.7744 38.6512 30.9923 34.6341 34.9939C30.6015 39.0266 28.399 44.3621 28.399 50.0543C28.399 55.7465 30.617 61.082 34.6341 65.1146C38.6357 69.1162 44.0022 71.3342 49.6789 71.3342C55.3556 71.3342 60.7066 69.1162 64.7238 65.1146C68.4617 61.3767 70.6176 56.491 70.9123 51.2641L82.669 63.0673C77.4731 76.2199 64.6617 85.5415 49.6634 85.5415C41.8929 85.5415 34.479 83.0598 28.3835 78.4533V94.863C34.8357 97.934 42.0324 99.6402 49.6324 99.6402C77.0388 99.6402 99.2803 77.4297 99.2803 50.0233C99.3113 22.5858 77.0853 0.375343 49.6634 0.375343L49.6479 0.359833Z"
38
+ })]
39
+ }));
40
+ });
41
+ 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,42 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 169 54",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ clipRule: "evenodd",
37
+ d: "M9.14689 53.1637V32.285H23.1941C28.0518 32.285 31.8078 30.8581 34.462 28.0041C37.1162 25.1502 38.4433 21.32 38.4433 16.5134C38.4433 11.7068 37.1162 7.87651 34.462 5.02259C31.8078 2.16867 28.0518 0.741714 23.1941 0.741714H0.658447V53.1637H9.14689ZM22.6683 24.8498H9.14688V8.17693H22.6683C24.8217 8.17693 26.4994 8.7402 27.7013 9.86675C28.9032 10.9933 29.5041 12.608 29.5041 14.7109V18.3158C29.5041 20.4187 28.9032 22.0335 27.7013 23.16C26.4994 24.2865 24.8217 24.8498 22.6683 24.8498ZM56.2464 32.285V53.1637H47.758V0.741728H70.2937C75.1514 0.741728 78.9073 2.16869 81.5615 5.0226C84.2157 7.87652 85.5428 11.7068 85.5428 16.5134C85.5428 21.32 84.2157 25.1502 81.5615 28.0041C78.9073 30.8581 75.1514 32.285 70.2937 32.285H56.2464ZM69.7679 24.8498H56.2464V8.17693H69.7679C71.9213 8.17693 73.5989 8.7402 74.8008 9.86675C76.0027 10.9933 76.6037 12.608 76.6037 14.7109V18.3158C76.6037 20.4187 76.0027 22.0335 74.8008 23.16C73.5989 24.2865 71.9213 24.8498 69.7679 24.8498ZM115.44 46.2542V53.1637H92.604V46.2542H99.7403V7.65121H92.604V0.741728H115.44V7.65121H108.229V46.2542H115.44ZM146.389 53.1712C149.795 53.1712 152.887 52.6024 155.666 51.4649C158.446 50.3273 160.825 48.6572 162.803 46.4546C164.781 44.252 166.308 41.517 167.385 38.2494C168.462 34.9819 169 31.2181 169 26.9582C169 22.6983 168.462 18.9346 167.385 15.667C166.308 12.3995 164.781 9.66441 162.803 7.46183C160.825 5.25926 158.446 3.58918 155.666 2.45159C152.887 1.314 149.795 0.745202 146.389 0.745202C142.984 0.745202 139.891 1.314 137.112 2.45159C134.333 3.58918 131.954 5.25926 129.976 7.46183C127.998 9.66441 126.47 12.3995 125.393 15.667C124.317 18.9346 123.778 22.6983 123.778 26.9582C123.778 31.2181 124.317 34.9819 125.393 38.2494C126.47 41.517 127.998 44.252 129.976 46.4546C131.954 48.6572 134.333 50.3273 137.112 51.4649C139.891 52.6024 142.984 53.1712 146.389 53.1712ZM140.64 44.586C142.348 45.2548 144.263 45.5892 146.385 45.5892C148.455 45.5892 150.357 45.2548 152.09 44.586C153.824 43.9172 155.299 42.9498 156.515 41.6839C157.731 40.4179 158.676 38.8773 159.349 37.0619C160.022 35.2466 160.358 33.1924 160.358 30.8994V23.017C160.358 20.724 160.022 18.6698 159.349 16.8545C158.676 15.0391 157.731 13.4985 156.515 12.2326C155.299 10.9666 153.824 9.99923 152.09 9.33042C150.357 8.66162 148.455 8.32722 146.385 8.32722C144.263 8.32722 142.348 8.66162 140.64 9.33042C138.932 9.99923 137.47 10.9666 136.254 12.2326C135.038 13.4985 134.093 15.0391 133.421 16.8545C132.748 18.6698 132.411 20.724 132.411 23.017V30.8994C132.411 33.1924 132.748 35.2466 133.421 37.0619C134.093 38.8773 135.038 40.4179 136.254 41.6839C137.47 42.9498 138.932 43.9172 140.64 44.586Z",
38
+ fillRule: "evenodd"
39
+ })]
40
+ }));
41
+ });
42
+ 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,44 @@
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 { forwardRef } 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__*/forwardRef(function (_ref, 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
+ ref: ref,
26
+ style: _objectSpread({
27
+ flex: 'none',
28
+ lineHeight: 1
29
+ }, style),
30
+ viewBox: "0 0 368 70",
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ clipRule: "evenodd",
37
+ d: "M368 1.7385C368 0.823404 367.255 0.0789185 366.34 0.0789185H182.173C181.258 0.0789185 180.514 0.823404 180.514 1.7385V68.2614C180.514 69.1765 181.258 69.921 182.173 69.921H366.34C367.255 69.921 368 69.1765 368 68.2614V1.7385ZM275.498 11.8356H250.278V55.3415C246.292 52.3325 243.454 47.4468 241.422 41.522C243.596 40.0518 246.004 38.1337 248.415 36.2131C248.98 35.763 249.545 35.3128 250.108 34.8681L246.323 30.9596C244.741 32.8208 242.352 35.1628 240.088 37.1481C239.157 33.4722 238.397 29.5016 237.87 25.4845C240.957 24.7865 243.934 23.9025 246.385 23.0339L242.182 18.7686C238.103 20.5213 231.216 22.1498 225.152 23.1425V52.255C225.152 54.535 223.926 55.6362 222.934 56.1635C223.694 57.2182 224.686 59.4362 225.028 60.5994C225.105 60.5374 225.198 60.4598 225.291 60.3823L225.369 60.3203C225.803 59.9945 226.424 59.6223 227.556 59.0484L227.913 58.8778C229.805 57.9317 233 56.5048 238.661 54.0697C238.304 53.015 237.792 51.1538 237.606 49.6958L229.851 52.7823V27.0045C230.487 26.8773 231.123 26.7687 231.769 26.6583C232.305 26.5668 232.848 26.474 233.403 26.3686C235.218 41.1342 238.832 53.6664 246.757 60.1962C247.548 58.8933 249.022 57.1097 250.247 56.0084V58.9709H275.389V58.4435C276.382 59.4362 277.374 60.6615 277.948 61.5921C283.144 56.5203 285.998 50.6264 287.626 44.9032C289.953 51.495 293.35 56.5048 298.484 61.1268C299.182 59.6688 300.702 57.9782 302.035 56.9856C294.978 51.2158 291.597 44.4999 289.441 33.3637C289.535 32.1617 289.548 30.9483 289.559 29.8521C289.561 29.6752 289.563 29.5013 289.565 29.331V24.5539H284.602V28.7571C284.602 36.3416 283.733 47.7105 275.389 56.5203V54.0076H255.552V49.5717C256.653 50.3938 258.002 51.557 258.638 52.1929C261.321 49.0444 263.772 45.2444 266.052 40.9326C267.975 44.4844 269.557 47.7571 270.596 50.4403L275.265 47.9277C273.869 44.4224 271.527 40.1106 268.673 35.5041C270.953 30.6028 272.814 25.2363 274.396 19.7613L269.557 18.7686C268.503 22.8478 267.169 26.8184 265.587 30.6028C263.307 27.1596 260.918 23.7784 258.638 20.7384L255.552 22.3204V16.7213H275.498V11.8356ZM215.287 13.5727C225.09 12.3009 236.412 10.1295 242.942 7.80296V7.78745L247.316 12.1613C239.855 14.6584 229.588 16.4731 220.188 17.6984V28.6176C220.157 38.2338 219.149 52.1619 213.069 61.4525C212.139 60.5839 209.983 59.2966 208.757 58.8313C214.698 49.8509 215.287 37.1947 215.287 28.1522V13.5727ZM301.089 28.2298H352.8V33.7669H325.673C322.059 40.4828 317.623 46.904 313.311 52.1464L339.849 50.2232C337.693 46.904 335.367 43.6314 333.319 40.7775L338.283 38.1563C343.122 44.624 348.845 52.9685 351.699 58.335L346.456 61.4835C345.634 59.7309 344.409 57.637 343.013 55.357C338.766 55.712 335.037 56.0211 331.758 56.2929C311.395 57.9805 308.348 58.2331 306.037 59.1415C305.696 57.9162 304.765 54.8297 303.943 53.077C305.401 52.7358 306.673 51.2779 308.488 48.9979C310.132 47.1211 314.568 40.762 318.119 33.7669H301.089V28.2298ZM197.606 56.5048C200.289 52.1309 204.089 44.7791 207.005 38.2493L210.557 41.9252C207.982 47.9277 204.663 54.7521 201.747 60.2427L197.606 56.5048ZM263.245 35.9228C260.841 31.9057 258.157 27.8731 255.598 24.2592V47.8191C258.467 44.562 261.027 40.4673 263.245 35.9228ZM196.334 28.0592L198.955 24.0266L198.971 24.0421C202.228 25.5 206.664 27.9506 208.944 29.7033L206.198 34.2477C204.089 32.371 199.653 29.7498 196.334 28.0592ZM281.081 7.57256C279.918 16.2574 277.467 24.6629 273.435 29.8584C274.66 30.4943 276.987 31.9057 277.933 32.6657C280.027 29.6878 281.717 25.8412 283.175 21.4674H296.297C295.475 25.2053 294.435 29.0518 293.489 31.7351L297.755 33.0224C299.445 29.0518 301.136 22.8168 302.361 17.3882L298.747 16.3335L297.879 16.5041H284.571C285.207 13.8829 285.796 11.1376 286.2 8.33031L281.081 7.57256ZM199.25 12.425L201.933 8.45439V8.4699C205.252 10.0985 209.797 12.7817 212.077 14.705L209.223 19.0788C207.067 17.1556 202.569 14.2862 199.25 12.425ZM307.495 12.0062H346.813V17.5433H307.495V12.0062ZM9.09563 40.3588V61.313H9.08012H0.565063V8.68711H23.1943C28.0645 8.68711 31.8335 10.114 34.5012 12.9834C37.169 15.8528 38.5028 19.6993 38.5028 24.523C38.5028 29.3466 37.169 33.1931 34.5012 36.0625C31.8335 38.9319 28.0645 40.3588 23.1943 40.3588H9.09563ZM9.09563 32.8829H22.667C24.8384 32.8829 26.5135 32.3245 27.7233 31.1923C28.9331 30.0601 29.538 28.4315 29.538 26.3221V22.7083C29.538 20.5834 28.9331 18.9703 27.7233 17.8381C26.5135 16.7059 24.8229 16.1475 22.667 16.1475H9.09563V32.8829ZM56.3705 40.3588V61.313H56.355H47.8399V8.68711H70.4692C75.3394 8.68711 79.1083 10.114 81.7761 12.9834C84.4438 15.8528 85.7777 19.6993 85.7777 24.523C85.7777 29.3466 84.4438 33.1931 81.7761 36.0625C79.1083 38.9319 75.3394 40.3588 70.4692 40.3588H56.3705ZM56.3705 32.8829H69.9419C72.1133 32.8829 73.7884 32.3245 74.9982 31.1923C76.208 30.0601 76.8129 28.4315 76.8129 26.3221V22.7083C76.8129 20.5834 76.208 18.9703 74.9982 17.8381C73.7884 16.7059 72.0978 16.1475 69.9419 16.1475H56.3705V32.8829ZM115.79 54.3799V61.313H92.8658V54.3799H100.032V15.6357H92.8658V8.70263H115.79V15.6357H108.547V54.3799H115.79ZM156.163 59.6069C153.386 60.7391 150.269 61.313 146.857 61.313C143.444 61.313 140.342 60.7391 137.55 59.6069C134.759 58.4746 132.37 56.7995 130.385 54.5816C128.4 52.3636 126.864 49.6183 125.778 46.3457C124.693 43.0576 124.15 39.2886 124.15 35.0078C124.15 30.727 124.693 26.9425 125.778 23.6699C126.864 20.3973 128.4 17.652 130.385 15.434C132.37 13.2316 134.759 11.5565 137.55 10.4087C140.327 9.2765 143.444 8.70263 146.857 8.70263C150.269 8.70263 153.371 9.26099 156.163 10.4087C158.954 11.541 161.343 13.2161 163.328 15.434C165.314 17.652 166.849 20.3973 167.935 23.6699C169.021 26.958 169.563 30.727 169.563 35.0078C169.563 39.2886 169.021 43.0731 167.935 46.3457C166.849 49.6183 165.314 52.3636 163.328 54.5816C161.343 56.784 158.939 58.4746 156.163 59.6069ZM141.087 52.7049C142.808 53.3718 144.732 53.713 146.857 53.713C148.935 53.713 150.843 53.3718 152.58 52.7049C154.317 52.0379 155.79 51.0608 157.016 49.789C158.226 48.5171 159.187 46.9816 159.854 45.1514C160.521 43.3212 160.862 41.2584 160.862 38.9629V31.0527C160.862 28.7417 160.537 26.6789 159.854 24.8642C159.187 23.0495 158.241 21.4985 157.016 20.2267C155.806 18.9548 154.317 17.9777 152.58 17.3107C150.843 16.6438 148.997 16.3026 146.857 16.3026C144.716 16.3026 142.808 16.6438 141.087 17.3107C139.365 17.9777 137.907 18.9548 136.682 20.2267C135.472 21.4985 134.526 23.0495 133.844 24.8642C133.177 26.6944 132.835 28.7572 132.835 31.0527V38.9629C132.835 41.2739 133.177 43.3367 133.844 45.1514C134.511 46.9661 135.457 48.5171 136.682 49.789C137.907 51.0608 139.365 52.0379 141.087 52.7049Z"
38
+ // fill="#111111"
39
+ ,
40
+ fillRule: "evenodd"
41
+ })]
42
+ }));
43
+ });
44
+ export default Icon;
@@ -0,0 +1,21 @@
1
+ import Avatar from './components/Avatar';
2
+ import BrandColor from './components/BrandColor';
3
+ import BrandMono from './components/BrandMono';
4
+ import Color from './components/Color';
5
+ import Combine from './components/Combine';
6
+ import Mono from './components/Mono';
7
+ import Text from './components/Text';
8
+ import TextCn from './components/TextCn';
9
+ export type CompoundedIcon = typeof Mono & {
10
+ Avatar: typeof Avatar;
11
+ Brand: typeof BrandMono;
12
+ BrandColor: typeof BrandColor;
13
+ Color: typeof Color;
14
+ Combine: typeof Combine;
15
+ Text: typeof Text;
16
+ TextCn: typeof TextCn;
17
+ colorPrimary: string;
18
+ title: string;
19
+ };
20
+ declare const Icons: CompoundedIcon;
21
+ export default Icons;
@@ -0,0 +1,22 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import BrandColor from "./components/BrandColor";
5
+ import BrandMono from "./components/BrandMono";
6
+ import Color from "./components/Color";
7
+ import Combine from "./components/Combine";
8
+ import Mono from "./components/Mono";
9
+ import Text from "./components/Text";
10
+ import TextCn from "./components/TextCn";
11
+ import { COLOR_PRIMARY, TITLE } from "./style";
12
+ var Icons = Mono;
13
+ Icons.Color = Color;
14
+ Icons.Text = Text;
15
+ Icons.TextCn = TextCn;
16
+ Icons.Avatar = Avatar;
17
+ Icons.Brand = BrandMono;
18
+ Icons.BrandColor = BrandColor;
19
+ Icons.Combine = Combine;
20
+ Icons.colorPrimary = COLOR_PRIMARY;
21
+ Icons.title = TITLE;
22
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "PPIO";
2
+ export declare const TEXT_MULTIPLE = 0.7;
3
+ export declare const SPACE_MULTIPLE = 0.3;
4
+ export declare const COLOR_PRIMARY = "#2874ff";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'PPIO';
2
+ export var TEXT_MULTIPLE = 0.7;
3
+ export var SPACE_MULTIPLE = 0.3;
4
+ export var COLOR_PRIMARY = '#2874ff';
@@ -36,6 +36,7 @@ import Higress from "../Higress";
36
36
  import HuggingFace from "../HuggingFace";
37
37
  import Hunyuan from "../Hunyuan";
38
38
  import InternLM from "../InternLM";
39
+ import Jina from "../Jina";
39
40
  import LmStudio from "../LmStudio";
40
41
  import LobeHub from "../LobeHub";
41
42
  import Minimax from "../Minimax";
@@ -46,6 +47,7 @@ import Novita from "../Novita";
46
47
  import Ollama from "../Ollama";
47
48
  import OpenAI from "../OpenAI";
48
49
  import OpenRouter from "../OpenRouter";
50
+ import PPIO from "../PPIO";
49
51
  import Perplexity from "../Perplexity";
50
52
  import Qwen from "../Qwen";
51
53
  import SenseNova from "../SenseNova";
@@ -56,6 +58,7 @@ import TencentCloud from "../TencentCloud";
56
58
  import Together from "../Together";
57
59
  import Upstage from "../Upstage";
58
60
  import VertexAI from "../VertexAI";
61
+ import Vllm from "../Vllm";
59
62
  import Wenxin from "../Wenxin";
60
63
  import WorkersAI from "../WorkersAI";
61
64
  import XAI from "../XAI";
@@ -251,12 +254,12 @@ export var providerMappings = [{
251
254
  }, {
252
255
  Icon: Hunyuan,
253
256
  keywords: [ModelProvider.Hunyuan]
254
- }, {
255
- Icon: TencentCloud,
256
- keywords: [ModelProvider.TencentCloud]
257
257
  }, {
258
258
  Icon: Nvidia,
259
259
  keywords: [ModelProvider.Nvidia]
260
+ }, {
261
+ Icon: TencentCloud,
262
+ keywords: [ModelProvider.TencentCloud]
260
263
  }, {
261
264
  Combine: /*#__PURE__*/memo(function (_ref5) {
262
265
  var _ref5$size = _ref5.size,
@@ -323,6 +326,9 @@ export var providerMappings = [{
323
326
  }, {
324
327
  Icon: Higress,
325
328
  keywords: [ModelProvider.Higress]
329
+ }, {
330
+ Icon: Vllm,
331
+ keywords: [ModelProvider.VLLM]
326
332
  }, {
327
333
  Icon: GiteeAI,
328
334
  combineMultiple: 0.95,
@@ -334,4 +340,10 @@ export var providerMappings = [{
334
340
  }, {
335
341
  Icon: VertexAI,
336
342
  keywords: [ModelProvider.VertexAI]
343
+ }, {
344
+ Icon: PPIO,
345
+ keywords: [ModelProvider.PPIO]
346
+ }, {
347
+ Icon: Jina,
348
+ keywords: [ModelProvider.Jina]
337
349
  }];
@@ -17,6 +17,7 @@ export declare enum ModelProvider {
17
17
  HuggingFace = "huggingface",
18
18
  Hunyuan = "hunyuan",
19
19
  InternLM = "internlm",
20
+ Jina = "jina",
20
21
  LmStudio = "lmstudio",
21
22
  LobeHub = "lobehub",
22
23
  Minimax = "minimax",
@@ -28,6 +29,7 @@ export declare enum ModelProvider {
28
29
  Ollama = "ollama",
29
30
  OpenAI = "openai",
30
31
  OpenRouter = "openrouter",
32
+ PPIO = "ppio",
31
33
  Perplexity = "perplexity",
32
34
  Qwen = "qwen",
33
35
  SenseNova = "sensenova",
@@ -38,6 +40,7 @@ export declare enum ModelProvider {
38
40
  TencentCloud = "tencentcloud",
39
41
  TogetherAI = "togetherai",
40
42
  Upstage = "upstage",
43
+ VLLM = "vllm",
41
44
  VertexAI = "vertexai",
42
45
  Wenxin = "wenxin",
43
46
  XAI = "xai",
@@ -17,6 +17,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
17
17
  ModelProvider["HuggingFace"] = "huggingface";
18
18
  ModelProvider["Hunyuan"] = "hunyuan";
19
19
  ModelProvider["InternLM"] = "internlm";
20
+ ModelProvider["Jina"] = "jina";
20
21
  ModelProvider["LmStudio"] = "lmstudio";
21
22
  ModelProvider["LobeHub"] = "lobehub";
22
23
  ModelProvider["Minimax"] = "minimax";
@@ -28,6 +29,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
28
29
  ModelProvider["Ollama"] = "ollama";
29
30
  ModelProvider["OpenAI"] = "openai";
30
31
  ModelProvider["OpenRouter"] = "openrouter";
32
+ ModelProvider["PPIO"] = "ppio";
31
33
  ModelProvider["Perplexity"] = "perplexity";
32
34
  ModelProvider["Qwen"] = "qwen";
33
35
  ModelProvider["SenseNova"] = "sensenova";
@@ -38,6 +40,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
38
40
  ModelProvider["TencentCloud"] = "tencentcloud";
39
41
  ModelProvider["TogetherAI"] = "togetherai";
40
42
  ModelProvider["Upstage"] = "upstage";
43
+ ModelProvider["VLLM"] = "vllm";
41
44
  ModelProvider["VertexAI"] = "vertexai";
42
45
  ModelProvider["Wenxin"] = "wenxin";
43
46
  ModelProvider["XAI"] = "xai";
package/es/icons.d.ts CHANGED
@@ -59,6 +59,7 @@ export { default as HuggingFace, type CompoundedIcon as HuggingFaceProps } from
59
59
  export { default as Hunyuan, type CompoundedIcon as HunyuanProps } from './Hunyuan';
60
60
  export { default as Ideogram, type CompoundedIcon as IdeogramProps } from './Ideogram';
61
61
  export { default as InternLM, type CompoundedIcon as InternLMProps } from './InternLM';
62
+ export { default as Jina, type CompoundedIcon as JinaProps } from './Jina';
62
63
  export { default as Kimi, type CompoundedIcon as KimiProps } from './Kimi';
63
64
  export { default as Kling, type CompoundedIcon as KlingProps } from './Kling';
64
65
  export { default as LangChain, type CompoundedIcon as LangChainProps } from './LangChain';
@@ -91,6 +92,7 @@ export { default as Pika, type CompoundedIcon as PikaProps } from './Pika';
91
92
  export { default as PixVerse, type CompoundedIcon as PixVerseProps } from './PixVerse';
92
93
  export { default as Poe, type CompoundedIcon as PoeProps } from './Poe';
93
94
  export { default as Pollinations, type CompoundedIcon as PollinationsProps } from './Pollinations';
95
+ export { default as PPIO, type CompoundedIcon as PPIOProps } from './PPIO';
94
96
  export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingyan';
95
97
  export { default as Qwen, type CompoundedIcon as QwenProps } from './Qwen';
96
98
  export { default as Recraft, type CompoundedIcon as RecraftProps } from './Recraft';
package/es/icons.js CHANGED
@@ -59,6 +59,7 @@ export { default as HuggingFace } from "./HuggingFace";
59
59
  export { default as Hunyuan } from "./Hunyuan";
60
60
  export { default as Ideogram } from "./Ideogram";
61
61
  export { default as InternLM } from "./InternLM";
62
+ export { default as Jina } from "./Jina";
62
63
  export { default as Kimi } from "./Kimi";
63
64
  export { default as Kling } from "./Kling";
64
65
  export { default as LangChain } from "./LangChain";
@@ -91,6 +92,7 @@ export { default as Pika } from "./Pika";
91
92
  export { default as PixVerse } from "./PixVerse";
92
93
  export { default as Poe } from "./Poe";
93
94
  export { default as Pollinations } from "./Pollinations";
95
+ export { default as PPIO } from "./PPIO";
94
96
  export { default as Qingyan } from "./Qingyan";
95
97
  export { default as Qwen } from "./Qwen";
96
98
  export { default as Recraft } from "./Recraft";
package/es/toc.js CHANGED
@@ -1111,6 +1111,24 @@ var toc = [{
1111
1111
  "hasTextColor": false
1112
1112
  },
1113
1113
  "title": "InternLM"
1114
+ }, {
1115
+ "color": "#009191",
1116
+ "desc": "https://jina.ai",
1117
+ "docsUrl": "jina",
1118
+ "fullTitle": "Jina AI",
1119
+ "group": "provider",
1120
+ "id": "Jina",
1121
+ "param": {
1122
+ "hasAvatar": true,
1123
+ "hasBrand": false,
1124
+ "hasBrandColor": false,
1125
+ "hasColor": true,
1126
+ "hasCombine": true,
1127
+ "hasText": true,
1128
+ "hasTextCn": false,
1129
+ "hasTextColor": false
1130
+ },
1131
+ "title": "Jina"
1114
1132
  }, {
1115
1133
  "color": "#000",
1116
1134
  "desc": "https://kimi.moonshot.cn",
@@ -1586,6 +1604,24 @@ var toc = [{
1586
1604
  "hasTextColor": false
1587
1605
  },
1588
1606
  "title": "OpenRouter"
1607
+ }, {
1608
+ "color": "#2874ff",
1609
+ "desc": "https://ppinfra.com",
1610
+ "docsUrl": "ppio",
1611
+ "fullTitle": "PPIO",
1612
+ "group": "provider",
1613
+ "id": "PPIO",
1614
+ "param": {
1615
+ "hasAvatar": true,
1616
+ "hasBrand": true,
1617
+ "hasBrandColor": true,
1618
+ "hasColor": true,
1619
+ "hasCombine": true,
1620
+ "hasText": true,
1621
+ "hasTextCn": true,
1622
+ "hasTextColor": false
1623
+ },
1624
+ "title": "PPIO"
1589
1625
  }, {
1590
1626
  "color": "#FFF",
1591
1627
  "desc": "https://ai.google/discover/palm2",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "1.70.0",
3
+ "version": "1.71.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",