@lobehub/icons 1.65.1 → 1.66.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 (52) hide show
  1. package/es/Clipdrop/components/Avatar.d.ts +5 -0
  2. package/es/Clipdrop/components/Avatar.js +28 -0
  3. package/es/Clipdrop/components/Combine.d.ts +5 -0
  4. package/es/Clipdrop/components/Combine.js +29 -0
  5. package/es/Clipdrop/components/Mono.d.ts +3 -0
  6. package/es/Clipdrop/components/Mono.js +42 -0
  7. package/es/Clipdrop/components/Text.d.ts +3 -0
  8. package/es/Clipdrop/components/Text.js +40 -0
  9. package/es/Clipdrop/index.d.ts +13 -0
  10. package/es/Clipdrop/index.js +14 -0
  11. package/es/Clipdrop/style.d.ts +4 -0
  12. package/es/Clipdrop/style.js +4 -0
  13. package/es/Glif/components/Avatar.d.ts +5 -0
  14. package/es/Glif/components/Avatar.js +28 -0
  15. package/es/Glif/components/Mono.d.ts +3 -0
  16. package/es/Glif/components/Mono.js +41 -0
  17. package/es/Glif/components/Text.d.ts +3 -0
  18. package/es/Glif/components/Text.js +44 -0
  19. package/es/Glif/index.d.ts +11 -0
  20. package/es/Glif/index.js +12 -0
  21. package/es/Glif/style.d.ts +4 -0
  22. package/es/Glif/style.js +4 -0
  23. package/es/Pika/components/Avatar.d.ts +5 -0
  24. package/es/Pika/components/Avatar.js +28 -0
  25. package/es/Pika/components/Combine.d.ts +5 -0
  26. package/es/Pika/components/Combine.js +29 -0
  27. package/es/Pika/components/Mono.d.ts +3 -0
  28. package/es/Pika/components/Mono.js +41 -0
  29. package/es/Pika/components/Text.d.ts +3 -0
  30. package/es/Pika/components/Text.js +40 -0
  31. package/es/Pika/index.d.ts +13 -0
  32. package/es/Pika/index.js +14 -0
  33. package/es/Pika/style.d.ts +4 -0
  34. package/es/Pika/style.js +4 -0
  35. package/es/Xuanyuan/components/Avatar.d.ts +5 -0
  36. package/es/Xuanyuan/components/Avatar.js +26 -0
  37. package/es/Xuanyuan/components/Color.d.ts +3 -0
  38. package/es/Xuanyuan/components/Color.js +43 -0
  39. package/es/Xuanyuan/components/Combine.d.ts +7 -0
  40. package/es/Xuanyuan/components/Combine.js +32 -0
  41. package/es/Xuanyuan/components/Mono.d.ts +3 -0
  42. package/es/Xuanyuan/components/Mono.js +43 -0
  43. package/es/Xuanyuan/components/Text.d.ts +3 -0
  44. package/es/Xuanyuan/components/Text.js +41 -0
  45. package/es/Xuanyuan/index.d.ts +15 -0
  46. package/es/Xuanyuan/index.js +16 -0
  47. package/es/Xuanyuan/style.d.ts +4 -0
  48. package/es/Xuanyuan/style.js +4 -0
  49. package/es/icons.d.ts +4 -0
  50. package/es/icons.js +4 -0
  51. package/es/toc.js +72 -0
  52. 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,28 @@
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
+ color: '#fff',
25
+ iconMultiple: 0.7
26
+ }, rest));
27
+ });
28
+ export default Avatar;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconCombineProps } from "../../features/IconCombine";
3
+ export type CombineProps = Omit<IconCombineProps, 'Icon' | 'Text'>;
4
+ declare const Combine: import("react").NamedExoticComponent<CombineProps>;
5
+ export default Combine;
@@ -0,0 +1,29 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconCombine from "../../features/IconCombine";
12
+ import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
13
+ import Mono from "./Mono";
14
+ import Text from "./Text";
15
+ import { jsx as _jsx } from "react/jsx-runtime";
16
+ var Combine = /*#__PURE__*/memo(function (_ref) {
17
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
18
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
19
+ Icon: Mono,
20
+ Text: Text,
21
+ "aria-label": TITLE,
22
+ iconProps: {
23
+ shape: 'square'
24
+ },
25
+ spaceMultiple: SPACE_MULTIPLE,
26
+ textMultiple: TEXT_MULTIPLE
27
+ }, rest));
28
+ });
29
+ 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: "M1 7.233C1 3.791 3.73 1 7.098 1h1.674c.66 0 1.195.547 1.195 1.222v1.1c0 .675-.535 1.222-1.195 1.222H7.098c-1.387 0-2.87 1.272-2.87 2.69v1.71c0 .675-.535 1.223-1.195 1.223h-.837C1.536 10.167 1 9.619 1 8.944v-1.71zM23 16.767C23 20.209 20.27 23 16.902 23h-1.674c-.66 0-1.195-.547-1.195-1.222v-1.1c0-.675.535-1.223 1.195-1.223h1.674c1.387 0 2.87-1.27 2.87-2.688v-1.711c0-.675.535-1.223 1.195-1.223h.837c.66 0 1.196.547 1.196 1.223v1.71zM16.902 1C20.27 1 23 3.79 23 7.233v1.711c0 .675-.535 1.223-1.196 1.223h-1.076c-.66 0-1.195-.548-1.195-1.223v-1.71c0-1.418-1.244-2.934-2.63-2.934h-1.675c-.66 0-1.195-.547-1.195-1.222v-.856c0-.675.535-1.222 1.195-1.222h1.674zM7.098 23C3.73 23 1 20.21 1 16.767v-1.711c0-.675.535-1.223 1.196-1.223h1.076c.66 0 1.195.547 1.195 1.223v1.71c0 1.418 1.244 2.934 2.63 2.934h1.675c.66 0 1.195.547 1.195 1.222v.856c0 .675-.535 1.222-1.195 1.222H7.098z"
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 97 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: "M16.792 8.694h-3.515a3.437 3.437 0 00-.393-1.212 3.081 3.081 0 00-.763-.915 3.354 3.354 0 00-1.075-.578 4.112 4.112 0 00-1.309-.2c-.85 0-1.592.21-2.223.633-.631.418-1.12 1.028-1.469 1.83-.348.798-.521 1.766-.521 2.906 0 1.172.173 2.156.521 2.954.353.797.846 1.399 1.477 1.806.632.406 1.362.61 2.191.61.466 0 .897-.062 1.293-.185a3.397 3.397 0 001.067-.538 3.1 3.1 0 00.77-.875 3.41 3.41 0 00.434-1.171l3.515.016a6.558 6.558 0 01-2.135 4.053 6.835 6.835 0 01-2.167 1.3c-.834.316-1.779.474-2.833.474-1.466 0-2.777-.332-3.933-.996-1.15-.663-2.06-1.624-2.729-2.881C2.332 14.467 2 12.945 2 11.158c0-1.793.337-3.318 1.011-4.575.675-1.257 1.59-2.215 2.745-2.873 1.156-.664 2.456-.996 3.901-.996a8.43 8.43 0 012.649.402 6.716 6.716 0 012.175 1.171 6.029 6.029 0 011.54 1.87c.402.739.659 1.584.771 2.537zM22.64 2.939v16.438h-3.42V2.939h3.42zM25.378 19.377V7.049h3.42v12.328h-3.42zm1.718-13.918c-.508 0-.944-.168-1.308-.505a1.64 1.64 0 01-.538-1.228c0-.471.18-.875.538-1.212.364-.343.8-.514 1.308-.514s.942.171 1.3.514c.364.337.546.74.546 1.212 0 .476-.182.885-.546 1.228a1.83 1.83 0 01-1.3.505zM31.537 24V7.048h3.37V9.12h.153c.15-.331.367-.669.65-1.011a3.426 3.426 0 011.124-.867c.465-.235 1.043-.353 1.734-.353.899 0 1.728.235 2.488.706.76.466 1.367 1.17 1.822 2.111.455.937.682 2.111.682 3.524 0 1.375-.222 2.536-.666 3.483-.439.942-1.038 1.656-1.798 2.143-.755.482-1.6.723-2.536.723-.664 0-1.228-.11-1.694-.33a3.5 3.5 0 01-1.132-.826 4.198 4.198 0 01-.674-1.02h-.104V24h-3.42zm3.347-10.787c0 .733.101 1.372.305 1.918.203.546.497.971.883 1.276.385.3.853.45 1.404.45.557 0 1.028-.153 1.413-.458.385-.31.677-.738.875-1.284.203-.551.305-1.185.305-1.902 0-.712-.1-1.338-.297-1.878-.198-.541-.49-.964-.875-1.269-.386-.305-.859-.457-1.42-.457-.557 0-1.028.147-1.413.441-.38.295-.672.712-.875 1.252-.204.54-.305 1.178-.305 1.91zM50.382 19.577c-.936 0-1.784-.24-2.544-.722-.754-.487-1.354-1.201-1.798-2.143-.439-.947-.658-2.108-.658-3.483 0-1.413.227-2.587.682-3.524.455-.942 1.06-1.645 1.814-2.11a4.648 4.648 0 012.496-.707c.69 0 1.266.118 1.726.353.465.23.84.52 1.124.867.289.342.508.68.658 1.011h.104V2.94h3.411v16.438h-3.37v-1.975h-.145c-.16.343-.388.682-.682 1.02a3.388 3.388 0 01-1.132.826c-.46.22-1.022.33-1.686.33zm1.084-2.72c.551 0 1.017-.15 1.396-.45.386-.305.68-.73.883-1.276.209-.546.313-1.185.313-1.918 0-.733-.101-1.37-.305-1.91-.203-.541-.497-.958-.883-1.253-.385-.294-.853-.441-1.404-.441-.562 0-1.035.152-1.42.457-.386.305-.678.728-.876 1.268-.198.54-.297 1.167-.297 1.879 0 .717.1 1.35.297 1.902.204.546.495.974.875 1.284.386.305.859.457 1.42.457zM60.209 19.377V7.049h3.314v2.15h.128c.226-.765.603-1.342 1.132-1.733a2.975 2.975 0 011.83-.594 5.127 5.127 0 011.076.12v3.034a4.493 4.493 0 00-.666-.128 5.997 5.997 0 00-.779-.056c-.503 0-.952.11-1.349.329-.39.214-.7.514-.93.899-.225.385-.337.83-.337 1.332v6.975h-3.42zM74.454 19.618c-1.247 0-2.326-.265-3.236-.795a5.437 5.437 0 01-2.094-2.231c-.492-.958-.739-2.068-.739-3.331 0-1.274.247-2.387.739-3.34a5.372 5.372 0 012.094-2.23c.91-.535 1.989-.803 3.236-.803 1.246 0 2.322.268 3.226.803.909.53 1.61 1.273 2.102 2.23.492.953.74 2.066.74 3.34 0 1.263-.248 2.373-.74 3.33a5.422 5.422 0 01-2.102 2.232c-.904.53-1.98.795-3.227.795zm.015-2.65c.567 0 1.041-.16 1.42-.48.38-.327.667-.771.86-1.333.198-.562.297-1.201.297-1.918 0-.717-.1-1.357-.298-1.919-.192-.561-.478-1.005-.858-1.332-.38-.326-.854-.49-1.42-.49-.573 0-1.055.164-1.445.49-.386.326-.678.77-.875 1.332-.193.562-.29 1.202-.29 1.919 0 .717.097 1.356.29 1.918.197.562.49 1.006.875 1.332.39.321.872.482 1.444.482zM82.744 24V7.048h3.37V9.12h.154c.15-.331.366-.669.65-1.011.289-.348.663-.637 1.123-.867.466-.235 1.044-.353 1.735-.353.898 0 1.727.235 2.488.706.76.466 1.367 1.17 1.821 2.111.455.937.683 2.111.683 3.524 0 1.375-.222 2.536-.666 3.483-.44.942-1.038 1.656-1.798 2.143-.755.482-1.6.723-2.537.723-.663 0-1.227-.11-1.693-.33a3.501 3.501 0 01-1.132-.826 4.207 4.207 0 01-.674-1.02h-.104V24h-3.42zm3.347-10.787c0 .733.102 1.372.305 1.918.203.546.498.971.883 1.276.386.3.853.45 1.405.45.557 0 1.027-.153 1.412-.458.386-.31.677-.738.875-1.284.203-.551.306-1.185.306-1.902 0-.712-.1-1.338-.298-1.878-.198-.541-.49-.964-.874-1.269-.386-.305-.86-.457-1.421-.457-.557 0-1.027.147-1.413.441-.38.295-.672.712-.875 1.252-.203.54-.305 1.178-.305 1.91z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,13 @@
1
+ import Avatar from './components/Avatar';
2
+ import Combine from './components/Combine';
3
+ import Mono from './components/Mono';
4
+ import Text from './components/Text';
5
+ export type CompoundedIcon = typeof Mono & {
6
+ Avatar: typeof Avatar;
7
+ Combine: typeof Combine;
8
+ Text: typeof Text;
9
+ colorPrimary: string;
10
+ title: string;
11
+ };
12
+ declare const Icons: CompoundedIcon;
13
+ export default Icons;
@@ -0,0 +1,14 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Combine from "./components/Combine";
5
+ import Mono from "./components/Mono";
6
+ import Text from "./components/Text";
7
+ import { COLOR_PRIMARY, TITLE } from "./style";
8
+ var Icons = Mono;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.title = TITLE;
14
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Clipdrop";
2
+ export declare const TEXT_MULTIPLE = 0.9;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#000";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Clipdrop';
2
+ export var TEXT_MULTIPLE = 0.9;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#000';
@@ -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,28 @@
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 { 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 || '#000',
24
+ color: '#fff',
25
+ iconMultiple: 0.7
26
+ }, rest));
27
+ });
28
+ 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,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 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: "M19.049 0h-3.903v2.324c-.94-.468-2-.734-3.122-.734C8.151 1.588 5 4.74 5 8.613c0 1.691.601 3.246 1.602 4.46H5v3.902h3.902v-2.072c.94.468 2 .734 3.122.734a7.032 7.032 0 007.025-7.024c0-1.811-.69-3.464-1.819-4.71h1.819V0zm-7.025 11.735a3.126 3.126 0 01-3.122-3.122 3.126 3.126 0 013.122-3.122 3.126 3.126 0 013.122 3.122c0 1.72-1.4 3.122-3.122 3.122zM12.024 16.976H8.902v3.902h3.122A3.126 3.126 0 0115.146 24h3.903a7.032 7.032 0 00-7.025-7.024z"
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,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 38 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: "M18.68 2.14h-3.23V22h3.23V2.14zM23.73 9.266h-3.229V22h3.23V9.266zM33.779 11.515l-2.41-2.41-2.41 2.41 2.41 2.41 2.41-2.41zM24.54 4.41L22.13 2l-2.41 2.41 2.41 2.41 2.41-2.41zM13.626 2.14h-3.23v1.922a5.78 5.78 0 00-2.583-.607A5.817 5.817 0 002 9.266c0 1.4.497 2.687 1.326 3.692H2v3.229h3.23v-1.715a5.779 5.779 0 002.583.607 5.82 5.82 0 005.813-5.813c0-1.498-.57-2.866-1.505-3.897h1.505v-3.23zm-5.813 9.71a2.587 2.587 0 01-2.584-2.584 2.587 2.587 0 012.584-2.583 2.587 2.587 0 012.583 2.583 2.587 2.587 0 01-2.583 2.584zM7.813 16.187H5.229v3.23h2.584A2.587 2.587 0 0110.396 22h3.23a5.82 5.82 0 00-5.813-5.813z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M31.368 5.369c.932 0 1.834.502 2.31 1.427l.128-.128 2.208-2.207a5.822 5.822 0 00-4.646-2.322 5.817 5.817 0 00-5.808 5.652L25.555 22h3.23V7.95a2.587 2.587 0 012.583-2.583v.002z"
39
+ }), /*#__PURE__*/_jsx("path", {
40
+ d: "M33.779 11.515l-2.41-2.41-2.41 2.41 2.41 2.41 2.41-2.41z"
41
+ })]
42
+ }));
43
+ });
44
+ export default Icon;
@@ -0,0 +1,11 @@
1
+ import Avatar from './components/Avatar';
2
+ import Mono from './components/Mono';
3
+ import Text from './components/Text';
4
+ export type CompoundedIcon = typeof Mono & {
5
+ Avatar: typeof Avatar;
6
+ Text: typeof Text;
7
+ colorPrimary: string;
8
+ title: string;
9
+ };
10
+ declare const Icons: CompoundedIcon;
11
+ export default Icons;
@@ -0,0 +1,12 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Mono from "./components/Mono";
5
+ import Text from "./components/Text";
6
+ import { COLOR_PRIMARY, TITLE } from "./style";
7
+ var Icons = Mono;
8
+ Icons.Text = Text;
9
+ Icons.Avatar = Avatar;
10
+ Icons.colorPrimary = COLOR_PRIMARY;
11
+ Icons.title = TITLE;
12
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Glif";
2
+ export declare const TEXT_MULTIPLE = 0.7;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#000";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Glif';
2
+ export var TEXT_MULTIPLE = 0.7;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#000';
@@ -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,28 @@
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 || '#000',
24
+ color: COLOR_PRIMARY,
25
+ iconMultiple: 0.7
26
+ }, rest));
27
+ });
28
+ export default Avatar;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconCombineProps } from "../../features/IconCombine";
3
+ export type CombineProps = Omit<IconCombineProps, 'Icon' | 'Text'>;
4
+ declare const Combine: import("react").NamedExoticComponent<CombineProps>;
5
+ export default Combine;
@@ -0,0 +1,29 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconCombine from "../../features/IconCombine";
12
+ import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
13
+ import Mono from "./Mono";
14
+ import Text from "./Text";
15
+ import { jsx as _jsx } from "react/jsx-runtime";
16
+ var Combine = /*#__PURE__*/memo(function (_ref) {
17
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
18
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
19
+ Icon: Mono,
20
+ Text: Text,
21
+ "aria-label": TITLE,
22
+ iconProps: {
23
+ shape: 'square'
24
+ },
25
+ spaceMultiple: SPACE_MULTIPLE,
26
+ textMultiple: TEXT_MULTIPLE
27
+ }, rest));
28
+ });
29
+ 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 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: "M.661 19.889h8.666c-.14-1.41-1.145-2.955-3.601-4.007v-.104c2.863.88 3.893 2.386 4.312 4.11H20.73l-1.72-1.476C20.017 15.244 24 13.747 24 13.747c-.141-2.541-1.441-4.909-5.787-6.827L8.326 3c.331 4.179 1.811 6.575 5.523 7.163v.102c-2.579-.064-4.368-1.216-5.275-3.588C.698 8.123-1.201 14.156.66 19.889z"
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,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 67 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: "M23.26 2h3.009v3.26H23.26V2zm0 4.672h3.009v15.431H23.26V6.672zM28.843 2h3.009v10.68l10.385-8.337h4.168l-10.903 8.584L46.7 22.103h-4.366L31.85 13.618v8.485h-3.01V2h.002zM2 22.105V2h10.805c7.279 0 8.064 4.529 8.064 6.475 0 1.946-.785 6.476-8.066 6.476H5.009v7.155H2v-.002zm3.009-10.139h7.253c3.769 0 5.377-1.044 5.377-3.491s-1.608-3.491-5.377-3.491H5.009v6.982zm49.76 10.396c-2.67 0-4.797-.395-5.991-1.113-1.334-.802-1.982-2.043-1.982-3.796 0-4.466 4.502-5.05 11.96-6.015.995-.129 2.014-.26 3.086-.41 0-2.841-1.555-3.848-5.944-3.848-3.633 0-5.253 1.08-5.253 3.5H47.61c0-4.046 3.098-6.462 8.288-6.462 6.176 0 8.93 2.031 8.93 6.586v7.79c0 2.102.123 3.494.124 3.508h-2.736c0-.008-.078-.766 0-1.991-.858 1.345-3.85 2.25-7.446 2.25h-.002zm7.073-8.696c-4.499.521-7.666.959-9.55 1.526-1.749.526-2.461 1.174-2.461 2.235 0 2.178 2.736 2.503 4.366 2.503 2.662 0 4.459-.325 5.655-1.022 1.339-.78 1.99-2.083 1.99-3.982v-1.26z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,13 @@
1
+ import Avatar from './components/Avatar';
2
+ import Combine from './components/Combine';
3
+ import Mono from './components/Mono';
4
+ import Text from './components/Text';
5
+ export type CompoundedIcon = typeof Mono & {
6
+ Avatar: typeof Avatar;
7
+ Combine: typeof Combine;
8
+ Text: typeof Text;
9
+ colorPrimary: string;
10
+ title: string;
11
+ };
12
+ declare const Icons: CompoundedIcon;
13
+ export default Icons;
@@ -0,0 +1,14 @@
1
+ 'use client';
2
+
3
+ import Avatar from "./components/Avatar";
4
+ import Combine from "./components/Combine";
5
+ import Mono from "./components/Mono";
6
+ import Text from "./components/Text";
7
+ import { COLOR_PRIMARY, TITLE } from "./style";
8
+ var Icons = Mono;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.title = TITLE;
14
+ export default Icons;
@@ -0,0 +1,4 @@
1
+ export declare const TITLE = "Pika";
2
+ export declare const TEXT_MULTIPLE = 0.7;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#FDF7EF";
@@ -0,0 +1,4 @@
1
+ export var TITLE = 'Pika';
2
+ export var TEXT_MULTIPLE = 0.7;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#FDF7EF';
@@ -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 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
+ rest = _objectWithoutProperties(_ref, _excluded);
20
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
21
+ Icon: Color,
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,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: "M0 6.306C0 5.48.893 4.96 1.612 5.37l6.607 3.76c.337.192.545.55.545.938v9.35c0 .596-.483 1.079-1.079 1.079H1.08A1.079 1.079 0 010 19.417V6.307z",
36
+ fill: "#3C96E6"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ d: "M9.708 10.063c0-.385.206-.742.54-.934l12.135-6.984A1.079 1.079 0 0124 3.08v16.337c0 .596-.483 1.079-1.079 1.079H10.787a1.079 1.079 0 01-1.08-1.079v-9.354z",
39
+ fill: "#F95A4C"
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,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
+ 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: "M0 6.306C0 5.48.893 4.96 1.612 5.37l6.607 3.76c.337.192.545.55.545.938v9.35c0 .596-.483 1.079-1.079 1.079H1.08A1.079 1.079 0 010 19.417V6.307z"
38
+ }), /*#__PURE__*/_jsx("path", {
39
+ d: "M9.708 10.063c0-.385.206-.742.54-.934l12.135-6.984A1.079 1.079 0 0124 3.08v16.337c0 .596-.483 1.079-1.079 1.079H10.787a1.079 1.079 0 01-1.08-1.079v-9.354z"
40
+ })]
41
+ }));
42
+ });
43
+ 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,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 67 24",
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: "M11.5 3.056L13.611 2l.954 1.611h7.268v2.222H4.944v6.556s.09 3.421 0 5.111c-.077 1.444-.61 4.389-.61 4.389L2 20.778s.556-1.334.722-4.056c.104-1.689 0-4.333 0-4.333V3.61h9.132l-.354-.555zm48.222-.445h2.222v1.111h2.89v2.222h-2.89v.89h-2.222v-.89H55.5v.89h-2.222v-.89h-3V3.722h3v-1.11H55.5v1.11h4.222v-1.11zm-13.333.222L44.667 4.5l2.888 2.889 1.723-1.667-2.89-2.889zm-.056 5.223l-1.722 1.666 2.889 2.89 1.722-1.668-2.889-2.888zm12.53 6.963v-1.408h-2.585v.87l1.5 1.463-1.667 1.667-.51-.566c-.716 1.091-1.657 2.288-1.657 2.288L52.5 17.982v3.851h-2.222V11.39h3.777V9.944h-3.777V7.722h14.555v2.222h-3.778v1.445h3.778V16.61s.305 2.556-.722 3.833c-1.295 1.611-3.833 1.5-3.833 1.5l-.5-2.444s1.662.196 2.333-.445c.611-.583.5-2.444.5-2.444v-.056l-1.389 1.39-.592-.656a3.183 3.183 0 01-.177.36c-.713 1.228-1.699 2.629-1.699 2.629l-1.699-1.773s.621-.87 1.041-1.407c.658-.838.768-2.079.768-2.079zm0-5.075v1.445h-2.585V9.944h2.586zm2.192 4.545v-.878h1.556v2.396l-1.556-1.518zm-7 .066v-.944H52.5v3.766c.221-.273.533-.653.778-.933.666-.761.777-1.888.777-1.888zM9.902 18.86c-2.495.587-4.346.695-4.346.695l.777 2.334s3.618-.562 7.063-1.609l.16.053c2.944.972 7.5 1.556 7.5 1.556l.777-2.278s-2.233-.252-4.83-.826C19.329 17.515 21.11 16 21.11 16l-.611-2.389H6.056v2.222h2.342L7.333 17.5s1 .617 2.569 1.36zm3.54-1.074c.148-.056.298-.115.447-.175 1.228-.495 2.42-1.146 3.447-1.778H9.23c.905.478 2.65 1.364 4.21 1.953zM10.167 6.611H7.944V7.5H6.056v2.222h1.888v3.111h11.667V9.722h2.222V7.5h-2.222v-.889H17.39V7.5h-7.222v-.889zm7.222 4v-.889h-7.222v.89h7.222zM29.333 7l-2.5-.556s-.678 3.223-1.389 5.278c-.742 2.147-2.333 5.222-2.333 5.222l2 1.778s1.781-3.41 2.611-5.722c.82-2.284 1.611-6 1.611-6zM47 13.5l2.278.667s-.438 2.464-.89 4C47.946 19.675 47 21.944 47 21.944l-2.222-.722s.856-2.176 1.278-3.61C46.52 16.03 47 13.5 47 13.5zm-7.167-7.167l-2.389.945s.836 3.746 1.723 6.055c.823 2.147 2.555 5.334 2.555 5.334l2.222-1.334s-1.617-3.13-2.389-5.11c-.9-2.311-1.722-5.89-1.722-5.89zM32.278 2.5h2.444V17s.2 2.64-1.055 3.833c-1.256 1.193-4.5 1.167-4.5 1.167l-.612-2.778s2.556.278 3.278-.389c.573-.528.445-1.833.445-1.833V2.5z"
38
+ })]
39
+ }));
40
+ });
41
+ 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 = "\u8F69\u8F95";
2
+ export declare const TEXT_MULTIPLE = 0.75;
3
+ export declare const SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#fff";
@@ -0,0 +1,4 @@
1
+ export var TITLE = '轩辕';
2
+ export var TEXT_MULTIPLE = 0.75;
3
+ export var SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#fff';
package/es/icons.d.ts CHANGED
@@ -20,6 +20,7 @@ export { default as ByteDance, type CompoundedIcon as ByteDanceProps } from './B
20
20
  export { default as ChatGLM, type CompoundedIcon as ChatGLMProps } from './ChatGLM';
21
21
  export { default as Civitai, type CompoundedIcon as CivitaiProps } from './Civitai';
22
22
  export { default as Claude, type CompoundedIcon as ClaudeProps } from './Claude';
23
+ export { default as Clipdrop, type CompoundedIcon as ClipdropProps } from './Clipdrop';
23
24
  export { default as Cloudflare, type CompoundedIcon as CloudflareProps } from './Cloudflare';
24
25
  export { default as CodeGeeX, type CompoundedIcon as CodeGeeXProps } from './CodeGeeX';
25
26
  export { default as CogVideo, type CompoundedIcon as CogVideoProps } from './CogVideo';
@@ -46,6 +47,7 @@ export { default as Gemma, type CompoundedIcon as GemmaProps } from './Gemma';
46
47
  export { default as GiteeAI, type CompoundedIcon as GiteeAIProps } from './GiteeAI';
47
48
  export { default as Github, type CompoundedIcon as GithubProps } from './Github';
48
49
  export { default as GithubCopilot, type CompoundedIcon as GithubCopilotProps, } from './GithubCopilot';
50
+ export { default as Glif, type CompoundedIcon as GlifProps } from './Glif';
49
51
  export { default as Google, type CompoundedIcon as GoogleProps } from './Google';
50
52
  export { default as Grok, type CompoundedIcon as GrokProps } from './Grok';
51
53
  export { default as Groq, type CompoundedIcon as GroqProps } from './Groq';
@@ -82,6 +84,7 @@ export { default as OpenChat, type CompoundedIcon as OpenChatProps } from './Ope
82
84
  export { default as OpenRouter, type CompoundedIcon as OpenRouterProps } from './OpenRouter';
83
85
  export { default as PaLM, type CompoundedIcon as PaLMProps } from './PaLM';
84
86
  export { default as Perplexity, type CompoundedIcon as PerplexityProps } from './Perplexity';
87
+ export { default as Pika, type CompoundedIcon as PikaProps } from './Pika';
85
88
  export { default as Poe, type CompoundedIcon as PoeProps } from './Poe';
86
89
  export { default as Pollinations, type CompoundedIcon as PollinationsProps } from './Pollinations';
87
90
  export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingyan';
@@ -111,6 +114,7 @@ export { default as Vllm, type CompoundedIcon as VllmProps } from './Vllm';
111
114
  export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin';
112
115
  export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI';
113
116
  export { default as XAI, type CompoundedIcon as XAIProps } from './XAI';
117
+ export { default as Xuanyuan, type CompoundedIcon as XuanyuanProps } from './Xuanyuan';
114
118
  export { default as Yi, type CompoundedIcon as YiProps } from './Yi';
115
119
  export { default as Zeabur, type CompoundedIcon as ZeaburProps } from './Zeabur';
116
120
  export { default as ZeroOne, type CompoundedIcon as ZeroOneProps } from './ZeroOne';
package/es/icons.js CHANGED
@@ -20,6 +20,7 @@ export { default as ByteDance } from "./ByteDance";
20
20
  export { default as ChatGLM } from "./ChatGLM";
21
21
  export { default as Civitai } from "./Civitai";
22
22
  export { default as Claude } from "./Claude";
23
+ export { default as Clipdrop } from "./Clipdrop";
23
24
  export { default as Cloudflare } from "./Cloudflare";
24
25
  export { default as CodeGeeX } from "./CodeGeeX";
25
26
  export { default as CogVideo } from "./CogVideo";
@@ -46,6 +47,7 @@ export { default as Gemma } from "./Gemma";
46
47
  export { default as GiteeAI } from "./GiteeAI";
47
48
  export { default as Github } from "./Github";
48
49
  export { default as GithubCopilot } from "./GithubCopilot";
50
+ export { default as Glif } from "./Glif";
49
51
  export { default as Google } from "./Google";
50
52
  export { default as Grok } from "./Grok";
51
53
  export { default as Groq } from "./Groq";
@@ -82,6 +84,7 @@ export { default as OpenChat } from "./OpenChat";
82
84
  export { default as OpenRouter } from "./OpenRouter";
83
85
  export { default as PaLM } from "./PaLM";
84
86
  export { default as Perplexity } from "./Perplexity";
87
+ export { default as Pika } from "./Pika";
85
88
  export { default as Poe } from "./Poe";
86
89
  export { default as Pollinations } from "./Pollinations";
87
90
  export { default as Qingyan } from "./Qingyan";
@@ -111,6 +114,7 @@ export { default as Vllm } from "./Vllm";
111
114
  export { default as Wenxin } from "./Wenxin";
112
115
  export { default as WorkersAI } from "./WorkersAI";
113
116
  export { default as XAI } from "./XAI";
117
+ export { default as Xuanyuan } from "./Xuanyuan";
114
118
  export { default as Yi } from "./Yi";
115
119
  export { default as Zeabur } from "./Zeabur";
116
120
  export { default as ZeroOne } from "./ZeroOne";
package/es/toc.js CHANGED
@@ -400,6 +400,24 @@ var toc = [{
400
400
  "hasTextColor": false
401
401
  },
402
402
  "title": "Claude"
403
+ }, {
404
+ "color": "#000",
405
+ "desc": "https://clipdrop.co",
406
+ "docsUrl": "clipdrop",
407
+ "fullTitle": "Clipdrop",
408
+ "group": "application",
409
+ "id": "Clipdrop",
410
+ "param": {
411
+ "hasAvatar": true,
412
+ "hasBrand": false,
413
+ "hasBrandColor": false,
414
+ "hasColor": false,
415
+ "hasCombine": true,
416
+ "hasText": true,
417
+ "hasTextCn": false,
418
+ "hasTextColor": false
419
+ },
420
+ "title": "Clipdrop"
403
421
  }, {
404
422
  "color": "#F38020",
405
423
  "desc": "https://cloudflare.com",
@@ -875,6 +893,24 @@ var toc = [{
875
893
  "hasTextColor": false
876
894
  },
877
895
  "title": "GithubCopilot"
896
+ }, {
897
+ "color": "#000",
898
+ "desc": "https://glif.app",
899
+ "docsUrl": "glif",
900
+ "fullTitle": "Glif",
901
+ "group": "application",
902
+ "id": "Glif",
903
+ "param": {
904
+ "hasAvatar": true,
905
+ "hasBrand": false,
906
+ "hasBrandColor": false,
907
+ "hasColor": false,
908
+ "hasCombine": false,
909
+ "hasText": true,
910
+ "hasTextCn": false,
911
+ "hasTextColor": false
912
+ },
913
+ "title": "Glif"
878
914
  }, {
879
915
  "color": "#fff",
880
916
  "desc": "https://google.com",
@@ -1532,6 +1568,24 @@ var toc = [{
1532
1568
  "hasTextColor": false
1533
1569
  },
1534
1570
  "title": "Perplexity"
1571
+ }, {
1572
+ "color": "#FDF7EF",
1573
+ "desc": "https://pika.art",
1574
+ "docsUrl": "pika",
1575
+ "fullTitle": "Pika",
1576
+ "group": "application",
1577
+ "id": "Pika",
1578
+ "param": {
1579
+ "hasAvatar": true,
1580
+ "hasBrand": false,
1581
+ "hasBrandColor": false,
1582
+ "hasColor": false,
1583
+ "hasCombine": true,
1584
+ "hasText": true,
1585
+ "hasTextCn": false,
1586
+ "hasTextColor": false
1587
+ },
1588
+ "title": "Pika"
1535
1589
  }, {
1536
1590
  "color": "#000",
1537
1591
  "desc": "https://poe.com",
@@ -2059,6 +2113,24 @@ var toc = [{
2059
2113
  "hasTextColor": false
2060
2114
  },
2061
2115
  "title": "Grok"
2116
+ }, {
2117
+ "color": "#fff",
2118
+ "desc": "https://github.com/Duxiaoman-DI/XuanYuan",
2119
+ "docsUrl": "xuanyuan",
2120
+ "fullTitle": "Xuanyuan (度小满轩辕)",
2121
+ "group": "model",
2122
+ "id": "Xuanyuan",
2123
+ "param": {
2124
+ "hasAvatar": true,
2125
+ "hasBrand": false,
2126
+ "hasBrandColor": false,
2127
+ "hasColor": true,
2128
+ "hasCombine": true,
2129
+ "hasText": true,
2130
+ "hasTextCn": false,
2131
+ "hasTextColor": false
2132
+ },
2133
+ "title": "轩辕"
2062
2134
  }, {
2063
2135
  "color": "#003425",
2064
2136
  "desc": "https://github.com/01-ai/Yi",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/icons",
3
- "version": "1.65.1",
3
+ "version": "1.66.0",
4
4
  "description": "Popular AI / LLM Model Brand SVG Logo and Icon Collection",
5
5
  "keywords": [
6
6
  "lobehub",