@lobehub/icons 1.16.0 → 1.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/es/Langfuse/components/Avatar.d.ts +5 -0
- package/es/Langfuse/components/Avatar.js +21 -0
- package/es/Langfuse/components/Color.d.ts +3 -0
- package/es/Langfuse/components/Color.js +46 -0
- package/es/Langfuse/components/Combine.d.ts +7 -0
- package/es/Langfuse/components/Combine.js +26 -0
- package/es/Langfuse/components/Mono.d.ts +3 -0
- package/es/Langfuse/components/Mono.js +39 -0
- package/es/Langfuse/components/Text.d.ts +3 -0
- package/es/Langfuse/components/Text.js +35 -0
- package/es/Langfuse/index.d.ts +15 -0
- package/es/Langfuse/index.js +14 -0
- package/es/Langfuse/style.d.ts +4 -0
- package/es/Langfuse/style.js +4 -0
- package/es/Suno/components/Avatar.d.ts +5 -0
- package/es/Suno/components/Avatar.js +22 -0
- package/es/Suno/components/Combine.d.ts +5 -0
- package/es/Suno/components/Combine.js +21 -0
- package/es/Suno/components/Mono.d.ts +3 -0
- package/es/Suno/components/Mono.js +35 -0
- package/es/Suno/components/Text.d.ts +3 -0
- package/es/Suno/components/Text.js +35 -0
- package/es/Suno/index.d.ts +13 -0
- package/es/Suno/index.js +12 -0
- package/es/Suno/style.d.ts +4 -0
- package/es/Suno/style.js +4 -0
- package/es/Together/components/Avatar.d.ts +5 -0
- package/es/Together/components/Avatar.js +21 -0
- package/es/Together/components/BrandColor.d.ts +3 -0
- package/es/Together/components/BrandColor.js +40 -0
- package/es/Together/components/BrandMono.d.ts +3 -0
- package/es/Together/components/BrandMono.js +39 -0
- package/es/Together/components/Color.d.ts +3 -0
- package/es/Together/components/Color.js +43 -0
- package/es/Together/components/Combine.d.ts +7 -0
- package/es/Together/components/Combine.js +26 -0
- package/es/Together/components/Mono.d.ts +3 -0
- package/es/Together/components/Mono.js +42 -0
- package/es/Together/components/Text.d.ts +3 -0
- package/es/Together/components/Text.js +39 -0
- package/es/Together/index.d.ts +19 -0
- package/es/Together/index.js +18 -0
- package/es/Together/style.d.ts +4 -0
- package/es/Together/style.js +4 -0
- package/es/Zeabur/components/Avatar.d.ts +5 -0
- package/es/Zeabur/components/Avatar.js +22 -0
- package/es/Zeabur/components/Color.d.ts +3 -0
- package/es/Zeabur/components/Color.js +43 -0
- package/es/Zeabur/components/Combine.d.ts +7 -0
- package/es/Zeabur/components/Combine.js +26 -0
- package/es/Zeabur/components/Mono.d.ts +3 -0
- package/es/Zeabur/components/Mono.js +40 -0
- package/es/Zeabur/components/Text.d.ts +3 -0
- package/es/Zeabur/components/Text.js +35 -0
- package/es/Zeabur/index.d.ts +15 -0
- package/es/Zeabur/index.js +14 -0
- package/es/Zeabur/style.d.ts +4 -0
- package/es/Zeabur/style.js +4 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +4 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1,
|
|
23
|
+
width: 'fit-content'
|
|
24
|
+
}, style),
|
|
25
|
+
viewBox: "0 0 116 24",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M4.213 8.554H2V6.747h2.213V3.301h1.972v3.446h3.103v1.807H6.185v7.253c0 .514.097.884.289 1.109.208.208.561.313 1.058.313h2.141v1.807h-2.26c-1.155 0-1.981-.257-2.478-.771-.482-.514-.722-1.325-.722-2.434V8.554zm11.815 10.627c-1.187 0-2.245-.265-3.175-.795a5.58 5.58 0 01-2.14-2.217c-.514-.948-.77-2.04-.77-3.277s.256-2.33.77-3.278a5.58 5.58 0 012.14-2.216c.93-.53 1.988-.796 3.175-.796 1.187 0 2.237.265 3.151.796.93.53 1.652 1.269 2.165 2.216.513.948.77 2.04.77 3.278 0 1.236-.257 2.329-.77 3.277a5.533 5.533 0 01-2.165 2.217c-.914.53-1.964.795-3.15.795zm0-1.76c.802 0 1.507-.192 2.117-.578a3.812 3.812 0 001.443-1.614c.337-.69.505-1.47.505-2.337 0-.868-.168-1.647-.505-2.338a3.812 3.812 0 00-1.443-1.614c-.61-.386-1.315-.579-2.117-.579s-1.515.193-2.14.579a3.867 3.867 0 00-1.42 1.614c-.337.691-.505 1.47-.505 2.338 0 .867.168 1.646.505 2.337.337.69.81 1.229 1.42 1.614.625.386 1.338.579 2.14.579zM35.622 6.748v11.687c0 3.71-2.028 5.566-6.086 5.566-1.587 0-2.886-.361-3.896-1.084-.995-.723-1.572-1.751-1.732-3.085h2.02c.16.771.57 1.366 1.227 1.783.658.418 1.5.627 2.526.627 2.646 0 3.969-1.293 3.969-3.88v-1.445c-.882 1.51-2.285 2.265-4.21 2.265-1.138 0-2.157-.25-3.055-.747-.882-.498-1.58-1.221-2.092-2.169-.497-.948-.746-2.072-.746-3.373 0-1.237.249-2.33.746-3.278a5.631 5.631 0 012.116-2.216c.898-.53 1.909-.796 3.031-.796.994 0 1.844.201 2.55.603.706.385 1.259.94 1.66 1.662l.264-2.12h1.708zm-5.99 10.675c.786 0 1.484-.185 2.093-.555a3.844 3.844 0 001.444-1.59c.336-.69.505-1.47.505-2.337 0-.884-.169-1.67-.505-2.362-.337-.707-.818-1.253-1.444-1.638-.609-.386-1.307-.579-2.092-.579-1.22 0-2.205.426-2.959 1.278-.738.835-1.107 1.92-1.107 3.253 0 1.333.37 2.425 1.107 3.277.754.835 1.74 1.253 2.959 1.253zm7.848-4.53c0-1.253.241-2.354.722-3.302.497-.947 1.187-1.678 2.069-2.192.882-.53 1.892-.796 3.03-.796 1.123 0 2.117.233 2.983.7a5.064 5.064 0 012.045 2.023c.497.884.761 1.92.793 3.109l-.005.211c-.007.164-.021.375-.043.632H39.55v.169c.032 1.205.4 2.168 1.106 2.891.706.723 1.628 1.085 2.767 1.085.882 0 1.627-.217 2.237-.65.625-.45 1.042-1.07 1.25-1.856h1.997c-.24 1.253-.842 2.28-1.804 3.084-.962.787-2.14 1.18-3.536 1.18-1.219 0-2.285-.256-3.2-.77a5.58 5.58 0 01-2.14-2.217c-.497-.964-.746-2.065-.746-3.301zm9.598-1.253c-.096-1.045-.49-1.856-1.179-2.434-.673-.579-1.531-.868-2.574-.868-.93 0-1.747.306-2.453.916-.706.61-1.106 1.406-1.203 2.386h7.409zm4.577-3.085h-2.213V6.747h2.213V3.301h1.972v3.446h3.103v1.807h-3.103v7.253c0 .514.096.884.289 1.109.208.208.56.313 1.058.313h2.14v1.807h-2.26c-1.155 0-1.98-.257-2.478-.771-.481-.514-.721-1.325-.721-2.434V8.554zm12.48-1.952c1.492 0 2.695.45 3.609 1.35.914.9 1.371 2.313 1.371 4.24v6.844h-1.972v-6.723c0-1.269-.29-2.233-.866-2.891-.578-.675-1.404-1.012-2.478-1.012-1.138 0-2.044.401-2.718 1.204-.657.804-.986 1.896-.986 3.278v6.144h-1.973V2.17h1.973V8.77a4.78 4.78 0 011.587-1.566c.674-.402 1.492-.603 2.454-.603zm6.666 6.29c0-1.253.24-2.354.721-3.302.497-.947 1.187-1.678 2.069-2.192.882-.53 1.892-.796 3.03-.796 1.123 0 2.117.233 2.983.7a5.064 5.064 0 012.045 2.023c.497.884.762 1.92.794 3.109l-.006.211c-.007.164-.021.375-.042.632h-9.526v.169c.032 1.205.401 2.168 1.107 2.891.705.723 1.627 1.085 2.766 1.085.882 0 1.628-.217 2.237-.65.625-.45 1.042-1.07 1.25-1.856h1.997c-.24 1.253-.842 2.28-1.804 3.084-.962.787-2.14 1.18-3.536 1.18-1.218 0-2.285-.256-3.199-.77a5.58 5.58 0 01-2.14-2.217c-.498-.964-.746-2.065-.746-3.301zm9.597-1.253c-.096-1.045-.489-1.856-1.178-2.434-.674-.579-1.532-.868-2.574-.868-.93 0-1.748.306-2.454.916-.705.61-1.106 1.406-1.202 2.386h7.408zm10.13-4.892v1.928h-.986c-1.171 0-2.013.393-2.526 1.18-.497.788-.746 1.76-.746 2.916v6.265h-1.972V6.747h1.708l.264 1.855a4.082 4.082 0 011.371-1.349c.562-.337 1.34-.506 2.334-.506h.553zm20.09 10.482v1.807h-1.083c-.786 0-1.347-.16-1.684-.482-.336-.321-.513-.795-.529-1.422-.946 1.366-2.317 2.049-4.113 2.049-1.363 0-2.461-.322-3.295-.964-.818-.643-1.227-1.518-1.227-2.627 0-1.237.417-2.184 1.25-2.843.85-.659 2.078-.988 3.681-.988h3.608v-.843c0-.804-.272-1.43-.818-1.88-.529-.45-1.275-.675-2.237-.675-.85 0-1.555.193-2.116.579-.546.37-.882.867-1.01 1.494h-1.973c.144-1.205.673-2.145 1.587-2.82.93-.674 2.133-1.012 3.609-1.012 1.571 0 2.782.386 3.631 1.157.866.755 1.3 1.847 1.3 3.277v5.301c0 .595.272.892.818.892h.601zm-3.392-3.807h-3.8c-1.828 0-2.742.682-2.742 2.048 0 .61.24 1.1.721 1.47.481.37 1.13.554 1.949.554 1.202 0 2.148-.313 2.838-.94.69-.642 1.034-1.486 1.034-2.53v-.602zM112.725 2c.369 0 .674.12.914.361s.361.547.361.916c0 .37-.12.675-.361.916-.24.24-.545.361-.914.361s-.674-.12-.914-.361-.361-.546-.361-.916.12-.675.361-.916c.24-.24.545-.361.914-.361zm-.986 4.747h1.972v12.29h-1.972V6.746z"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
d: "M94.83 17.165a1.881 1.881 0 01-1.89 1.871 1.88 1.88 0 01-1.89-1.871 1.88 1.88 0 011.89-1.871c1.044 0 1.89.838 1.89 1.87z"
|
|
35
|
+
})]
|
|
36
|
+
})]
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
export default Icon;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 24 24",
|
|
25
|
+
width: size,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M17.385 11.23a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm0 10.77a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm-10.77 0a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23z",
|
|
33
|
+
opacity: ".2"
|
|
34
|
+
}), /*#__PURE__*/_jsx("circle", {
|
|
35
|
+
cx: "6.615",
|
|
36
|
+
cy: "6.615",
|
|
37
|
+
fill: "#0F6FFF",
|
|
38
|
+
r: "4.615"
|
|
39
|
+
})]
|
|
40
|
+
})]
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
export default Icon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type IconCombineProps } from "../../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,26 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["type"];
|
|
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
|
+
import { memo } from 'react';
|
|
7
|
+
import IconCombine from "../../IconCombine";
|
|
8
|
+
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
|
9
|
+
import Color from "./Color";
|
|
10
|
+
import Mono from "./Mono";
|
|
11
|
+
import Text from "./Text";
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
14
|
+
var _ref$type = _ref.type,
|
|
15
|
+
type = _ref$type === void 0 ? 'mono' : _ref$type,
|
|
16
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
17
|
+
var Icon = type === 'color' ? Color : Mono;
|
|
18
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
19
|
+
Icon: Icon,
|
|
20
|
+
Text: Text,
|
|
21
|
+
"aria-label": TITLE,
|
|
22
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
23
|
+
textMultiple: TEXT_MULTIPLE
|
|
24
|
+
}, rest));
|
|
25
|
+
});
|
|
26
|
+
export default Combine;
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 24 24",
|
|
25
|
+
width: size,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M17.385 11.23a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm0 10.77a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23zm-10.77 0a4.615 4.615 0 100-9.23 4.615 4.615 0 000 9.23z",
|
|
33
|
+
opacity: ".2"
|
|
34
|
+
}), /*#__PURE__*/_jsx("circle", {
|
|
35
|
+
cx: "6.615",
|
|
36
|
+
cy: "6.615",
|
|
37
|
+
r: "4.615"
|
|
38
|
+
})]
|
|
39
|
+
})]
|
|
40
|
+
}));
|
|
41
|
+
});
|
|
42
|
+
export default Icon;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1,
|
|
23
|
+
width: 'fit-content'
|
|
24
|
+
}, style),
|
|
25
|
+
viewBox: "0 0 116 24",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M4.213 8.554H2V6.747h2.213V3.301h1.972v3.446h3.103v1.807H6.185v7.253c0 .514.097.884.289 1.109.208.208.561.313 1.058.313h2.141v1.807h-2.26c-1.155 0-1.981-.257-2.478-.771-.482-.514-.722-1.325-.722-2.434V8.554zm11.815 10.627c-1.187 0-2.245-.265-3.175-.795a5.58 5.58 0 01-2.14-2.217c-.514-.948-.77-2.04-.77-3.277s.256-2.33.77-3.278a5.58 5.58 0 012.14-2.216c.93-.53 1.988-.796 3.175-.796 1.187 0 2.237.265 3.151.796.93.53 1.652 1.269 2.165 2.216.513.948.77 2.04.77 3.278 0 1.236-.257 2.329-.77 3.277a5.533 5.533 0 01-2.165 2.217c-.914.53-1.964.795-3.15.795zm0-1.76c.802 0 1.507-.192 2.117-.578a3.812 3.812 0 001.443-1.614c.337-.69.505-1.47.505-2.337 0-.868-.168-1.647-.505-2.338a3.812 3.812 0 00-1.443-1.614c-.61-.386-1.315-.579-2.117-.579s-1.515.193-2.14.579a3.867 3.867 0 00-1.42 1.614c-.337.691-.505 1.47-.505 2.338 0 .867.168 1.646.505 2.337.337.69.81 1.229 1.42 1.614.625.386 1.338.579 2.14.579zM35.622 6.748v11.687c0 3.71-2.028 5.566-6.086 5.566-1.587 0-2.886-.361-3.896-1.084-.995-.723-1.572-1.751-1.732-3.085h2.02c.16.771.57 1.366 1.227 1.783.658.418 1.5.627 2.526.627 2.646 0 3.969-1.293 3.969-3.88v-1.445c-.882 1.51-2.285 2.265-4.21 2.265-1.138 0-2.157-.25-3.055-.747-.882-.498-1.58-1.221-2.092-2.169-.497-.948-.746-2.072-.746-3.373 0-1.237.249-2.33.746-3.278a5.631 5.631 0 012.116-2.216c.898-.53 1.909-.796 3.031-.796.994 0 1.844.201 2.55.603.706.385 1.259.94 1.66 1.662l.264-2.12h1.708zm-5.99 10.675c.786 0 1.484-.185 2.093-.555a3.844 3.844 0 001.444-1.59c.336-.69.505-1.47.505-2.337 0-.884-.169-1.67-.505-2.362-.337-.707-.818-1.253-1.444-1.638-.609-.386-1.307-.579-2.092-.579-1.22 0-2.205.426-2.959 1.278-.738.835-1.107 1.92-1.107 3.253 0 1.333.37 2.425 1.107 3.277.754.835 1.74 1.253 2.959 1.253zm7.848-4.53c0-1.253.241-2.354.722-3.302.497-.947 1.187-1.678 2.069-2.192.882-.53 1.892-.796 3.03-.796 1.123 0 2.117.233 2.983.7a5.064 5.064 0 012.045 2.023c.497.884.761 1.92.793 3.109l-.005.211c-.007.164-.021.375-.043.632H39.55v.169c.032 1.205.4 2.168 1.106 2.891.706.723 1.628 1.085 2.767 1.085.882 0 1.627-.217 2.237-.65.625-.45 1.042-1.07 1.25-1.856h1.997c-.24 1.253-.842 2.28-1.804 3.084-.962.787-2.14 1.18-3.536 1.18-1.219 0-2.285-.256-3.2-.77a5.58 5.58 0 01-2.14-2.217c-.497-.964-.746-2.065-.746-3.301zm9.598-1.253c-.096-1.045-.49-1.856-1.179-2.434-.673-.579-1.531-.868-2.574-.868-.93 0-1.747.306-2.453.916-.706.61-1.106 1.406-1.203 2.386h7.409zm4.577-3.085h-2.213V6.747h2.213V3.301h1.972v3.446h3.103v1.807h-3.103v7.253c0 .514.096.884.289 1.109.208.208.56.313 1.058.313h2.14v1.807h-2.26c-1.155 0-1.98-.257-2.478-.771-.481-.514-.721-1.325-.721-2.434V8.554zm12.48-1.952c1.492 0 2.695.45 3.609 1.35.914.9 1.371 2.313 1.371 4.24v6.844h-1.972v-6.723c0-1.269-.29-2.233-.866-2.891-.578-.675-1.404-1.012-2.478-1.012-1.138 0-2.044.401-2.718 1.204-.657.804-.986 1.896-.986 3.278v6.144h-1.973V2.17h1.973V8.77a4.78 4.78 0 011.587-1.566c.674-.402 1.492-.603 2.454-.603zm6.666 6.29c0-1.253.24-2.354.721-3.302.497-.947 1.187-1.678 2.069-2.192.882-.53 1.892-.796 3.03-.796 1.123 0 2.117.233 2.983.7a5.064 5.064 0 012.045 2.023c.497.884.762 1.92.794 3.109l-.006.211c-.007.164-.021.375-.042.632h-9.526v.169c.032 1.205.401 2.168 1.107 2.891.705.723 1.627 1.085 2.766 1.085.882 0 1.628-.217 2.237-.65.625-.45 1.042-1.07 1.25-1.856h1.997c-.24 1.253-.842 2.28-1.804 3.084-.962.787-2.14 1.18-3.536 1.18-1.218 0-2.285-.256-3.199-.77a5.58 5.58 0 01-2.14-2.217c-.498-.964-.746-2.065-.746-3.301zm9.597-1.253c-.096-1.045-.489-1.856-1.178-2.434-.674-.579-1.532-.868-2.574-.868-.93 0-1.748.306-2.454.916-.705.61-1.106 1.406-1.202 2.386h7.408zm10.13-4.892v1.928h-.986c-1.171 0-2.013.393-2.526 1.18-.497.788-.746 1.76-.746 2.916v6.265h-1.972V6.747h1.708l.264 1.855a4.082 4.082 0 011.371-1.349c.562-.337 1.34-.506 2.334-.506h.553zm20.09 10.482v1.807h-1.083c-.786 0-1.347-.16-1.684-.482-.336-.321-.513-.795-.529-1.422-.946 1.366-2.317 2.049-4.113 2.049-1.363 0-2.461-.322-3.295-.964-.818-.643-1.227-1.518-1.227-2.627 0-1.237.417-2.184 1.25-2.843.85-.659 2.078-.988 3.681-.988h3.608v-.843c0-.804-.272-1.43-.818-1.88-.529-.45-1.275-.675-2.237-.675-.85 0-1.555.193-2.116.579-.546.37-.882.867-1.01 1.494h-1.973c.144-1.205.673-2.145 1.587-2.82.93-.674 2.133-1.012 3.609-1.012 1.571 0 2.782.386 3.631 1.157.866.755 1.3 1.847 1.3 3.277v5.301c0 .595.272.892.818.892h.601zm-3.392-3.807h-3.8c-1.828 0-2.742.682-2.742 2.048 0 .61.24 1.1.721 1.47.481.37 1.13.554 1.949.554 1.202 0 2.148-.313 2.838-.94.69-.642 1.034-1.486 1.034-2.53v-.602zM112.725 2c.369 0 .674.12.914.361s.361.547.361.916c0 .37-.12.675-.361.916-.24.24-.545.361-.914.361s-.674-.12-.914-.361-.361-.546-.361-.916.12-.675.361-.916c.24-.24.545-.361.914-.361zm-.986 4.747h1.972v12.29h-1.972V6.746z"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
d: "M94.83 17.165a1.881 1.881 0 01-1.89 1.871 1.88 1.88 0 01-1.89-1.871 1.88 1.88 0 011.89-1.871c1.044 0 1.89.838 1.89 1.87z"
|
|
35
|
+
})]
|
|
36
|
+
})]
|
|
37
|
+
}));
|
|
38
|
+
});
|
|
39
|
+
export default Icon;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import BrandColor from './components/BrandColor';
|
|
3
|
+
import BrandMono from './components/BrandMono';
|
|
4
|
+
import Color from './components/Color';
|
|
5
|
+
import Combine from './components/Combine';
|
|
6
|
+
import Mono from './components/Mono';
|
|
7
|
+
import Text from './components/Text';
|
|
8
|
+
export type CompoundedIcon = typeof Mono & {
|
|
9
|
+
Avatar: typeof Avatar;
|
|
10
|
+
Brand: typeof BrandMono;
|
|
11
|
+
BrandColor: typeof BrandColor;
|
|
12
|
+
Color: typeof Color;
|
|
13
|
+
Combine: typeof Combine;
|
|
14
|
+
Text: typeof Text;
|
|
15
|
+
colorPrimary: string;
|
|
16
|
+
title: string;
|
|
17
|
+
};
|
|
18
|
+
declare const Icons: CompoundedIcon;
|
|
19
|
+
export default Icons;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import BrandColor from "./components/BrandColor";
|
|
3
|
+
import BrandMono from "./components/BrandMono";
|
|
4
|
+
import Color from "./components/Color";
|
|
5
|
+
import Combine from "./components/Combine";
|
|
6
|
+
import Mono from "./components/Mono";
|
|
7
|
+
import Text from "./components/Text";
|
|
8
|
+
import { 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.Brand = BrandMono;
|
|
15
|
+
Icons.BrandColor = BrandColor;
|
|
16
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
17
|
+
Icons.title = TITLE;
|
|
18
|
+
export default Icons;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["background"];
|
|
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
|
+
import { memo } from 'react';
|
|
7
|
+
import IconAvatar from "../../IconAvatar";
|
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "../style";
|
|
9
|
+
import Mono from "./Mono";
|
|
10
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
11
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
12
|
+
var background = _ref.background,
|
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
14
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
|
15
|
+
Icon: Mono,
|
|
16
|
+
"aria-label": TITLE,
|
|
17
|
+
background: background || COLOR_PRIMARY,
|
|
18
|
+
color: '#fff',
|
|
19
|
+
iconMultiple: 0.6
|
|
20
|
+
}, rest));
|
|
21
|
+
});
|
|
22
|
+
export default Avatar;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 24 24",
|
|
25
|
+
width: size,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M9.325 15.022h14.672V22H0v-6.978h6.746l9.29-5.044H0V3h23.997v6.978z"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
d: "M.001 3h15.954v6.978H.001z",
|
|
35
|
+
fill: "#6300FF"
|
|
36
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
37
|
+
d: "M9.4 15.022H24V22H9.4z",
|
|
38
|
+
fill: "#F40"
|
|
39
|
+
})]
|
|
40
|
+
})]
|
|
41
|
+
}));
|
|
42
|
+
});
|
|
43
|
+
export default Icon;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { type IconCombineProps } from "../../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,26 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["type"];
|
|
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
|
+
import { memo } from 'react';
|
|
7
|
+
import IconCombine from "../../IconCombine";
|
|
8
|
+
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
|
9
|
+
import Color from "./Color";
|
|
10
|
+
import Mono from "./Mono";
|
|
11
|
+
import Text from "./Text";
|
|
12
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
14
|
+
var _ref$type = _ref.type,
|
|
15
|
+
type = _ref$type === void 0 ? 'mono' : _ref$type,
|
|
16
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
17
|
+
var Icon = type === 'color' ? Color : Mono;
|
|
18
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
19
|
+
Icon: Icon,
|
|
20
|
+
Text: Text,
|
|
21
|
+
"aria-label": TITLE,
|
|
22
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
23
|
+
textMultiple: TEXT_MULTIPLE
|
|
24
|
+
}, rest));
|
|
25
|
+
});
|
|
26
|
+
export default Combine;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 24 24",
|
|
25
|
+
width: size,
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
31
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M23.997 3v6.978L9.325 15.022H9.4V22l14.596-.001L0 22v-6.978h6.746l9.29-5.044h-.081V3h8.042z"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
d: "M.001 3h16.954v6.978H.001zM8.4 15.022H24V22H8.4z",
|
|
35
|
+
opacity: ".5"
|
|
36
|
+
})]
|
|
37
|
+
})]
|
|
38
|
+
}));
|
|
39
|
+
});
|
|
40
|
+
export default Icon;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
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
|
+
import { forwardRef } from 'react';
|
|
7
|
+
import { TITLE } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
10
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
11
|
+
var _ref$size = _ref.size,
|
|
12
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
13
|
+
style = _ref.style,
|
|
14
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
15
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
16
|
+
fill: "currentColor",
|
|
17
|
+
fillRule: "evenodd",
|
|
18
|
+
height: size,
|
|
19
|
+
ref: ref,
|
|
20
|
+
style: _objectSpread({
|
|
21
|
+
flex: 'none',
|
|
22
|
+
lineHeight: 1,
|
|
23
|
+
width: 'fit-content'
|
|
24
|
+
}, style),
|
|
25
|
+
viewBox: "0 0 92 24",
|
|
26
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
27
|
+
}, rest), {}, {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
29
|
+
children: TITLE
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M28.395 7.918c1.344 1.54 1.987 3.899 1.928 7.076H19.959a4.202 4.202 0 001 2.87 3.126 3.126 0 002.385 1.026 2.53 2.53 0 001.634-.53 3.283 3.283 0 001.002-1.713l4.121.694a6.778 6.778 0 01-2.509 3.46 7.361 7.361 0 01-3.987 1.193l-.304-.005c-2.718 0-4.73-.89-6.034-2.671a8.99 8.99 0 01-1.545-5.401 8.67 8.67 0 012.031-6.102 6.681 6.681 0 015.137-2.207 6.93 6.93 0 015.505 2.31zM15.5 5.963v2.941l-5.976 6.907L7.418 18.1l1.24-.07c.389-.02.666-.03.834-.033h6.464v3.644L2 21.635v-3.231l5.858-6.744.763-.867a38.499 38.499 0 011.372-1.48l-.605.029c-.372.014-.803.024-1.294.03l-5.52.03V5.963H15.5zm7.64 2.818a2.87 2.87 0 00-2.238.989 3.834 3.834 0 00-.868 2.689l6.182-.004a4 4 0 00-.928-2.737 2.846 2.846 0 00-2.148-.937zm11.836 1.963l-3.753-.68a5.862 5.862 0 012.179-3.36 7.955 7.955 0 014.592-1.093 9.878 9.878 0 014.122.657 4.117 4.117 0 011.906 1.668 8.575 8.575 0 01.552 3.712l-.044 4.84c-.026 1.02.04 2.04.198 3.048a8.9 8.9 0 00.744 2.101h-4.093l-.098-.269c-.07-.2-.147-.445-.233-.732l-.177-.604a2.298 2.298 0 00-.036-.107 7.458 7.458 0 01-2.263 1.55 6.478 6.478 0 01-2.575.517 5.318 5.318 0 01-3.805-1.314 4.375 4.375 0 01-1.392-3.32 4.467 4.467 0 01.633-2.37 4.136 4.136 0 011.774-1.596 13.826 13.826 0 013.29-.967 22.453 22.453 0 004.018-1.018v-.414a2.151 2.151 0 00-.586-1.705 3.52 3.52 0 00-2.223-.509 2.954 2.954 0 00-1.722.435c-.432.35-.758.81-.945 1.332l-.063.198zm5.531 3.36c-.827.254-1.666.466-2.514.635a7.569 7.569 0 00-2.252.723 1.731 1.731 0 00-.81 1.461c-.004.57.231 1.117.648 1.505a2.26 2.26 0 001.649.634 3.573 3.573 0 002.134-.737c.473-.334.82-.817.987-1.372a8.22 8.22 0 00.161-2.022l-.003-.826zm6.157 7.531V0H50.8v7.792a5.847 5.847 0 014.534-2.185 6.088 6.088 0 014.725 2.074c1.247 1.382 1.87 3.368 1.87 5.955 0 2.555-.579 4.55-1.736 5.983l-.17.2a5.945 5.945 0 01-4.63 2.17 5.715 5.715 0 01-2.642-.672 6.32 6.32 0 01-2.244-1.985v2.303h-3.843zm4.107-8.175a6.679 6.679 0 00.765 3.601 3.267 3.267 0 002.855 1.653 2.923 2.923 0 002.334-1.177 5.785 5.785 0 00.963-3.697 6.134 6.134 0 00-.971-3.873 3.072 3.072 0 00-2.487-1.189 3.114 3.114 0 00-2.474 1.16 5.329 5.329 0 00-.999 3.27l.014.252zm22.964 8.175V19.29a6.026 6.026 0 01-2.244 1.978 6.28 6.28 0 01-2.934.724 5.728 5.728 0 01-2.826-.694 4.089 4.089 0 01-1.81-1.948 8.716 8.716 0 01-.56-3.468V5.966h4.136v7.202a20.025 20.025 0 00.228 4.05c.137.477.43.893.831 1.182.451.304.987.457 1.53.435a3.248 3.248 0 001.9-.583 2.964 2.964 0 001.148-1.446c.28-1.391.385-2.812.31-4.229V5.966h4.135v15.673l-3.844-.004zm10.275 0h-4.135V5.963h3.841V8.19a6.69 6.69 0 011.774-2.08 3.256 3.256 0 011.788-.505A5.24 5.24 0 0190 6.39l-1.28 3.613a3.627 3.627 0 00-1.943-.68 2.291 2.291 0 00-1.472.48 3.28 3.28 0 00-.95 1.735 24.695 24.695 0 00-.346 5.253v4.845z"
|
|
32
|
+
})]
|
|
33
|
+
}));
|
|
34
|
+
});
|
|
35
|
+
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;
|
package/es/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ export { default as HuggingFace, type CompoundedIcon as HuggingFaceProps } from
|
|
|
29
29
|
export { default as Hunyuan, type CompoundedIcon as HunyuanProps } from './Hunyuan';
|
|
30
30
|
export { default as IconAvatar, type IconAvatarProps } from './IconAvatar';
|
|
31
31
|
export { default as IconCombine, type IconCombineProps } from './IconCombine';
|
|
32
|
+
export { default as Langfuse, type CompoundedIcon as LangfuseProps } from './Langfuse';
|
|
32
33
|
export { default as LLaVA, type CompoundedIcon as LLaVAProps } from './LLaVA';
|
|
33
34
|
export { default as Meta, type CompoundedIcon as MetaProps } from './Meta';
|
|
34
35
|
export { default as Midjourney, type CompoundedIcon as MidjourneyProps } from './Midjourney';
|
|
@@ -45,11 +46,14 @@ export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingy
|
|
|
45
46
|
export { default as Replicate, type CompoundedIcon as ReplicateProps } from './Replicate';
|
|
46
47
|
export { default as Spark, type CompoundedIcon as SparkProps } from './Spark';
|
|
47
48
|
export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability';
|
|
49
|
+
export { default as Suno, type CompoundedIcon as SunoProps } from './Suno';
|
|
48
50
|
export { default as Tencent, type CompoundedIcon as TencentProps } from './Tencent';
|
|
51
|
+
export { default as Together, type CompoundedIcon as TogetherProps } from './Together';
|
|
49
52
|
export { default as Tongyi, type CompoundedIcon as TongyiProps } from './Tongyi';
|
|
50
53
|
export type { IconType } from './types';
|
|
51
54
|
export { default as Wenxin, type CompoundedIcon as WenxinProps } from './Wenxin';
|
|
52
55
|
export { default as WorkersAI, type CompoundedIcon as WorkersAIProps } from './WorkersAI';
|
|
53
56
|
export { default as Yi, type CompoundedIcon as YiProps } from './Yi';
|
|
57
|
+
export { default as Zeabur, type CompoundedIcon as ZeaburProps } from './Zeabur';
|
|
54
58
|
export { default as ZeroOne, type CompoundedIcon as ZeroOneProps } from './ZeroOne';
|
|
55
59
|
export { default as Zhipu, type CompoundedIcon as ZhipuProps } from './Zhipu';
|
package/es/index.js
CHANGED
|
@@ -29,6 +29,7 @@ export { default as HuggingFace } from "./HuggingFace";
|
|
|
29
29
|
export { default as Hunyuan } from "./Hunyuan";
|
|
30
30
|
export { default as IconAvatar } from "./IconAvatar";
|
|
31
31
|
export { default as IconCombine } from "./IconCombine";
|
|
32
|
+
export { default as Langfuse } from "./Langfuse";
|
|
32
33
|
export { default as LLaVA } from "./LLaVA";
|
|
33
34
|
export { default as Meta } from "./Meta";
|
|
34
35
|
export { default as Midjourney } from "./Midjourney";
|
|
@@ -45,10 +46,13 @@ export { default as Qingyan } from "./Qingyan";
|
|
|
45
46
|
export { default as Replicate } from "./Replicate";
|
|
46
47
|
export { default as Spark } from "./Spark";
|
|
47
48
|
export { default as Stability } from "./Stability";
|
|
49
|
+
export { default as Suno } from "./Suno";
|
|
48
50
|
export { default as Tencent } from "./Tencent";
|
|
51
|
+
export { default as Together } from "./Together";
|
|
49
52
|
export { default as Tongyi } from "./Tongyi";
|
|
50
53
|
export { default as Wenxin } from "./Wenxin";
|
|
51
54
|
export { default as WorkersAI } from "./WorkersAI";
|
|
52
55
|
export { default as Yi } from "./Yi";
|
|
56
|
+
export { default as Zeabur } from "./Zeabur";
|
|
53
57
|
export { default as ZeroOne } from "./ZeroOne";
|
|
54
58
|
export { default as Zhipu } from "./Zhipu";
|