@lobehub/icons 1.88.0 → 1.89.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 (37) hide show
  1. package/README.md +61 -61
  2. package/es/CrewAI/components/Avatar.d.ts +5 -0
  3. package/es/CrewAI/components/Avatar.js +30 -0
  4. package/es/CrewAI/components/Brand.d.ts +3 -0
  5. package/es/CrewAI/components/Brand.js +46 -0
  6. package/es/CrewAI/components/BrandColor.d.ts +3 -0
  7. package/es/CrewAI/components/BrandColor.js +49 -0
  8. package/es/CrewAI/components/Color.d.ts +3 -0
  9. package/es/CrewAI/components/Color.js +43 -0
  10. package/es/CrewAI/components/Combine.d.ts +7 -0
  11. package/es/CrewAI/components/Combine.js +32 -0
  12. package/es/CrewAI/components/Mono.d.ts +3 -0
  13. package/es/CrewAI/components/Mono.js +42 -0
  14. package/es/CrewAI/components/Text.d.ts +3 -0
  15. package/es/CrewAI/components/Text.js +40 -0
  16. package/es/CrewAI/index.d.ts +19 -0
  17. package/es/CrewAI/index.js +20 -0
  18. package/es/CrewAI/style.d.ts +4 -0
  19. package/es/CrewAI/style.js +4 -0
  20. package/es/Phidata/components/Avatar.d.ts +5 -0
  21. package/es/Phidata/components/Avatar.js +30 -0
  22. package/es/Phidata/components/Color.d.ts +3 -0
  23. package/es/Phidata/components/Color.js +42 -0
  24. package/es/Phidata/components/Combine.d.ts +7 -0
  25. package/es/Phidata/components/Combine.js +32 -0
  26. package/es/Phidata/components/Mono.d.ts +3 -0
  27. package/es/Phidata/components/Mono.js +42 -0
  28. package/es/Phidata/components/Text.d.ts +3 -0
  29. package/es/Phidata/components/Text.js +40 -0
  30. package/es/Phidata/index.d.ts +15 -0
  31. package/es/Phidata/index.js +16 -0
  32. package/es/Phidata/style.d.ts +4 -0
  33. package/es/Phidata/style.js +4 -0
  34. package/es/icons.d.ts +2 -0
  35. package/es/icons.js +2 -0
  36. package/es/toc.js +36 -0
  37. 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,30 @@
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", "size"];
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 Color from "./Color";
16
+ import { jsx as _jsx } from "react/jsx-runtime";
17
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
18
+ var background = _ref.background,
19
+ size = _ref.size,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
22
+ Icon: Color,
23
+ "aria-label": TITLE,
24
+ background: background || COLOR_PRIMARY,
25
+ color: '#fff',
26
+ iconMultiple: 0.7,
27
+ size: size
28
+ }, rest));
29
+ });
30
+ 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 76 24",
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M74.42 4.916v.004c-.35 1.4-1.353 2.415-2.074 3.055l-.018.016c-.112.097-.23.189-.353.273.053.11.099.222.134.338l.006.021c.138.461.172.947.103 1.424a11.454 11.454 0 01-.642 2.327c-.13.365-.254.71-.35 1.05-.261.908-.56 1.982-.8 3.08a8.92 8.92 0 00-.179 2.438 2.052 2.052 0 01-.879 1.866 6.622 6.622 0 01-1.922 1.03c-1.142.348-1.94.045-2.407-.271a2.191 2.191 0 01-.22-.169c-.577.362-1.222.6-1.896.698-.27.04-.541.061-.813.063a3.746 3.746 0 01-2.834-1.176 3.868 3.868 0 01-.27-.316c-.253.182-.52.346-.797.489a4.173 4.173 0 01-2.553.442 3.842 3.842 0 01-2.015-.848 3.752 3.752 0 01-1.222-2.26 5.388 5.388 0 01-.083-.657c-.39.557-.811 1.079-1.217 1.57a8.184 8.184 0 01-2.793 2.26 5.048 5.048 0 01-3.627.311 6.452 6.452 0 01-1.88-.797 3.837 3.837 0 01-.824-.724c-.237.245-.474.47-.7.687-.138.132-.278.264-.414.398a2.231 2.231 0 01-1.612.644c-.158 0-.316-.013-.473-.039a7.894 7.894 0 01-2.002-.574l-.02-.01a3.771 3.771 0 01-1.594-1.338 8.97 8.97 0 01-1.963 1.22 6.73 6.73 0 01-2.224.634c-.68.076-1.364.103-2.047.08a6.28 6.28 0 01-3.214-1.024 4.922 4.922 0 01-2.008-2.885c-.005-.025-.013-.05-.019-.075-.33.152-.676.265-1.032.335a4.93 4.93 0 01-2.783-.196 2.953 2.953 0 01-1.849-2.182 30.83 30.83 0 00-1.979 3.235c-.062.115-.124.255-.192.4a7.633 7.633 0 01-.457.886 3.226 3.226 0 01-2.838 1.564h-.01a3.707 3.707 0 01-1.75-.382 2.653 2.653 0 01-.18-.105 7.792 7.792 0 01-.254.124 7.506 7.506 0 01-2.489.75l-.14.016c-.358.035-.752.074-1.167.074-.118 0-.239-.004-.359-.01a5.62 5.62 0 01-3.274-1.227 5.244 5.244 0 01-1.824-3.042 7.06 7.06 0 01-.075-2.456c.174-1.19.56-2.338 1.138-3.392.441-.842.967-1.637 1.57-2.373a9.932 9.932 0 012.304-2.052 6.44 6.44 0 012.32-.933c1.127-.21 2.21.06 3.317.826A5.45 5.45 0 0113.155 9.5c.756-1.057 1.703-1.668 2.814-1.812a2.807 2.807 0 012.879 1.36 6.9 6.9 0 011.009-.574 5.043 5.043 0 012.378-.518c1.27.056 2.236.477 2.95 1.288.284.323.5.7.634 1.11.286-.347.599-.67.935-.967a6.409 6.409 0 013.216-1.606 6.049 6.049 0 011.333-.042l.281.01a5.062 5.062 0 011.944.469 4.254 4.254 0 011.891 1.596c.097-.16.202-.32.312-.473.66-.914 1.486-1.453 2.456-1.604a3.174 3.174 0 012.477.568 2.713 2.713 0 01.972 2.793c-.037.175-.076.351-.115.526.158-.336.319-.675.487-1.01.509-1.025 1.18-1.725 2.05-2.138a3.271 3.271 0 013.362.267c.439.3.976.883 1.05 1.97a5.179 5.179 0 01-.297 1.927l-.13.423.081-.186c.165-.376.332-.753.501-1.125.516-1.145 1.045-2.314 2.46-3.189a4.97 4.97 0 01.996-.497c1.096-.372 3.358-.28 4.157 1.17a5.82 5.82 0 011.428-.96 5.123 5.123 0 012.283-.534l.074.002a5.899 5.899 0 011.79.227c.374.115.723.299 1.03.542.87-.309 1.977-.29 2.793.353.161.128.305.278.427.444.248-.39.53-.759.842-1.1.35-.39.772-.707 1.243-.935a6.369 6.369 0 01-.39-1.3 7.3 7.3 0 01-.155-1.292V4.65a3.776 3.776 0 01.693-2.282A3.238 3.238 0 0170.868.984a4.07 4.07 0 012.073.452 3.05 3.05 0 011.478 3.48z",
35
+ stroke: "#fff",
36
+ strokeWidth: "1.959"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M74.42 4.916v.004c-.35 1.4-1.353 2.415-2.074 3.055l-.018.016c-.112.097-.23.189-.353.273.053.11.099.222.134.338l.006.021c.138.461.172.947.103 1.424a11.454 11.454 0 01-.642 2.327c-.13.365-.254.71-.35 1.05-.261.908-.56 1.982-.8 3.08a8.92 8.92 0 00-.179 2.438 2.052 2.052 0 01-.879 1.866 6.624 6.624 0 01-1.922 1.03c-1.142.348-1.94.045-2.407-.271a2.191 2.191 0 01-.22-.169c-.577.362-1.222.6-1.896.698-.27.04-.541.061-.813.063a3.746 3.746 0 01-2.834-1.176 3.868 3.868 0 01-.27-.316c-.253.182-.52.346-.797.489a4.173 4.173 0 01-2.553.442 3.842 3.842 0 01-2.015-.848 3.752 3.752 0 01-1.222-2.26 5.388 5.388 0 01-.083-.657c-.39.557-.811 1.079-1.217 1.57a8.184 8.184 0 01-2.793 2.26 5.048 5.048 0 01-3.627.311 6.452 6.452 0 01-1.88-.797 3.837 3.837 0 01-.824-.724c-.237.245-.474.47-.7.687-.138.132-.278.264-.414.398a2.231 2.231 0 01-1.612.644c-.158 0-.316-.013-.473-.039a7.894 7.894 0 01-2.002-.574l-.02-.01a3.771 3.771 0 01-1.594-1.338 8.97 8.97 0 01-1.963 1.22 6.73 6.73 0 01-2.224.634c-.68.076-1.364.103-2.047.08a6.28 6.28 0 01-3.214-1.024 4.922 4.922 0 01-2.008-2.885c-.005-.025-.013-.05-.019-.075-.33.152-.676.265-1.032.335a4.93 4.93 0 01-2.783-.196 2.953 2.953 0 01-1.849-2.182 30.83 30.83 0 00-1.979 3.235c-.062.115-.124.255-.192.4a7.624 7.624 0 01-.457.886 3.226 3.226 0 01-2.838 1.564h-.01a3.707 3.707 0 01-1.75-.382 2.653 2.653 0 01-.18-.105 7.792 7.792 0 01-.254.124 7.506 7.506 0 01-2.489.75l-.14.016c-.358.035-.752.074-1.167.074-.118 0-.239-.004-.359-.01a5.62 5.62 0 01-3.274-1.227 5.244 5.244 0 01-1.824-3.042 7.06 7.06 0 01-.075-2.456c.174-1.19.56-2.338 1.138-3.392.441-.842.967-1.637 1.57-2.373a9.932 9.932 0 012.304-2.052 6.44 6.44 0 012.32-.933c1.127-.21 2.21.06 3.317.826A5.45 5.45 0 0113.155 9.5c.756-1.057 1.703-1.668 2.814-1.812a2.807 2.807 0 012.879 1.36 6.9 6.9 0 011.009-.574 5.044 5.044 0 012.378-.518c1.27.056 2.236.477 2.95 1.288.284.323.5.7.634 1.11.286-.347.599-.67.935-.967a6.409 6.409 0 013.216-1.606 6.05 6.05 0 011.333-.042l.281.01a5.062 5.062 0 011.944.469 4.254 4.254 0 011.891 1.596c.097-.16.202-.32.312-.473.66-.914 1.486-1.453 2.456-1.604a3.174 3.174 0 012.477.568 2.713 2.713 0 01.972 2.793c-.037.175-.076.351-.115.526.158-.336.319-.675.487-1.01.509-1.025 1.18-1.725 2.05-2.138a3.271 3.271 0 013.362.267c.439.3.976.883 1.05 1.97a5.179 5.179 0 01-.297 1.927l-.13.423.081-.186c.165-.376.332-.753.501-1.125.516-1.145 1.045-2.314 2.46-3.189a4.97 4.97 0 01.996-.497c1.096-.372 3.358-.28 4.157 1.17a5.82 5.82 0 011.428-.96 5.123 5.123 0 012.283-.534l.074.002a5.899 5.899 0 011.79.227c.374.115.723.299 1.03.542.87-.309 1.977-.29 2.793.353.161.128.305.278.427.444.248-.39.53-.759.842-1.1.35-.39.772-.707 1.243-.935a6.369 6.369 0 01-.39-1.3 7.3 7.3 0 01-.155-1.292V4.65a3.776 3.776 0 01.693-2.282A3.238 3.238 0 0170.868.984a4.07 4.07 0 012.073.452 3.05 3.05 0 011.478 3.48z",
39
+ fill: "#000"
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M73.005 4.568c-.233.933-.927 1.699-1.628 2.32a3.221 3.221 0 01-.83.517c-.364.161-.609.059-.828-.27a4.017 4.017 0 01-.538-1.45 5.74 5.74 0 01-.126-1.042 2.335 2.335 0 01.417-1.424 1.792 1.792 0 011.448-.78c.464-.025.928.073 1.342.286.665.345.918 1.138.743 1.843zM70.72 9.039c-.153-.487-.601-.574-1.034-.615-.71-.064-1.266.293-1.715.776a7.47 7.47 0 00-.96 1.35c-.562.973-.904 2.047-1.232 3.114-.213.693-.4 1.303-.665 2.204-.158.532-.335 1.353-.828 1.768a.68.68 0 01-.452.18c-.206-.029-.28-.246-.289-.448a6.917 6.917 0 01-.002-.669c.056-.684.2-1.358.425-2.006.33-1.066.685-2.126 1.004-3.196.137-.37.144-.775.018-1.149a.85.85 0 00-.252-.337c-.444-.35-1.25-.291-1.736.033-.161.11-.32.225-.489.341-.037-.06-.066-.103-.093-.15a1.782 1.782 0 00-1.05-.878 4.887 4.887 0 00-1.44-.159 3.706 3.706 0 00-1.644.394 5.184 5.184 0 00-1.98 1.761c-.55.75-1.04 1.544-1.462 2.372-.44.834-.762 1.725-.953 2.648-.065.338-.104.68-.116 1.024-.004.279.022.557.075.83.07.544.33 1.046.733 1.416.369.293.814.472 1.283.517a2.707 2.707 0 001.668-.291 5.33 5.33 0 001.472-1.143c.177-.19.363-.372.565-.582.023.122.04.2.052.278.072.58.32 1.124.708 1.561.655.69 1.495.805 2.38.675a3.486 3.486 0 001.367-.512c.216-.138.85-.882 1.099-.689.304.237.335.676.675.905a1.367 1.367 0 001.171.086 5.375 5.375 0 001.501-.824.615.615 0 00.27-.607c-.057-.947.013-1.897.21-2.825.234-1.064.522-2.118.822-3.165.303-1.067.801-2.077.953-3.189a1.86 1.86 0 00-.059-.8zm-9.786 3.352a8.749 8.749 0 01-1.76 3.544 4.608 4.608 0 01-1.054 1.016c-.24.16-.472.218-.604-.077a.828.828 0 01-.068-.256c-.052-.507.198-1.034.371-1.496.19-.52.403-1.029.638-1.527.34-.72.737-1.41 1.358-1.928.203-.153.429-.273.669-.357.165-.066.359.082.434.264.091.264.096.55.016.817zM24.547 15.085c-.345 1.073-1.033 1.77-2.162 1.996a3.478 3.478 0 01-1.975-.128 1.528 1.528 0 01-.982-1.389c-.046-.809.278-1.507.654-2.19.157-.283.32-.564.45-.86.056-.15.077-.308.062-.466a.35.35 0 00-.479-.272c-.28.13-.54.297-.776.497-.944.867-1.703 1.89-2.434 2.94a32.376 32.376 0 00-2.13 3.469c-.207.395-.363.822-.597 1.198a1.782 1.782 0 01-1.61.879 2.286 2.286 0 01-1.079-.217 1.2 1.2 0 01-.559-.65c-.386.215-.768.454-1.171.644-.63.32-1.31.53-2.01.619a9.147 9.147 0 01-1.437.073 4.165 4.165 0 01-2.444-.904 3.79 3.79 0 01-1.32-2.22 5.619 5.619 0 01-.053-1.958 8.607 8.607 0 01.981-2.904c.396-.755.868-1.468 1.408-2.127A8.518 8.518 0 016.851 9.36a5.038 5.038 0 011.804-.725c.832-.155 1.55.132 2.217.593.465.315.857.725 1.15 1.203.27.487.342 1.06.2 1.598a7.865 7.865 0 01-.63 1.697c-.252.56-.502 1.118-.76 1.675a.485.485 0 01-.617.296 2.16 2.16 0 01-1.455-1.583c-.06-.527.025-1.06.248-1.542.231-.595.497-1.177.753-1.76a.337.337 0 00-.13-.472c-.294.068-.56.224-.764.446-.361.357-.703.733-1.028 1.123a13.7 13.7 0 00-1.669 2.66 4.817 4.817 0 00-.52 1.749c-.06.47-.044.945.045 1.41a1.306 1.306 0 001.232 1.09 5.533 5.533 0 003.259-.843c.37-.255.726-.53 1.066-.823a.516.516 0 00.136-.213c.344-.918.666-1.843 1.03-2.75.268-.674.586-1.328.885-1.987.281-.648.625-1.266 1.028-1.847.454-.638 1.026-1.121 1.823-1.224.642-.083 1.234.132 1.54.858.27.638.115 1.25-.093 1.864-.054.157-.106.314-.174.516.374-.408.692-.796 1.051-1.137a7.418 7.418 0 011.986-1.437 3.65 3.65 0 011.703-.386c.732.033 1.414.217 1.927.797.223.262.37.58.424.92.12.63-.089 1.196-.322 1.762-.172.42-.349.838-.479 1.271-.104.351.082.6.454.694.083.022.167.036.252.041.138.006.157.084.125.19zM54.99 9.99c-.306-.686-1.815-.758-2.438-.546a3.487 3.487 0 00-.701.357c-1.042.645-1.412 1.472-1.901 2.553-.485 1.067-.931 2.153-1.45 3.203a16.012 16.012 0 01-1.176 1.943c-.25.403-.648.69-1.108.8-.274.054-.386-.069-.483-.307a2.26 2.26 0 01-.161-.687 5.471 5.471 0 01.258-2.002c.308-1.034.64-2.06.952-3.092.165-.448.245-.923.237-1.4a1.079 1.079 0 00-.417-.865 1.842 1.842 0 00-1.918-.157c-.644.306-1.065.853-1.374 1.474-.436.873-.83 1.767-1.257 2.644-.293.607-.609 1.204-.915 1.804a14.142 14.142 0 01-1.395 2.343c-.085.108-.237.26-.334.242-.116-.017-.21-.194-.308-.304a.17.17 0 01-.035-.07 3.696 3.696 0 01-.076-1.641c.1-.617.223-1.232.365-1.84.28-1.217.598-2.425.86-3.648a1.26 1.26 0 00-.435-1.332 1.739 1.739 0 00-1.368-.287c-.646.1-1.12.492-1.5 1.016a5.9 5.9 0 00-.965 2.15c-.15.64-.248 1.291-.355 1.943-.048.3-.05.607-.087.912a.42.42 0 01-.103.227c-.258.27-.52.533-.79.791-.51.492-1.095.9-1.733 1.21a3.281 3.281 0 01-2.728.171 1.8 1.8 0 01-1.128-1.325c.378 0 .742.004 1.107 0a5.255 5.255 0 002.467-.646 3.787 3.787 0 001.657-1.656c.41-.796.51-1.717.277-2.582a2.703 2.703 0 00-1.592-1.837 3.628 3.628 0 00-1.393-.345 6.964 6.964 0 00-1.334.013 4.988 4.988 0 00-2.493 1.26 8.107 8.107 0 00-1.798 2.34 8.439 8.439 0 00-.947 3.16c-.062.632-.01 1.27.154 1.884.2.84.706 1.575 1.418 2.064.74.48 1.597.75 2.478.778a12.98 12.98 0 001.841-.076 5.375 5.375 0 001.754-.512 7.69 7.69 0 002.409-1.73c.213-.224.417-.458.6-.662.174.425.331.865.53 1.284.242.545.675.982 1.217 1.228.525.23 1.078.388 1.645.471a.918.918 0 00.842-.203c.374-.369.764-.724 1.129-1.102.204-.226.396-.462.576-.708.266-.34.527-.685.805-1.046.03.177.052.326.085.474.173.75.493 1.402 1.162 1.843.454.279.95.484 1.468.609a3.613 3.613 0 002.611-.22 6.783 6.783 0 002.299-1.875 20.56 20.56 0 001.387-1.833 63.664 63.664 0 001.856-3.057c.302-.526.596-1.057.887-1.589.239-.434.877-1.2.915-1.687a.65.65 0 00-.052-.322zm-25.708 3.8c.2-.547.502-1.05.889-1.484.233-.292.555-.5.917-.59a.722.722 0 01.811.912c-.277 1.179-1.059 1.846-2.196 2.137a5.306 5.306 0 01-.75.072c.12-.388.213-.722.33-1.048z",
42
+ fill: "#fff"
43
+ })]
44
+ }));
45
+ });
46
+ 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,49 @@
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 76 24",
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M74.42 4.916v.004c-.35 1.4-1.353 2.415-2.074 3.055l-.018.016c-.112.097-.23.189-.353.273.053.11.099.222.134.338l.006.021c.138.461.172.947.103 1.424a11.454 11.454 0 01-.642 2.327c-.13.365-.254.71-.35 1.05-.261.908-.56 1.982-.8 3.08a8.92 8.92 0 00-.179 2.438 2.052 2.052 0 01-.879 1.866 6.622 6.622 0 01-1.922 1.03c-1.142.348-1.94.045-2.407-.271a2.191 2.191 0 01-.22-.169c-.577.362-1.222.6-1.896.698-.27.04-.541.061-.813.063a3.746 3.746 0 01-2.834-1.176 3.868 3.868 0 01-.27-.316c-.253.182-.52.346-.797.489a4.173 4.173 0 01-2.553.442 3.842 3.842 0 01-2.015-.848 3.752 3.752 0 01-1.222-2.26 5.388 5.388 0 01-.083-.657c-.39.557-.811 1.079-1.217 1.57a8.184 8.184 0 01-2.793 2.26 5.048 5.048 0 01-3.627.311 6.452 6.452 0 01-1.88-.797 3.837 3.837 0 01-.824-.724c-.237.245-.474.47-.7.687-.138.132-.278.264-.414.398a2.231 2.231 0 01-1.612.644c-.158 0-.316-.013-.473-.039a7.894 7.894 0 01-2.002-.574l-.02-.01a3.771 3.771 0 01-1.594-1.338 8.97 8.97 0 01-1.963 1.22 6.73 6.73 0 01-2.224.634c-.68.076-1.364.103-2.047.08a6.28 6.28 0 01-3.214-1.024 4.922 4.922 0 01-2.008-2.885c-.005-.025-.013-.05-.019-.075-.33.152-.676.265-1.032.335a4.93 4.93 0 01-2.783-.196 2.953 2.953 0 01-1.849-2.182 30.83 30.83 0 00-1.979 3.235c-.062.115-.124.255-.192.4a7.633 7.633 0 01-.457.886 3.226 3.226 0 01-2.838 1.564h-.01a3.707 3.707 0 01-1.75-.382 2.653 2.653 0 01-.18-.105 7.792 7.792 0 01-.254.124 7.506 7.506 0 01-2.489.75l-.14.016c-.358.035-.752.074-1.167.074-.118 0-.239-.004-.359-.01a5.62 5.62 0 01-3.274-1.227 5.244 5.244 0 01-1.824-3.042 7.06 7.06 0 01-.075-2.456c.174-1.19.56-2.338 1.138-3.392.441-.842.967-1.637 1.57-2.373a9.932 9.932 0 012.304-2.052 6.44 6.44 0 012.32-.933c1.127-.21 2.21.06 3.317.826A5.45 5.45 0 0113.155 9.5c.756-1.057 1.703-1.668 2.814-1.812a2.807 2.807 0 012.879 1.36 6.9 6.9 0 011.009-.574 5.043 5.043 0 012.378-.518c1.27.056 2.236.477 2.95 1.288.284.323.5.7.634 1.11.286-.347.599-.67.935-.967a6.409 6.409 0 013.216-1.606 6.049 6.049 0 011.333-.042l.281.01a5.062 5.062 0 011.944.469 4.254 4.254 0 011.891 1.596c.097-.16.202-.32.312-.473.66-.914 1.486-1.453 2.456-1.604a3.174 3.174 0 012.477.568 2.713 2.713 0 01.972 2.793c-.037.175-.076.351-.115.526.158-.336.319-.675.487-1.01.509-1.025 1.18-1.725 2.05-2.138a3.271 3.271 0 013.362.267c.439.3.976.883 1.05 1.97a5.179 5.179 0 01-.297 1.927l-.13.423.081-.186c.165-.376.332-.753.501-1.125.516-1.145 1.045-2.314 2.46-3.189a4.97 4.97 0 01.996-.497c1.096-.372 3.358-.28 4.157 1.17a5.82 5.82 0 011.428-.96 5.123 5.123 0 012.283-.534l.074.002a5.899 5.899 0 011.79.227c.374.115.723.299 1.03.542.87-.309 1.977-.29 2.793.353.161.128.305.278.427.444.248-.39.53-.759.842-1.1.35-.39.772-.707 1.243-.935a6.369 6.369 0 01-.39-1.3 7.3 7.3 0 01-.155-1.292V4.65a3.776 3.776 0 01.693-2.282A3.238 3.238 0 0170.868.984a4.07 4.07 0 012.073.452 3.05 3.05 0 011.478 3.48z",
35
+ stroke: "#fff",
36
+ strokeWidth: "1.959"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M74.42 4.916v.004c-.35 1.4-1.353 2.415-2.074 3.055l-.018.016c-.112.097-.23.189-.353.273.053.11.099.222.134.338l.006.021c.138.461.172.947.103 1.424a11.454 11.454 0 01-.642 2.327c-.13.365-.254.71-.35 1.05-.261.908-.56 1.982-.8 3.08a8.92 8.92 0 00-.179 2.438 2.052 2.052 0 01-.879 1.866 6.624 6.624 0 01-1.922 1.03c-1.142.348-1.94.045-2.407-.271a2.191 2.191 0 01-.22-.169c-.577.362-1.222.6-1.896.698-.27.04-.541.061-.813.063a3.746 3.746 0 01-2.834-1.176 3.868 3.868 0 01-.27-.316c-.253.182-.52.346-.797.489a4.173 4.173 0 01-2.553.442 3.842 3.842 0 01-2.015-.848 3.752 3.752 0 01-1.222-2.26 5.388 5.388 0 01-.083-.657c-.39.557-.811 1.079-1.217 1.57a8.184 8.184 0 01-2.793 2.26 5.048 5.048 0 01-3.627.311 6.452 6.452 0 01-1.88-.797 3.837 3.837 0 01-.824-.724c-.237.245-.474.47-.7.687-.138.132-.278.264-.414.398a2.231 2.231 0 01-1.612.644c-.158 0-.316-.013-.473-.039a7.894 7.894 0 01-2.002-.574l-.02-.01a3.771 3.771 0 01-1.594-1.338 8.97 8.97 0 01-1.963 1.22 6.73 6.73 0 01-2.224.634c-.68.076-1.364.103-2.047.08a6.28 6.28 0 01-3.214-1.024 4.922 4.922 0 01-2.008-2.885c-.005-.025-.013-.05-.019-.075-.33.152-.676.265-1.032.335a4.93 4.93 0 01-2.783-.196 2.953 2.953 0 01-1.849-2.182 30.83 30.83 0 00-1.979 3.235c-.062.115-.124.255-.192.4a7.624 7.624 0 01-.457.886 3.226 3.226 0 01-2.838 1.564h-.01a3.707 3.707 0 01-1.75-.382 2.653 2.653 0 01-.18-.105 7.792 7.792 0 01-.254.124 7.506 7.506 0 01-2.489.75l-.14.016c-.358.035-.752.074-1.167.074-.118 0-.239-.004-.359-.01a5.62 5.62 0 01-3.274-1.227 5.244 5.244 0 01-1.824-3.042 7.06 7.06 0 01-.075-2.456c.174-1.19.56-2.338 1.138-3.392.441-.842.967-1.637 1.57-2.373a9.932 9.932 0 012.304-2.052 6.44 6.44 0 012.32-.933c1.127-.21 2.21.06 3.317.826A5.45 5.45 0 0113.155 9.5c.756-1.057 1.703-1.668 2.814-1.812a2.807 2.807 0 012.879 1.36 6.9 6.9 0 011.009-.574 5.044 5.044 0 012.378-.518c1.27.056 2.236.477 2.95 1.288.284.323.5.7.634 1.11.286-.347.599-.67.935-.967a6.409 6.409 0 013.216-1.606 6.05 6.05 0 011.333-.042l.281.01a5.062 5.062 0 011.944.469 4.254 4.254 0 011.891 1.596c.097-.16.202-.32.312-.473.66-.914 1.486-1.453 2.456-1.604a3.174 3.174 0 012.477.568 2.713 2.713 0 01.972 2.793c-.037.175-.076.351-.115.526.158-.336.319-.675.487-1.01.509-1.025 1.18-1.725 2.05-2.138a3.271 3.271 0 013.362.267c.439.3.976.883 1.05 1.97a5.179 5.179 0 01-.297 1.927l-.13.423.081-.186c.165-.376.332-.753.501-1.125.516-1.145 1.045-2.314 2.46-3.189a4.97 4.97 0 01.996-.497c1.096-.372 3.358-.28 4.157 1.17a5.82 5.82 0 011.428-.96 5.123 5.123 0 012.283-.534l.074.002a5.899 5.899 0 011.79.227c.374.115.723.299 1.03.542.87-.309 1.977-.29 2.793.353.161.128.305.278.427.444.248-.39.53-.759.842-1.1.35-.39.772-.707 1.243-.935a6.369 6.369 0 01-.39-1.3 7.3 7.3 0 01-.155-1.292V4.65a3.776 3.776 0 01.693-2.282A3.238 3.238 0 0170.868.984a4.07 4.07 0 012.073.452 3.05 3.05 0 011.478 3.48z",
39
+ fill: "#262626"
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M73.005 4.568c-.233.933-.927 1.699-1.628 2.32a3.221 3.221 0 01-.83.517c-.364.161-.609.059-.828-.27a4.017 4.017 0 01-.538-1.45 5.74 5.74 0 01-.126-1.042 2.335 2.335 0 01.417-1.424 1.792 1.792 0 011.448-.78c.464-.025.928.073 1.342.286.665.345.918 1.138.743 1.843zM70.72 9.039c-.153-.487-.601-.574-1.034-.615-.71-.064-1.266.293-1.715.776a7.47 7.47 0 00-.96 1.35c-.562.973-.904 2.047-1.232 3.114-.213.693-.4 1.303-.665 2.204-.158.532-.335 1.353-.828 1.768a.68.68 0 01-.452.18c-.206-.029-.28-.246-.289-.448a6.917 6.917 0 01-.002-.669c.056-.684.2-1.358.425-2.006.33-1.066.685-2.126 1.004-3.196.137-.37.144-.775.018-1.149a.85.85 0 00-.252-.337c-.444-.35-1.25-.291-1.736.033-.161.11-.32.225-.489.341-.037-.06-.066-.103-.093-.15a1.782 1.782 0 00-1.05-.878 4.887 4.887 0 00-1.44-.159 3.706 3.706 0 00-1.644.394 5.184 5.184 0 00-1.98 1.761c-.55.75-1.04 1.544-1.462 2.372-.44.834-.762 1.725-.953 2.648-.065.338-.104.68-.116 1.024-.004.279.022.557.075.83.07.544.33 1.046.733 1.416.369.293.814.472 1.283.517a2.707 2.707 0 001.668-.291 5.33 5.33 0 001.472-1.143c.177-.19.363-.372.565-.582.023.122.04.2.052.278.072.58.32 1.124.708 1.561.655.69 1.495.805 2.38.675a3.486 3.486 0 001.367-.512c.216-.138.85-.882 1.099-.689.304.237.335.676.675.905a1.367 1.367 0 001.171.086 5.375 5.375 0 001.501-.824.615.615 0 00.27-.607c-.057-.947.013-1.897.21-2.825.234-1.064.522-2.118.822-3.165.303-1.067.801-2.077.953-3.189a1.86 1.86 0 00-.059-.8zm-9.786 3.352a8.749 8.749 0 01-1.76 3.544 4.608 4.608 0 01-1.054 1.016c-.24.16-.472.218-.604-.077a.828.828 0 01-.068-.256c-.052-.507.198-1.034.371-1.496.19-.52.403-1.029.638-1.527.34-.72.737-1.41 1.358-1.928.203-.153.429-.273.669-.357.165-.066.359.082.434.264.091.264.096.55.016.817z",
42
+ fill: "#FF5A50"
43
+ }), /*#__PURE__*/_jsx("path", {
44
+ d: "M24.547 15.085c-.345 1.073-1.033 1.77-2.162 1.996a3.478 3.478 0 01-1.975-.128 1.528 1.528 0 01-.982-1.389c-.046-.809.278-1.507.654-2.19.157-.283.32-.564.45-.86.056-.15.077-.308.062-.466a.35.35 0 00-.479-.272c-.28.13-.54.297-.776.497-.944.867-1.703 1.89-2.434 2.94a32.376 32.376 0 00-2.13 3.469c-.207.395-.363.822-.597 1.198a1.782 1.782 0 01-1.61.879 2.286 2.286 0 01-1.079-.217 1.2 1.2 0 01-.559-.65c-.386.215-.768.454-1.171.644-.63.32-1.31.53-2.01.619a9.147 9.147 0 01-1.437.073 4.165 4.165 0 01-2.444-.904 3.79 3.79 0 01-1.32-2.22 5.619 5.619 0 01-.053-1.958 8.607 8.607 0 01.981-2.904c.396-.755.868-1.468 1.408-2.127A8.518 8.518 0 016.851 9.36a5.038 5.038 0 011.804-.725c.832-.155 1.55.132 2.217.593.465.315.857.725 1.15 1.203.27.487.342 1.06.2 1.598a7.865 7.865 0 01-.63 1.697c-.252.56-.502 1.118-.76 1.675a.485.485 0 01-.617.296 2.16 2.16 0 01-1.455-1.583c-.06-.527.025-1.06.248-1.542.231-.595.497-1.177.753-1.76a.337.337 0 00-.13-.472c-.294.068-.56.224-.764.446-.361.357-.703.733-1.028 1.123a13.7 13.7 0 00-1.669 2.66 4.817 4.817 0 00-.52 1.749c-.06.47-.044.945.045 1.41a1.306 1.306 0 001.232 1.09 5.533 5.533 0 003.259-.843c.37-.255.726-.53 1.066-.823a.516.516 0 00.136-.213c.344-.918.666-1.843 1.03-2.75.268-.674.586-1.328.885-1.987.281-.648.625-1.266 1.028-1.847.454-.638 1.026-1.121 1.823-1.224.642-.083 1.234.132 1.54.858.27.638.115 1.25-.093 1.864-.054.157-.106.314-.174.516.374-.408.692-.796 1.051-1.137a7.418 7.418 0 011.986-1.437 3.65 3.65 0 011.703-.386c.732.033 1.414.217 1.927.797.223.262.37.58.424.92.12.63-.089 1.196-.322 1.762-.172.42-.349.838-.479 1.271-.104.351.082.6.454.694.083.022.167.036.252.041.138.006.157.084.125.19zM54.99 9.99c-.306-.686-1.815-.758-2.438-.546a3.487 3.487 0 00-.701.357c-1.042.645-1.412 1.472-1.901 2.553-.485 1.067-.931 2.153-1.45 3.203a16.012 16.012 0 01-1.176 1.943c-.25.403-.648.69-1.108.8-.274.054-.386-.069-.483-.307a2.26 2.26 0 01-.161-.687 5.471 5.471 0 01.258-2.002c.308-1.034.64-2.06.952-3.092.165-.448.245-.923.237-1.4a1.079 1.079 0 00-.417-.865 1.842 1.842 0 00-1.918-.157c-.644.306-1.065.853-1.374 1.474-.436.873-.83 1.767-1.257 2.644-.293.607-.609 1.204-.915 1.804a14.142 14.142 0 01-1.395 2.343c-.085.108-.237.26-.334.242-.116-.017-.21-.194-.308-.304a.17.17 0 01-.035-.07 3.696 3.696 0 01-.076-1.641c.1-.617.223-1.232.365-1.84.28-1.217.598-2.425.86-3.648a1.26 1.26 0 00-.435-1.332 1.739 1.739 0 00-1.368-.287c-.646.1-1.12.492-1.5 1.016a5.9 5.9 0 00-.965 2.15c-.15.64-.248 1.291-.355 1.943-.048.3-.05.607-.087.912a.42.42 0 01-.103.227c-.258.27-.52.533-.79.791-.51.492-1.095.9-1.733 1.21a3.281 3.281 0 01-2.728.171 1.8 1.8 0 01-1.128-1.325c.378 0 .742.004 1.107 0a5.255 5.255 0 002.467-.646 3.787 3.787 0 001.657-1.656c.41-.796.51-1.717.277-2.582a2.703 2.703 0 00-1.592-1.837 3.628 3.628 0 00-1.393-.345 6.964 6.964 0 00-1.334.013 4.988 4.988 0 00-2.493 1.26 8.107 8.107 0 00-1.798 2.34 8.439 8.439 0 00-.947 3.16c-.062.632-.01 1.27.154 1.884.2.84.706 1.575 1.418 2.064.74.48 1.597.75 2.478.778a12.98 12.98 0 001.841-.076 5.375 5.375 0 001.754-.512 7.69 7.69 0 002.409-1.73c.213-.224.417-.458.6-.662.174.425.331.865.53 1.284.242.545.675.982 1.217 1.228.525.23 1.078.388 1.645.471a.918.918 0 00.842-.203c.374-.369.764-.724 1.129-1.102.204-.226.396-.462.576-.708.266-.34.527-.685.805-1.046.03.177.052.326.085.474.173.75.493 1.402 1.162 1.843.454.279.95.484 1.468.609a3.613 3.613 0 002.611-.22 6.783 6.783 0 002.299-1.875 20.56 20.56 0 001.387-1.833 63.664 63.664 0 001.856-3.057c.302-.526.596-1.057.887-1.589.239-.434.877-1.2.915-1.687a.65.65 0 00-.052-.322zm-25.708 3.8c.2-.547.502-1.05.889-1.484.233-.292.555-.5.917-.59a.722.722 0 01.811.912c-.277 1.179-1.059 1.846-2.196 2.137a5.306 5.306 0 01-.75.072c.12-.388.213-.722.33-1.048z",
45
+ fill: "#fff"
46
+ })]
47
+ }));
48
+ });
49
+ 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,43 @@
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: "M19.41 10.783a2.753 2.753 0 012.471 1.355c.483.806.622 1.772.385 2.68l-.136.522a9.994 9.994 0 01-3.156 5.058c-.605.517-1.283 1.062-2.083 1.524l-.028.017c-.402.232-.884.511-1.398.756-1.19.602-2.475.997-3.798 1.167-.854.111-1.716.155-2.577.132H9.072a8.588 8.588 0 01-5.046-1.87l-.012-.01-.012-.01A8.024 8.024 0 011.22 17.42a10.916 10.916 0 01-.102-3.779A15.622 15.622 0 012.88 8.4a21.758 21.758 0 012.432-3.678 15.44 15.44 0 013.56-3.182A9.958 9.958 0 0112.44.104h.004l.003-.002c2.057-.384 3.743.374 5.024 1.26a8.28 8.28 0 012.395 2.513l.024.04.023.042a5.474 5.474 0 01.508 4.012c-.239.97-.577 1.914-1.01 2.814z",
36
+ fill: "#461816"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M18.861 13.165a.748.748 0 011.256.031c.199.332.256.73.159 1.103l-.137.522a7.936 7.936 0 01-2.504 4.014c-.572.49-1.138.939-1.774 1.306-.427.247-.857.496-1.303.707a9.628 9.628 0 01-3.155.973 14.33 14.33 0 01-2.257.116 6.531 6.531 0 01-3.837-1.422 5.967 5.967 0 01-2.071-3.494 8.859 8.859 0 01-.085-3.08 13.56 13.56 0 011.54-4.568 19.701 19.701 0 012.212-3.348 13.382 13.382 0 013.088-2.76 7.9 7.9 0 012.832-1.14c1.307-.245 2.434.207 3.481.933a6.222 6.222 0 011.806 1.892c.423.767.536 1.668.314 2.515a12.394 12.394 0 01-.99 2.67l-.223.497c-.321.713-.642 1.426-.97 2.137a.762.762 0 01-.97.467 3.39 3.39 0 01-2.283-2.49c-.095-.83.04-1.669.39-2.426.288-.746.61-1.477.933-2.208l.248-.563a.53.53 0 00-.204-.742 2.35 2.35 0 00-1.2.702 25.291 25.291 0 00-1.614 1.767 21.561 21.561 0 00-2.619 4.184 7.59 7.59 0 00-.816 2.753 7.042 7.042 0 00.07 2.219 2.055 2.055 0 001.934 1.715c1.801.1 3.59-.363 5.116-1.328.582-.4 1.141-.831 1.675-1.294.752-.71 1.376-1.519 1.958-2.36z",
39
+ fill: "#fff"
40
+ })]
41
+ }));
42
+ });
43
+ 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,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 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
+ clipRule: "evenodd",
38
+ d: "M18.213 14.057l.054-.071.132-.176c.158-.212.311-.427.462-.645a.748.748 0 011.256.031 1.438 1.438 0 01.158 1.103l-.136.522-.04.152a7.935 7.935 0 01-2.464 3.863c-.572.49-1.138.938-1.774 1.306-.427.247-.857.495-1.303.706a9.628 9.628 0 01-3.155.974c-.748.097-1.503.136-2.257.116a6.531 6.531 0 01-3.837-1.423 5.967 5.967 0 01-2.071-3.494 8.859 8.859 0 01-.085-3.08 13.56 13.56 0 011.54-4.568 19.7 19.7 0 012.212-3.348 13.382 13.382 0 013.088-2.759 7.9 7.9 0 012.832-1.141c1.307-.245 2.434.207 3.481.933a6.221 6.221 0 011.806 1.893c.423.766.536 1.667.314 2.514a12.39 12.39 0 01-.99 2.67l-.223.497c-.321.713-.642 1.426-.97 2.138a.762.762 0 01-.97.466 3.39 3.39 0 01-2.283-2.49c-.095-.83.04-1.669.39-2.426l.02-.054c.232-.594.485-1.18.741-1.764l.03-.065a326.498 326.498 0 01.37-.841l.02-.047a.533.533 0 00-.204-.742 2.348 2.348 0 00-1.2.702l-.036.036-.001.001-.028.028a26.065 26.065 0 00-1.55 1.702 21.56 21.56 0 00-2.618 4.184 7.59 7.59 0 00-.816 2.753 7.042 7.042 0 00.07 2.219 2.056 2.056 0 001.934 1.715c1.801.1 3.59-.363 5.116-1.328.582-.4 1.141-.831 1.675-1.293.481-.456.91-.951 1.31-1.47zm1.198-3.274a2.753 2.753 0 012.47 1.355c.483.806.622 1.772.385 2.68l-.136.522a9.994 9.994 0 01-3.156 5.058c-.605.517-1.283 1.062-2.083 1.524l-.028.017c-.402.232-.884.511-1.398.756-1.19.602-2.475.997-3.798 1.167-.854.111-1.716.155-2.577.132H9.072a8.588 8.588 0 01-5.046-1.87l-.012-.01-.012-.01A8.024 8.024 0 011.22 17.42a10.916 10.916 0 01-.102-3.779A15.622 15.622 0 012.88 8.4a21.758 21.758 0 012.432-3.678 15.44 15.44 0 013.56-3.182A9.958 9.958 0 0112.44.104h.004l.003-.002c2.057-.384 3.743.374 5.024 1.26a8.28 8.28 0 012.395 2.513l.024.04.023.042a5.474 5.474 0 01.508 4.012c-.239.97-.577 1.914-1.01 2.814z"
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,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 { 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 79 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: "M77.09 2.269c-.248.992-.987 1.808-1.732 2.468a3.43 3.43 0 01-.884.551c-.387.171-.647.062-.88-.287a4.273 4.273 0 01-.573-1.544 6.096 6.096 0 01-.133-1.108c-.021-.54.134-1.072.443-1.515a1.908 1.908 0 011.54-.83c.495-.027.988.077 1.428.304.708.367.977 1.211.79 1.96zM74.659 7.026c-.163-.518-.64-.611-1.1-.654-.755-.068-1.348.311-1.825.825-.392.44-.735.921-1.021 1.437-.6 1.035-.963 2.178-1.312 3.313-.226.738-.425 1.387-.708 2.345-.167.566-.356 1.44-.88 1.882a.724.724 0 01-.481.192c-.219-.032-.298-.263-.308-.477a7.386 7.386 0 01-.002-.712 8.67 8.67 0 01.452-2.134c.35-1.136.729-2.262 1.07-3.402.145-.393.151-.824.018-1.222a.902.902 0 00-.269-.359c-.472-.371-1.329-.31-1.847.035-.171.118-.34.24-.52.364-.04-.064-.07-.11-.099-.16a1.898 1.898 0 00-1.117-.934 5.2 5.2 0 00-1.533-.17 3.943 3.943 0 00-1.748.42 5.516 5.516 0 00-2.107 1.873 18.54 18.54 0 00-1.556 2.525c-.469.886-.81 1.835-1.014 2.817-.069.36-.11.724-.124 1.09-.003.296.024.592.08.883a2.47 2.47 0 00.78 1.507c.393.31.867.502 1.365.549.61.089 1.232-.02 1.775-.31a5.67 5.67 0 001.566-1.215c.188-.203.386-.397.601-.62.025.13.044.213.056.295.077.618.34 1.197.753 1.662.698.735 1.592.856 2.533.718a3.71 3.71 0 001.454-.545c.23-.146.906-.938 1.17-.733.323.253.356.719.718.963a1.455 1.455 0 001.246.092 5.721 5.721 0 001.598-.877.654.654 0 00.286-.646c-.06-1.007.014-2.018.223-3.005.25-1.133.556-2.254.875-3.369.322-1.135.853-2.21 1.014-3.393a1.98 1.98 0 00-.062-.85zm-10.413 3.567a9.308 9.308 0 01-1.872 3.77 4.9 4.9 0 01-1.122 1.082c-.255.17-.502.231-.643-.083a.88.88 0 01-.072-.272c-.056-.539.21-1.1.395-1.591.202-.554.428-1.095.679-1.625.36-.765.784-1.5 1.444-2.051.216-.163.457-.291.712-.38.176-.07.382.087.462.28.097.281.103.585.017.87zM25.53 13.46c-.368 1.141-1.1 1.882-2.302 2.124a3.7 3.7 0 01-2.1-.136 1.625 1.625 0 01-1.045-1.478c-.05-.86.295-1.604.696-2.33.167-.302.34-.601.478-.917.06-.158.082-.327.066-.495a.37.37 0 00-.51-.29 3.653 3.653 0 00-.825.53c-1.005.922-1.812 2.012-2.59 3.128a34.469 34.469 0 00-2.266 3.69c-.221.422-.386.876-.636 1.276a1.896 1.896 0 01-1.713.935 2.433 2.433 0 01-1.148-.231 1.275 1.275 0 01-.594-.692c-.41.23-.818.483-1.247.686-.67.34-1.393.563-2.138.658a9.737 9.737 0 01-1.53.078 4.431 4.431 0 01-2.6-.961 4.033 4.033 0 01-1.403-2.364 5.978 5.978 0 01-.058-2.082 9.157 9.157 0 011.044-3.09c.421-.804.923-1.562 1.499-2.264A9.063 9.063 0 016.7 7.37a5.36 5.36 0 011.92-.772c.885-.165 1.649.14 2.359.632.494.335.911.771 1.224 1.28.287.518.363 1.127.213 1.7a8.37 8.37 0 01-.671 1.806c-.269.595-.535 1.189-.81 1.781a.516.516 0 01-.656.316 2.297 2.297 0 01-1.548-1.684 3.072 3.072 0 01.265-1.64c.245-.635.528-1.254.8-1.875a.359.359 0 00-.138-.501 1.593 1.593 0 00-.813.474c-.384.38-.747.78-1.094 1.195a14.58 14.58 0 00-1.775 2.83 5.126 5.126 0 00-.553 1.862c-.064.5-.048 1.006.047 1.5a1.39 1.39 0 001.31 1.16 5.888 5.888 0 003.468-.898c.395-.27.774-.562 1.136-.875a.55.55 0 00.144-.227c.365-.976.708-1.96 1.096-2.927.285-.716.623-1.411.941-2.113.3-.69.666-1.347 1.094-1.965.483-.679 1.092-1.193 1.94-1.302.683-.089 1.313.14 1.639.912.287.679.122 1.331-.1 1.983l-.185.55c.398-.434.737-.847 1.119-1.21a7.895 7.895 0 012.113-1.53 3.884 3.884 0 011.812-.41c.778.035 1.505.231 2.05.848.237.279.393.617.452.978.128.671-.095 1.274-.343 1.877-.184.445-.371.891-.51 1.351-.111.374.087.638.483.74.088.022.178.037.269.043.146.006.167.089.132.202zM57.921 8.038c-.325-.73-1.931-.807-2.594-.58a3.714 3.714 0 00-.746.38c-1.108.685-1.502 1.566-2.022 2.716-.516 1.135-.991 2.29-1.544 3.407-.367.718-.785 1.41-1.25 2.068a1.899 1.899 0 01-1.18.85c-.29.058-.41-.072-.513-.326a2.404 2.404 0 01-.172-.73 5.819 5.819 0 01.275-2.13c.328-1.1.68-2.192 1.013-3.29.175-.477.26-.982.252-1.49a1.147 1.147 0 00-.444-.92 1.96 1.96 0 00-2.04-.168c-.686.326-1.134.908-1.462 1.569-.465.928-.884 1.88-1.338 2.813-.311.646-.648 1.281-.974 1.92a15.05 15.05 0 01-1.484 2.492c-.09.116-.252.277-.355.259-.124-.02-.223-.207-.328-.325a.18.18 0 01-.037-.074 3.932 3.932 0 01-.08-1.746c.105-.656.237-1.31.387-1.959.298-1.294.636-2.58.915-3.88a1.34 1.34 0 00-.463-1.418 1.848 1.848 0 00-1.455-.305c-.687.107-1.193.524-1.595 1.081a6.28 6.28 0 00-1.028 2.287c-.159.681-.264 1.375-.378 2.068-.051.32-.053.646-.093.97a.447.447 0 01-.109.242c-.274.287-.553.567-.84.842a7.164 7.164 0 01-1.845 1.288 3.493 3.493 0 01-2.901.181 1.918 1.918 0 01-1.202-1.41c.403 0 .79.005 1.179 0a5.593 5.593 0 002.625-.687 4.03 4.03 0 001.763-1.762 3.824 3.824 0 00.295-2.747 2.877 2.877 0 00-1.695-1.955 3.86 3.86 0 00-1.482-.367 7.408 7.408 0 00-1.42.014 5.307 5.307 0 00-2.652 1.34 8.63 8.63 0 00-1.913 2.49 8.984 8.984 0 00-1.007 3.363 5.653 5.653 0 00.163 2.004 3.71 3.71 0 001.509 2.196c.787.511 1.7.797 2.637.828a13.81 13.81 0 001.959-.08 5.722 5.722 0 001.866-.546 8.185 8.185 0 002.563-1.84c.227-.238.444-.488.638-.704.186.451.353.92.566 1.366.256.58.717 1.044 1.294 1.306a6.9 6.9 0 001.75.502.976.976 0 00.895-.217c.399-.392.814-.77 1.202-1.172.217-.24.421-.492.613-.753.282-.362.561-.73.856-1.113.033.188.056.347.091.504.184.798.524 1.492 1.236 1.96.484.297 1.011.516 1.563.648.922.273 1.914.19 2.778-.233a7.22 7.22 0 002.446-1.996 21.906 21.906 0 001.476-1.95 67.973 67.973 0 001.975-3.253c.32-.56.633-1.124.944-1.69.253-.462.932-1.276.973-1.796a.69.69 0 00-.056-.342zM30.568 12.08a4.904 4.904 0 01.945-1.579c.248-.31.591-.53.976-.628a.768.768 0 01.863.97c-.295 1.255-1.127 1.966-2.336 2.275-.264.044-.531.07-.799.076.128-.412.227-.767.35-1.114z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,19 @@
1
+ import Avatar from './components/Avatar';
2
+ import Brand from './components/Brand';
3
+ import BrandColor from './components/BrandColor';
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
+ export type CompoundedIcon = typeof Mono & {
9
+ Avatar: typeof Avatar;
10
+ Brand: typeof Brand;
11
+ BrandColor: typeof BrandColor;
12
+ Color: typeof Color;
13
+ Combine: typeof Combine;
14
+ Text: typeof Text;
15
+ colorPrimary: string;
16
+ title: string;
17
+ };
18
+ declare const Icons: CompoundedIcon;
19
+ export default Icons;
@@ -0,0 +1,20 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Brand from "./components/Brand";
5
+ import BrandColor from "./components/BrandColor";
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 { COLOR_PRIMARY, TITLE } from "./style";
11
+ var Icons = Mono;
12
+ Icons.Color = Color;
13
+ Icons.Text = Text;
14
+ Icons.Combine = Combine;
15
+ Icons.Avatar = Avatar;
16
+ Icons.Brand = Brand;
17
+ Icons.BrandColor = BrandColor;
18
+ Icons.colorPrimary = COLOR_PRIMARY;
19
+ Icons.title = TITLE;
20
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "CrewAI";
2
+ export declare const TEXT_MULTIPLE = 1;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#fff";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'CrewAI';
2
+ export var TEXT_MULTIPLE = 1;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#fff';
@@ -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,30 @@
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", "size"];
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
+ size = _ref.size,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
22
+ Icon: Mono,
23
+ "aria-label": TITLE,
24
+ background: background || COLOR_PRIMARY,
25
+ color: '#fff',
26
+ iconMultiple: 0.7,
27
+ size: size
28
+ }, rest));
29
+ });
30
+ 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,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
+ 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
+ clipRule: "evenodd",
36
+ d: "M2.692 3.752C2 4.769 2 6.193 2 9.04v5.92c0 2.847 0 4.27.692 5.288a4 4 0 001.06 1.06C4.769 22 6.193 22 9.04 22h5.92c2.847 0 4.27 0 5.288-.692a4 4 0 001.06-1.06C22 19.231 22 17.807 22 14.96V9.04c0-2.847 0-4.27-.692-5.288a4 4 0 00-1.06-1.06C19.231 2 17.807 2 14.96 2H9.04c-2.847 0-4.27 0-5.288.692a4 4 0 00-1.06 1.06zm16.57 11.478a.755.755 0 10-1.51.032c.029 1.305-.304 1.912-.725 2.21-.468.334-1.288.473-2.635.272a.755.755 0 00-.222 1.493c1.445.215 2.769.15 3.731-.534 1.01-.718 1.393-1.94 1.36-3.473z",
37
+ fill: "#FF4017",
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;