@lobehub/icons 2.38.0 → 2.40.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 (42) hide show
  1. package/README.md +13 -12
  2. package/es/Sora/components/Avatar.d.ts +5 -0
  3. package/es/Sora/components/Avatar.js +25 -0
  4. package/es/Sora/components/Color.d.ts +3 -0
  5. package/es/Sora/components/Color.js +155 -0
  6. package/es/Sora/components/Combine.d.ts +7 -0
  7. package/es/Sora/components/Combine.js +32 -0
  8. package/es/Sora/components/Inner.d.ts +3 -0
  9. package/es/Sora/components/Inner.js +138 -0
  10. package/es/Sora/components/Mono.d.ts +3 -0
  11. package/es/Sora/components/Mono.js +51 -0
  12. package/es/Sora/components/Text.d.ts +3 -0
  13. package/es/Sora/components/Text.js +39 -0
  14. package/es/Sora/index.d.ts +16 -0
  15. package/es/Sora/index.js +15 -0
  16. package/es/Sora/style.d.ts +8 -0
  17. package/es/Sora/style.js +10 -0
  18. package/es/Straico/components/Avatar.d.ts +5 -0
  19. package/es/Straico/components/Avatar.js +25 -0
  20. package/es/Straico/components/Color.d.ts +3 -0
  21. package/es/Straico/components/Color.js +39 -0
  22. package/es/Straico/components/Combine.d.ts +7 -0
  23. package/es/Straico/components/Combine.js +36 -0
  24. package/es/Straico/components/Mono.d.ts +3 -0
  25. package/es/Straico/components/Mono.js +40 -0
  26. package/es/Straico/components/Text.d.ts +3 -0
  27. package/es/Straico/components/Text.js +40 -0
  28. package/es/Straico/index.d.ts +15 -0
  29. package/es/Straico/index.js +14 -0
  30. package/es/Straico/style.d.ts +7 -0
  31. package/es/Straico/style.js +9 -0
  32. package/es/Vercel/components/Text.js +2 -2
  33. package/es/Vercel/style.d.ts +2 -2
  34. package/es/Vercel/style.js +2 -2
  35. package/es/features/modelConfig.js +5 -1
  36. package/es/features/providerConfig.js +5 -0
  37. package/es/features/providerEnum.d.ts +1 -0
  38. package/es/features/providerEnum.js +1 -0
  39. package/es/icons.d.ts +2 -0
  40. package/es/icons.js +2 -0
  41. package/es/toc.js +37 -0
  42. package/package.json +1 -1
@@ -0,0 +1,51 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 24 24",
30
+ width: size,
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M8.968 11.147a.408.408 0 110 .816.408.408 0 010-.816z"
37
+ }), /*#__PURE__*/_jsx("path", {
38
+ clipRule: "evenodd",
39
+ d: "M7.21 8.748c.045-.012.087.003.128.044.195.2.39.398.587.596a.15.15 0 00.061.035l.81.209c.056.014.09.043.102.088.013.046-.002.09-.043.13l-.596.585a.139.139 0 00-.021.03.134.134 0 00-.015.033c-.07.27-.14.54-.208.81-.014.055-.044.09-.09.102-.045.012-.088-.003-.128-.045-.195-.199-.39-.397-.587-.595a.158.158 0 00-.062-.035l-.81-.209c-.056-.014-.09-.044-.103-.09-.011-.044.004-.087.045-.128.2-.194.398-.39.596-.585a.12.12 0 00.022-.03.134.134 0 00.014-.032c.07-.27.14-.54.208-.81.014-.056.044-.09.09-.103z"
40
+ }), /*#__PURE__*/_jsx("path", {
41
+ d: "M15.827 9.31a.409.409 0 110 .817.409.409 0 010-.818z"
42
+ }), /*#__PURE__*/_jsx("path", {
43
+ clipRule: "evenodd",
44
+ d: "M14.071 6.915c.046-.012.09.003.13.044.194.2.388.398.583.596a.155.155 0 00.062.036l.807.21c.056.014.09.045.103.09.012.045-.003.088-.045.128l-.596.583a.168.168 0 00-.036.061l-.21.808c-.014.056-.044.09-.09.103-.045.011-.088-.004-.128-.045-.194-.2-.389-.398-.583-.596a.12.12 0 00-.03-.022.12.12 0 00-.032-.014l-.808-.21c-.056-.014-.09-.044-.102-.09-.012-.045.003-.087.044-.128.2-.194.398-.388.596-.583a.119.119 0 00.022-.03.132.132 0 00.015-.032l.21-.806c.014-.057.043-.09.088-.103z"
45
+ }), /*#__PURE__*/_jsx("path", {
46
+ clipRule: "evenodd",
47
+ d: "M8.086.457a6.102 6.102 0 013.046-.415c1.333.153 2.521.72 3.564 1.7a.116.116 0 00.107.029c1.409-.346 2.762-.224 4.062.366l.061.029.155.077c1.357.703 2.33 1.769 2.918 3.197.278.68.418 1.388.421 2.127a5.65 5.65 0 01-.18 1.631.164.164 0 00.04.154 5.98 5.98 0 011.577 2.892c.386 1.901-.008 3.614-1.182 5.14l-.181.22a6.062 6.062 0 01-2.936 1.85.16.16 0 00-.106.103c-.255.736-.512 1.364-.988 1.992-1.199 1.582-2.962 2.462-4.948 2.45-1.583-.007-2.986-.586-4.21-1.736a.142.142 0 00-.14-.031c-.518.167-1.04.191-1.605.185a5.923 5.923 0 01-2.594-.622 6.057 6.057 0 01-2.146-1.781c-.203-.27-.404-.522-.552-.821a7.742 7.742 0 01-.494-1.283 6.108 6.108 0 01-.017-3.065.163.163 0 00.007-.074.112.112 0 00-.036-.063 5.954 5.954 0 01-1.38-2.202 5.193 5.193 0 01-.333-1.59 6.911 6.911 0 01.188-2.13c.45-1.485 1.309-2.65 2.578-3.494.282-.188.549-.334.8-.439a8.21 8.21 0 01.862-.303.128.128 0 00.087-.087 6.014 6.014 0 011.104-2.155C6.315 1.463 7.132.846 8.086.457zm.965 7.647c-1.154-.82-2.73-.413-3.311.875-.301.666-.36 1.368-.178 2.106l.145.586.26.95c.105.533.31 1.02.612 1.462l.03.043c.16.189.335.362.524.518 1.386 1.139 3.275.379 3.652-1.323l.05-.213.012-.08c.06-.4.042-.792-.053-1.175a47.673 47.673 0 00-.546-2.024c-.217-.738-.616-1.313-1.197-1.725zm7.104-1.646c-.862-.802-2.191-.831-3.047-.026-.334.314-.566.736-.697 1.265a3.47 3.47 0 000 1.635l.014.054.055.18c.127.42.245.834.353 1.241.112.423.202.706.27.85.574 1.206 1.82 2.074 3.177 1.522 1.261-.514 1.641-2.01 1.355-3.22-.043-.183-.09-.365-.14-.546a34.426 34.426 0 00-.428-1.573c-.162-.508-.466-.968-.912-1.382z"
48
+ })]
49
+ }));
50
+ });
51
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 61 24",
30
+ xmlns: "http://www.w3.org/2000/svg"
31
+ }, rest), {}, {
32
+ children: [/*#__PURE__*/_jsx("title", {
33
+ children: TITLE
34
+ }), /*#__PURE__*/_jsx("path", {
35
+ d: "M51.144 21.972c-1.424 0-2.58-.388-3.468-1.165-.869-.776-1.303-1.793-1.303-3.05 0-1.332.471-2.359 1.414-3.08.944-.721 2.34-1.165 4.189-1.331l3.44-.306v-.388c0-.702-.24-1.248-.722-1.636-.48-.389-1.11-.583-1.886-.583h-.083c-.684 0-1.258.148-1.72.444-.444.296-.721.684-.832 1.165h-3.495c.11-.832.425-1.59.943-2.275.536-.684 1.248-1.23 2.136-1.636.888-.407 1.904-.61 3.051-.61 1.923 0 3.412.49 4.466 1.47 1.054.98 1.581 2.293 1.581 3.939v5.658c0 1.184.065 2.22.194 3.107h-3.328a8.484 8.484 0 01-.167-1.72c-.444.573-1.054 1.054-1.83 1.443-.777.37-1.637.554-2.58.554zm.832-2.884c.943 0 1.748-.278 2.413-.833.684-.554 1.026-1.331 1.026-2.33v-.305l-3.162.25c-1.645.13-2.468.703-2.468 1.72 0 .444.184.804.554 1.082.389.277.907.416 1.554.416h.083zM36.884 7.826h3.578v2.58a4 4 0 011.526-1.998c.721-.5 1.581-.749 2.58-.749h.61v3.329h-.999c-1.183 0-2.099.36-2.746 1.082-.629.72-.943 1.738-.943 3.05v6.575h-3.606V7.825zM26.872 22c-1.331 0-2.543-.314-3.634-.943a6.97 6.97 0 01-2.524-2.607c-.61-1.11-.915-2.349-.915-3.717 0-1.35.305-2.57.915-3.662a6.71 6.71 0 012.524-2.607c1.091-.63 2.303-.943 3.634-.943 1.35 0 2.561.314 3.634.943a6.711 6.711 0 012.524 2.607c.61 1.091.915 2.312.915 3.662 0 1.368-.305 2.607-.915 3.717a6.97 6.97 0 01-2.524 2.607c-1.073.629-2.284.943-3.634.943zm.055-2.996c1.018 0 1.831-.388 2.442-1.165.628-.776.943-1.812.943-3.106 0-1.276-.315-2.293-.944-3.052-.61-.776-1.423-1.165-2.44-1.165h-.14c-.998 0-1.811.389-2.44 1.165-.629.759-.943 1.776-.943 3.052 0 1.294.314 2.33.943 3.106.629.777 1.442 1.165 2.44 1.165h.14zM9.933 21.972c-2.552 0-4.503-.592-5.853-1.775C2.75 19.013 2.055 17.349 2 15.204h3.717c.037 1.072.398 1.914 1.082 2.524.703.61 1.729.915 3.079.915h.25c1.072 0 1.923-.212 2.551-.638.648-.425.971-.998.971-1.72 0-.591-.203-1.081-.61-1.47-.407-.388-1.082-.675-2.025-.86l-3.329-.638C4.302 12.67 2.61 10.84 2.61 7.825c0-1.054.296-2.025.888-2.912.592-.888 1.433-1.59 2.524-2.109C7.132 2.268 8.426 2 9.906 2c1.516 0 2.829.268 3.938.804 1.129.537 1.988 1.286 2.58 2.247.61.943.934 2.044.971 3.301H13.65c-.11-.961-.499-1.701-1.165-2.219-.665-.536-1.553-.804-2.663-.804h-.25c-.942 0-1.72.23-2.33.693-.61.462-.915 1.026-.915 1.692 0 .61.185 1.082.555 1.415.388.314 1.017.545 1.886.693l3.246.583c1.757.314 3.106.962 4.05 1.942.961.98 1.442 2.246 1.442 3.8 0 1.146-.305 2.163-.915 3.051-.61.87-1.49 1.553-2.636 2.053-1.146.48-2.487.72-4.022.72z"
36
+ })]
37
+ }));
38
+ });
39
+ export default Icon;
@@ -0,0 +1,16 @@
1
+ import Avatar from './components/Avatar';
2
+ import Color from './components/Color';
3
+ import Combine from './components/Combine';
4
+ import Mono from './components/Mono';
5
+ import Text from './components/Text';
6
+ export type CompoundedIcon = typeof Mono & {
7
+ Avatar: typeof Avatar;
8
+ Color: typeof Color;
9
+ Combine: typeof Combine;
10
+ Text: typeof Text;
11
+ colorGradient: string;
12
+ colorPrimary: string;
13
+ title: string;
14
+ };
15
+ declare const Icons: CompoundedIcon;
16
+ export default Icons;
@@ -0,0 +1,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
+ import { COLOR_GRADIENT, COLOR_PRIMARY, TITLE } from "./style";
7
+ var Icons = Mono;
8
+ Icons.Color = Color;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.colorGradient = COLOR_GRADIENT;
14
+ Icons.title = TITLE;
15
+ export default Icons;
@@ -0,0 +1,8 @@
1
+ export declare const TITLE = "Doubao";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export declare const COLOR_PRIMARY = "#0968DA";
5
+ export declare const COLOR_GRADIENT = "linear-gradient(180deg, #012659 0%, #0968DA 100%)";
6
+ export declare const AVATAR_BACKGROUND = "linear-gradient(180deg, #012659 0%, #0968DA 100%)";
7
+ export declare const AVATAR_COLOR = "#fff";
8
+ export declare const AVATAR_ICON_MULTIPLE = 0.7;
@@ -0,0 +1,10 @@
1
+ export var TITLE = 'Doubao';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.2;
4
+ export var COLOR_PRIMARY = '#0968DA';
5
+ export var COLOR_GRADIENT = 'linear-gradient(180deg, #012659 0%, #0968DA 100%)';
6
+
7
+ // Avatar constants
8
+ export var AVATAR_BACKGROUND = COLOR_GRADIENT;
9
+ export var AVATAR_COLOR = '#fff';
10
+ export var AVATAR_ICON_MULTIPLE = 0.7;
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { type IconAvatarProps } from "../../features/IconAvatar";
3
+ export type AvatarProps = Omit<IconAvatarProps, 'Icon'>;
4
+ declare const Avatar: import("react").NamedExoticComponent<AvatarProps>;
5
+ export default Avatar;
@@ -0,0 +1,25 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
5
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
6
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
7
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
8
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
9
+ function _objectDestructuringEmpty(obj) { if (obj == null) throw new TypeError("Cannot destructure " + obj); }
10
+ import { memo } from 'react';
11
+ import IconAvatar from "../../features/IconAvatar";
12
+ import { AVATAR_BACKGROUND, AVATAR_COLOR, AVATAR_ICON_MULTIPLE, TITLE } from "../style";
13
+ import Mono from "./Mono";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ var Avatar = /*#__PURE__*/memo(function (_ref) {
16
+ var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
17
+ return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
18
+ Icon: Mono,
19
+ "aria-label": TITLE,
20
+ background: AVATAR_BACKGROUND,
21
+ color: AVATAR_COLOR,
22
+ iconMultiple: AVATAR_ICON_MULTIPLE
23
+ }, rest));
24
+ });
25
+ export default Avatar;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,39 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ height: size,
23
+ style: _objectSpread({
24
+ flex: 'none',
25
+ lineHeight: 1
26
+ }, style),
27
+ viewBox: "0 0 24 24",
28
+ width: size,
29
+ xmlns: "http://www.w3.org/2000/svg"
30
+ }, rest), {}, {
31
+ children: [/*#__PURE__*/_jsx("title", {
32
+ children: TITLE
33
+ }), /*#__PURE__*/_jsx("path", {
34
+ d: "M22 6h-5.278l3.166-6h-8.443L3 16h6.333v8L22 6z",
35
+ fill: "#464BBA"
36
+ })]
37
+ }));
38
+ });
39
+ 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,36 @@
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", "extraStyle"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import IconCombine from "../../features/IconCombine";
14
+ import { COMBINE_SPACE_MULTIPLE, COMBINE_TEXT_MULTIPLE, TITLE } from "../style";
15
+ import Color from "./Color";
16
+ import Mono from "./Mono";
17
+ import Text from "./Text";
18
+ import { jsx as _jsx } from "react/jsx-runtime";
19
+ var Combine = /*#__PURE__*/memo(function (_ref) {
20
+ var _ref$type = _ref.type,
21
+ type = _ref$type === void 0 ? 'mono' : _ref$type,
22
+ extraStyle = _ref.extraStyle,
23
+ rest = _objectWithoutProperties(_ref, _excluded);
24
+ var Icon = type === 'color' ? Color : Mono;
25
+ return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
26
+ Icon: Icon,
27
+ Text: Text,
28
+ "aria-label": TITLE,
29
+ extraStyle: _objectSpread({
30
+ fontWeight: 500
31
+ }, extraStyle),
32
+ spaceMultiple: COMBINE_SPACE_MULTIPLE,
33
+ textMultiple: COMBINE_TEXT_MULTIPLE
34
+ }, rest));
35
+ });
36
+ 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,40 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 24 24",
30
+ width: size,
31
+ xmlns: "http://www.w3.org/2000/svg"
32
+ }, rest), {}, {
33
+ children: [/*#__PURE__*/_jsx("title", {
34
+ children: TITLE
35
+ }), /*#__PURE__*/_jsx("path", {
36
+ d: "M22 6h-5.278l3.166-6h-8.443L3 16h6.333v8L22 6z"
37
+ })]
38
+ }));
39
+ });
40
+ export default Icon;
@@ -0,0 +1,3 @@
1
+ import type { IconType } from "../../types";
2
+ declare const Icon: IconType;
3
+ export default Icon;
@@ -0,0 +1,40 @@
1
+ 'use client';
2
+
3
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
4
+ var _excluded = ["size", "style"];
5
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
6
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
7
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
8
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
9
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
10
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
11
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
12
+ import { memo } from 'react';
13
+ import { TITLE } from "../style";
14
+ import { jsx as _jsx } from "react/jsx-runtime";
15
+ import { jsxs as _jsxs } from "react/jsx-runtime";
16
+ var Icon = /*#__PURE__*/memo(function (_ref) {
17
+ var _ref$size = _ref.size,
18
+ size = _ref$size === void 0 ? '1em' : _ref$size,
19
+ style = _ref.style,
20
+ rest = _objectWithoutProperties(_ref, _excluded);
21
+ return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
22
+ fill: "currentColor",
23
+ fillRule: "evenodd",
24
+ height: size,
25
+ style: _objectSpread({
26
+ flex: 'none',
27
+ lineHeight: 1
28
+ }, style),
29
+ viewBox: "0 0 97 24",
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: "M8.628 22c-1.485 0-2.796-.238-3.929-.713-1.132-.475-2.034-1.112-2.699-1.91l2.772-2.395A5.528 5.528 0 006.77 18.28c.742.276 1.447.413 2.114.413.267 0 .504-.028.714-.086a1.58 1.58 0 00.528-.242c.143-.104.252-.227.329-.37.076-.142.115-.308.115-.498 0-.38-.172-.675-.515-.884-.17-.096-.457-.21-.857-.343a29.882 29.882 0 00-1.543-.456c-.895-.228-1.67-.499-2.328-.813-.657-.313-1.195-.679-1.615-1.097a4.476 4.476 0 01-.885-1.325c-.21-.486-.314-1.031-.314-1.64 0-.704.166-1.341.5-1.91.342-.581.799-1.086 1.343-1.484A6.189 6.189 0 016.3 6.59a7.924 7.924 0 012.27-.329c.838 0 1.638.095 2.4.286a9.68 9.68 0 012.128.798 8.057 8.057 0 011.756 1.226l-2.398 2.679a6.714 6.714 0 00-1.157-.87 6.694 6.694 0 00-1.329-.612 4.044 4.044 0 00-1.257-.228c-.286 0-.538.025-.757.072-.199.039-.388.116-.558.227a1.047 1.047 0 00-.342.371 1.046 1.046 0 00-.113.5c0 .188.052.37.157.54.104.171.252.315.442.428.19.115.496.242.915.385.567.189 1.139.364 1.714.527.895.248 1.666.524 2.314.828.647.303 1.162.664 1.543 1.082.304.324.534.7.685 1.127.153.428.23.888.23 1.383 0 .969-.272 1.83-.815 2.58-.542.75-1.29 1.34-2.243 1.767-.953.427-2.038.64-3.257.64V22zM26.263 6.578h-2.942V2.814h-4.57v3.764h-2.686v3.99h2.685v11.147h4.571V10.568h2.942v-3.99zm1.843 15.137V6.578h4.342l.095 2.315c.115-.179.24-.352.377-.519a6.07 6.07 0 011.843-1.54 4.686 4.686 0 012.256-.57c.343 0 .662.029.958.086.295.058.567.123.814.2l-1.257 5.046c-.21-.134-.49-.242-.842-.328a4.63 4.63 0 00-1.1-.129c-.42 0-.81.07-1.171.214a2.462 2.462 0 00-.914.613 2.975 2.975 0 00-.586.94 3.32 3.32 0 00-.215 1.226v7.583h-4.6zm44.08.234c-1.468 0-2.782-.342-3.943-1.026a7.509 7.509 0 01-2.757-2.808c-.677-1.188-1.015-2.532-1.015-4.034 0-1.502.339-2.846 1.015-4.033a7.51 7.51 0 012.756-2.808c1.162-.685 2.476-1.027 3.944-1.027 1.352 0 2.594.239 3.727.713 1.133.475 2.033 1.14 2.7 1.996l-2.486 2.964a5.946 5.946 0 00-.942-.855 4.522 4.522 0 00-1.2-.627 4.166 4.166 0 00-1.371-.228c-.724 0-1.362.166-1.914.499a3.4 3.4 0 00-1.286 1.383c-.305.589-.457 1.264-.457 2.023 0 .76.157 1.378.471 1.966a3.61 3.61 0 001.3 1.397c.551.342 1.18.514 1.885.514.496 0 .953-.062 1.371-.186a3.95 3.95 0 001.158-.555c.352-.247.68-.551.985-.913l2.457 2.993c-.648.817-1.548 1.464-2.7 1.94a9.618 9.618 0 01-3.7.712h.002zm14.644 0c-1.581 0-2.985-.342-4.214-1.026a7.76 7.76 0 01-2.914-2.793c-.714-1.179-1.07-2.528-1.07-4.048s.357-2.87 1.07-4.048a7.754 7.754 0 012.914-2.793c1.229-.685 2.633-1.027 4.214-1.027 1.581 0 2.986.342 4.214 1.027a7.646 7.646 0 012.9 2.793C94.646 11.213 95 12.562 95 14.082s-.353 2.87-1.057 4.048a7.641 7.641 0 01-2.899 2.793c-1.228.683-2.634 1.026-4.214 1.026zm0-3.934c.686 0 1.295-.17 1.828-.513.537-.345.97-.828 1.257-1.397.305-.589.447-1.264.43-2.024.017-.76-.125-1.44-.43-2.038a3.55 3.55 0 00-1.257-1.411c-.533-.343-1.142-.514-1.828-.514-.686 0-1.3.17-1.843.513a3.516 3.516 0 00-1.271 1.412c-.304.598-.448 1.278-.429 2.038-.019.76.125 1.435.429 2.024.304.59.729 1.055 1.271 1.397a3.384 3.384 0 001.843.513zM62.279 4.049c.485-.438.728-1.008.728-1.712 0-.741-.239-1.315-.714-1.723C61.816.204 61.149 0 60.292 0c-.856 0-1.505.22-2 .656-.495.438-.742.998-.742 1.681 0 .761.243 1.346.728 1.754.486.409 1.158.613 2.015.613.857 0 1.5-.218 1.986-.655zm-7.654 16.4v-4.197H51.47l3.154-6.293v-3.38H50.08v1.834a5.777 5.777 0 00-.941-.964 5.22 5.22 0 00-1.586-.87 6.016 6.016 0 00-1.985-.314c-1.315 0-2.486.338-3.514 1.014-1.029.674-1.839 1.601-2.429 2.779-.59 1.178-.886 2.537-.886 4.075 0 1.54.296 2.846.886 4.034.59 1.188 1.386 2.12 2.386 2.793 1 .676 2.138 1.013 3.414 1.013.685 0 1.333-.104 1.943-.313a6.22 6.22 0 001.657-.855 5.582 5.582 0 001.257-1.255c.205-.285.377-.58.514-.886a6.293 6.293 0 005.535 3.313v-4.08l-1.706 2.553-.001-.002zm-4.914-4.193c-.286.6-.686 1.06-1.2 1.383-.514.324-1.123.485-1.828.485-.705 0-1.281-.162-1.786-.485-.504-.323-.899-.784-1.186-1.383-.285-.598-.428-1.305-.428-2.123 0-.817.142-1.525.428-2.123.287-.6.681-1.065 1.186-1.397.505-.333 1.1-.5 1.786-.5.686 0 1.315.167 1.828.5.514.332.915.798 1.2 1.397.286.598.429 1.306.429 2.123 0 .817-.143 1.525-.429 2.123zm12.867-9.678h-4.57v1.283h1.872l-1.577 3.147h2.627l-2.923 4.376v6.354c2.634-.744 4.57-3.163 4.57-6.026V6.576l.002.002z"
37
+ })]
38
+ }));
39
+ });
40
+ 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,14 @@
1
+ import Avatar from "./components/Avatar";
2
+ import Color from "./components/Color";
3
+ import Combine from "./components/Combine";
4
+ import Mono from "./components/Mono";
5
+ import Text from "./components/Text";
6
+ import { COLOR_PRIMARY, TITLE } from "./style";
7
+ var Icons = Mono;
8
+ Icons.Color = Color;
9
+ Icons.Text = Text;
10
+ Icons.Combine = Combine;
11
+ Icons.Avatar = Avatar;
12
+ Icons.colorPrimary = COLOR_PRIMARY;
13
+ Icons.title = TITLE;
14
+ export default Icons;
@@ -0,0 +1,7 @@
1
+ export declare const TITLE = "Straico";
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.9;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.1;
4
+ export declare const COLOR_PRIMARY = "#464bba";
5
+ export declare const AVATAR_BACKGROUND = "#464bba";
6
+ export declare const AVATAR_COLOR = "#fff";
7
+ export declare const AVATAR_ICON_MULTIPLE = 0.6;
@@ -0,0 +1,9 @@
1
+ export var TITLE = 'Straico';
2
+ export var COMBINE_TEXT_MULTIPLE = 0.9;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.1;
4
+ export var COLOR_PRIMARY = '#464bba';
5
+
6
+ // Avatar constants
7
+ export var AVATAR_BACKGROUND = COLOR_PRIMARY;
8
+ export var AVATAR_COLOR = '#fff';
9
+ export var AVATAR_ICON_MULTIPLE = 0.6;
@@ -26,13 +26,13 @@ var Icon = /*#__PURE__*/memo(function (_ref) {
26
26
  flex: 'none',
27
27
  lineHeight: 1
28
28
  }, style),
29
- viewBox: "0 0 89 24",
29
+ viewBox: "0 0 94 24",
30
30
  xmlns: "http://www.w3.org/2000/svg"
31
31
  }, rest), {}, {
32
32
  children: [/*#__PURE__*/_jsx("title", {
33
33
  children: TITLE
34
34
  }), /*#__PURE__*/_jsx("path", {
35
- d: "M27.97 4.583c-4.6 0-7.916 3-7.916 7.5s3.734 7.5 8.334 7.5c2.779 0 5.229-1.1 6.745-2.954l-3.187-1.842c-.842.921-2.121 1.459-3.559 1.459-1.995 0-3.691-1.042-4.32-2.708h11.675a7.53 7.53 0 00.146-1.459c0-4.496-3.317-7.496-7.917-7.496zm-3.94 6.042c.52-1.662 1.945-2.708 3.937-2.708 1.995 0 3.42 1.046 3.937 2.708H24.03zm48.808-6.042c-4.6 0-7.917 3-7.917 7.5s3.733 7.5 8.333 7.5c2.78 0 5.23-1.1 6.746-2.954l-3.188-1.842c-.841.921-2.12 1.459-3.558 1.459-1.996 0-3.692-1.042-4.32-2.708h11.674c.092-.467.146-.95.146-1.459 0-4.496-3.317-7.496-7.916-7.496zM68.9 10.625c.52-1.662 1.946-2.708 3.938-2.708 1.995 0 3.42 1.046 3.937 2.708H68.9zm-16.263 1.458c0 2.5 1.634 4.167 4.167 4.167 1.717 0 3.004-.78 3.667-2.05l3.2 1.846c-1.325 2.208-3.809 3.537-6.867 3.537-4.604 0-7.916-3-7.916-7.5s3.316-7.5 7.916-7.5c3.058 0 5.538 1.33 6.867 3.538l-3.2 1.846c-.663-1.271-1.95-2.05-3.667-2.05-2.529 0-4.166 1.666-4.166 4.166zM87.005 0v19.167h-3.75V0h3.75zM23.092 0L11.546 20 0 0h4.33l7.216 12.5L18.762 0h4.33zm24.546 5v4.037a4.75 4.75 0 00-1.334-.204c-2.42 0-4.166 1.667-4.166 4.167v6.167h-3.75V5h3.75v3.833C42.138 6.717 44.6 5 47.638 5z"
35
+ d: "M14.208 21.634L25.623 0h-4.937l-7.874 15.712L4.937 0H0l11.415 21.634h2.793zM92 0v21.634h-4.088V0H92zM69.247 13.56c0-1.687.351-3.17 1.054-4.45a7.317 7.317 0 012.938-2.955c1.256-.69 2.725-1.036 4.407-1.036 1.49 0 2.831.325 4.023.975 1.192.65 2.14 1.615 2.842 2.895.703 1.28 1.065 2.844 1.086 4.692v.945H73.558c.085 1.34.479 2.397 1.182 3.169.724.752 1.692 1.127 2.906 1.127.766 0 1.469-.203 2.107-.609a3.8 3.8 0 001.437-1.645l4.184.304c-.511 1.524-1.47 2.743-2.874 3.657-1.406.914-3.024 1.371-4.854 1.371-1.682 0-3.151-.345-4.407-1.036a7.317 7.317 0 01-2.938-2.956c-.703-1.28-1.054-2.762-1.054-4.448zm12.135-1.524c-.15-1.32-.564-2.285-1.246-2.895-.68-.63-1.511-.944-2.49-.944-1.128 0-2.044.335-2.746 1.005-.703.67-1.14 1.615-1.31 2.834h7.792zm-19.03-2.895c.68.549 1.106 1.31 1.277 2.286l4.215-.214c-.15-1.239-.586-2.315-1.31-3.23-.723-.914-1.66-1.615-2.81-2.102-1.128-.508-2.373-.762-3.736-.762-1.682 0-3.15.345-4.407 1.036a7.316 7.316 0 00-2.938 2.956c-.702 1.28-1.053 2.762-1.053 4.448 0 1.687.35 3.17 1.053 4.45a7.316 7.316 0 002.938 2.955c1.256.69 2.725 1.036 4.407 1.036 1.405 0 2.682-.254 3.832-.762 1.15-.528 2.087-1.27 2.81-2.224.724-.955 1.16-2.072 1.31-3.352l-4.248-.183c-.148 1.077-.564 1.91-1.245 2.499-.681.569-1.501.853-2.459.853-1.32 0-2.342-.457-3.066-1.371-.723-.914-1.085-2.214-1.085-3.9 0-1.687.362-2.987 1.085-3.9.724-.915 1.746-1.372 3.066-1.372.916 0 1.703.284 2.363.853zM41.614 5.484h3.804l.11 3.108c.27-.88.645-1.563 1.126-2.05.697-.705 1.67-1.058 2.916-1.058h1.553v3.327H49.54c-.888 0-1.617.12-2.188.363-.549.242-.972.625-1.267 1.15-.275.523-.412 1.189-.412 1.995v9.315h-4.058V5.484zM24.07 9.111c-.702 1.28-1.053 2.762-1.053 4.448 0 1.687.35 3.17 1.053 4.45a7.316 7.316 0 002.938 2.955c1.256.69 2.725 1.036 4.407 1.036 1.831 0 3.45-.457 4.854-1.371 1.405-.914 2.363-2.133 2.874-3.657l-4.183-.304a3.8 3.8 0 01-1.437 1.645 3.848 3.848 0 01-2.108.61c-1.213 0-2.182-.376-2.906-1.128-.702-.772-1.096-1.828-1.181-3.169h12.039v-.945c-.021-1.848-.383-3.412-1.086-4.692-.703-1.28-1.65-2.245-2.842-2.895-1.193-.65-2.534-.975-4.024-.975-1.682 0-3.15.345-4.407 1.036a7.316 7.316 0 00-2.938 2.956zm9.836.03c.681.61 1.096 1.575 1.245 2.895H27.36c.17-1.219.607-2.163 1.31-2.834.702-.67 1.618-1.005 2.746-1.005.98 0 1.81.315 2.491.944z"
36
36
  })]
37
37
  }));
38
38
  });
@@ -1,6 +1,6 @@
1
1
  export declare const TITLE = "Vercel";
2
- export declare const COMBINE_TEXT_MULTIPLE = 0.75;
3
- export declare const COMBINE_SPACE_MULTIPLE = 0.1;
2
+ export declare const COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export declare const COMBINE_SPACE_MULTIPLE = 0.05;
4
4
  export declare const COLOR_PRIMARY = "#000";
5
5
  export declare const AVATAR_BACKGROUND = "#000";
6
6
  export declare const AVATAR_COLOR = "#fff";
@@ -1,6 +1,6 @@
1
1
  export var TITLE = 'Vercel';
2
- export var COMBINE_TEXT_MULTIPLE = 0.75;
3
- export var COMBINE_SPACE_MULTIPLE = 0.1;
2
+ export var COMBINE_TEXT_MULTIPLE = 0.8;
3
+ export var COMBINE_SPACE_MULTIPLE = 0.05;
4
4
  export var COLOR_PRIMARY = '#000';
5
5
 
6
6
  // Avatar constants
@@ -40,7 +40,6 @@ import Inflection from "../Inflection";
40
40
  import InternLM from "../InternLM";
41
41
  import Jina from "../Jina";
42
42
  import Kolors from "../Kolors";
43
- import { Kwaipilot } from "../icons";
44
43
  import LG from "../LG";
45
44
  import LLaVA from "../LLaVA";
46
45
  import Liquid from "../Liquid";
@@ -64,6 +63,7 @@ import Qwen from "../Qwen";
64
63
  import Rwkv from "../Rwkv";
65
64
  import SenseNova from "../SenseNova";
66
65
  import Skywork from "../Skywork";
66
+ import Sora from "../Sora";
67
67
  import Spark from "../Spark";
68
68
  import Stability from "../Stability";
69
69
  import Stepfun from "../Stepfun";
@@ -77,6 +77,7 @@ import Voyage from "../Voyage";
77
77
  import Wenxin from "../Wenxin";
78
78
  import Yi from "../Yi";
79
79
  import ZAI from "../ZAI";
80
+ import { Kwaipilot } from "../icons";
80
81
 
81
82
  // Define a type for our model mapping
82
83
 
@@ -99,6 +100,9 @@ export var modelMappings = [{
99
100
  props: {
100
101
  type: 'gpt5'
101
102
  }
103
+ }, {
104
+ Icon: Sora,
105
+ keywords: ['sora']
102
106
  }, {
103
107
  Icon: OpenAI,
104
108
  keywords: ['gpt-oss'],
@@ -79,6 +79,7 @@ import SiliconCloud from "../SiliconCloud";
79
79
  import SophNet from "../SophNet";
80
80
  import Spark from "../Spark";
81
81
  import Stepfun from "../Stepfun";
82
+ import Straico from "../Straico";
82
83
  import TencentCloud from "../TencentCloud";
83
84
  import Together from "../Together";
84
85
  import Upstage from "../Upstage";
@@ -522,4 +523,8 @@ export var providerMappings = [{
522
523
  Icon: Cerebras,
523
524
  combineMultiple: 1,
524
525
  keywords: [ModelProvider.Cerebras]
526
+ }, {
527
+ Icon: Straico,
528
+ combineMultiple: 1,
529
+ keywords: [ModelProvider.Straico]
525
530
  }];
@@ -57,6 +57,7 @@ export declare enum ModelProvider {
57
57
  SophNet = "sophnet",
58
58
  Spark = "spark",
59
59
  Stepfun = "stepfun",
60
+ Straico = "straico",
60
61
  Taichu = "taichu",
61
62
  TencentCloud = "tencentcloud",
62
63
  TogetherAI = "togetherai",
@@ -57,6 +57,7 @@ export var ModelProvider = /*#__PURE__*/function (ModelProvider) {
57
57
  ModelProvider["SophNet"] = "sophnet";
58
58
  ModelProvider["Spark"] = "spark";
59
59
  ModelProvider["Stepfun"] = "stepfun";
60
+ ModelProvider["Straico"] = "straico";
60
61
  ModelProvider["Taichu"] = "taichu";
61
62
  ModelProvider["TencentCloud"] = "tencentcloud";
62
63
  ModelProvider["TogetherAI"] = "togetherai";
package/es/icons.d.ts CHANGED
@@ -201,10 +201,12 @@ export { default as Skywork, type CompoundedIcon as SkyworkProps } from './Skywo
201
201
  export { default as Smithery, type CompoundedIcon as SmitheryProps } from './Smithery';
202
202
  export { default as Snowflake, type CompoundedIcon as SnowflakeProps } from './Snowflake';
203
203
  export { default as SophNet, type CompoundedIcon as SophNetLabsProps } from './SophNet';
204
+ export { default as Sora, type CompoundedIcon as SoraProps } from './Sora';
204
205
  export { default as Spark, type CompoundedIcon as SparkProps } from './Spark';
205
206
  export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability';
206
207
  export { default as StateCloud, type CompoundedIcon as StateCloudProps } from './StateCloud';
207
208
  export { default as Stepfun, type CompoundedIcon as StepfunProps } from './Stepfun';
209
+ export { default as Straico, type CompoundedIcon as StraicoProps } from './Straico';
208
210
  export { default as SubModel, type CompoundedIcon as SubModelProps } from './SubModel';
209
211
  export { default as Suno, type CompoundedIcon as SunoProps } from './Suno';
210
212
  export { default as Sync, type CompoundedIcon as SyncProps } from './Sync';
package/es/icons.js CHANGED
@@ -201,10 +201,12 @@ export { default as Skywork } from "./Skywork";
201
201
  export { default as Smithery } from "./Smithery";
202
202
  export { default as Snowflake } from "./Snowflake";
203
203
  export { default as SophNet } from "./SophNet";
204
+ export { default as Sora } from "./Sora";
204
205
  export { default as Spark } from "./Spark";
205
206
  export { default as Stability } from "./Stability";
206
207
  export { default as StateCloud } from "./StateCloud";
207
208
  export { default as Stepfun } from "./Stepfun";
209
+ export { default as Straico } from "./Straico";
208
210
  export { default as SubModel } from "./SubModel";
209
211
  export { default as Suno } from "./Suno";
210
212
  export { default as Sync } from "./Sync";