@lobehub/ui 1.143.1 → 1.143.3
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/es/brand/LobeChat.js +15 -26
- package/es/brand/LobeHub.js +15 -27
- package/es/brand/components/Logo3d.d.ts +7 -0
- package/es/brand/components/Logo3d.js +25 -0
- package/es/brand/components/LogoFlat.d.ts +6 -0
- package/es/brand/components/LogoFlat.js +69 -0
- package/es/brand/components/LogoMono.d.ts +6 -0
- package/es/brand/components/LogoMono.js +73 -0
- package/es/brand/index.d.ts +5 -0
- package/es/brand/index.js +5 -0
- package/es/brand/style.d.ts +0 -5
- package/es/brand/style.js +0 -5
- package/package.json +1 -1
package/es/brand/LobeChat.js
CHANGED
|
@@ -6,11 +6,12 @@ var _excluded = ["type", "size", "style", "extra", "className"];
|
|
|
6
6
|
import { useTheme } from 'antd-style';
|
|
7
7
|
import { memo } from 'react';
|
|
8
8
|
import { Flexbox } from 'react-layout-kit';
|
|
9
|
-
import { useCdnFn } from "../ConfigProvider";
|
|
10
|
-
import Img from "../Img";
|
|
11
9
|
import Divider from "./components/Divider";
|
|
12
10
|
import LogoText from "./components/LobeChatText";
|
|
13
|
-
import
|
|
11
|
+
import Logo3d from "./components/Logo3d";
|
|
12
|
+
import LogoFlat from "./components/LogoFlat";
|
|
13
|
+
import LogoMono from "./components/LogoMono";
|
|
14
|
+
import { useStyles } from "./style";
|
|
14
15
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
16
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
16
17
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
@@ -23,7 +24,6 @@ var LobeChat = /*#__PURE__*/memo(function (_ref) {
|
|
|
23
24
|
extra = _ref.extra,
|
|
24
25
|
className = _ref.className,
|
|
25
26
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
26
|
-
var genCdnUrl = useCdnFn();
|
|
27
27
|
var theme = useTheme();
|
|
28
28
|
var _useStyles = useStyles(),
|
|
29
29
|
styles = _useStyles.styles;
|
|
@@ -31,34 +31,25 @@ var LobeChat = /*#__PURE__*/memo(function (_ref) {
|
|
|
31
31
|
switch (type) {
|
|
32
32
|
case '3d':
|
|
33
33
|
{
|
|
34
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
35
|
-
alt:
|
|
36
|
-
|
|
37
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-3d.webp',
|
|
38
|
-
style: style,
|
|
39
|
-
width: size
|
|
34
|
+
logoComponent = /*#__PURE__*/_jsx(Logo3d, _objectSpread({
|
|
35
|
+
alt: 'LobeChat',
|
|
36
|
+
size: size
|
|
40
37
|
}, rest));
|
|
41
38
|
break;
|
|
42
39
|
}
|
|
43
40
|
case 'flat':
|
|
44
41
|
{
|
|
45
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-flat.svg',
|
|
49
|
-
style: style,
|
|
50
|
-
width: size
|
|
42
|
+
logoComponent = /*#__PURE__*/_jsx(LogoFlat, {
|
|
43
|
+
size: size,
|
|
44
|
+
style: style
|
|
51
45
|
});
|
|
52
46
|
break;
|
|
53
47
|
}
|
|
54
48
|
case 'mono':
|
|
55
49
|
{
|
|
56
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-mono.svg',
|
|
60
|
-
style: style,
|
|
61
|
-
width: size
|
|
50
|
+
logoComponent = /*#__PURE__*/_jsx(LogoMono, {
|
|
51
|
+
size: size,
|
|
52
|
+
style: style
|
|
62
53
|
});
|
|
63
54
|
break;
|
|
64
55
|
}
|
|
@@ -74,11 +65,9 @@ var LobeChat = /*#__PURE__*/memo(function (_ref) {
|
|
|
74
65
|
case 'combine':
|
|
75
66
|
{
|
|
76
67
|
logoComponent = /*#__PURE__*/_jsxs(_Fragment, {
|
|
77
|
-
children: [/*#__PURE__*/_jsx(
|
|
68
|
+
children: [/*#__PURE__*/_jsx(Logo3d, {
|
|
78
69
|
alt: "LobeChat",
|
|
79
|
-
|
|
80
|
-
src: genCdnUrl(LOGO_3D),
|
|
81
|
-
width: size
|
|
70
|
+
size: size
|
|
82
71
|
}), /*#__PURE__*/_jsx(LogoText, {
|
|
83
72
|
size: size,
|
|
84
73
|
style: {
|
package/es/brand/LobeHub.js
CHANGED
|
@@ -6,11 +6,12 @@ var _excluded = ["type", "size", "style", "extra", "className"];
|
|
|
6
6
|
import { useTheme } from 'antd-style';
|
|
7
7
|
import { memo } from 'react';
|
|
8
8
|
import { Flexbox } from 'react-layout-kit';
|
|
9
|
-
import { useCdnFn } from "../ConfigProvider";
|
|
10
|
-
import Img from "../Img";
|
|
11
9
|
import Divider from "./components/Divider";
|
|
12
10
|
import LogoText from "./components/LobeHubText";
|
|
13
|
-
import
|
|
11
|
+
import Logo3d from "./components/Logo3d";
|
|
12
|
+
import LogoFlat from "./components/LogoFlat";
|
|
13
|
+
import LogoMono from "./components/LogoMono";
|
|
14
|
+
import { useStyles } from "./style";
|
|
14
15
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
15
16
|
import { Fragment as _Fragment } from "react/jsx-runtime";
|
|
16
17
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
@@ -23,7 +24,6 @@ var LobeHub = /*#__PURE__*/memo(function (_ref) {
|
|
|
23
24
|
extra = _ref.extra,
|
|
24
25
|
className = _ref.className,
|
|
25
26
|
rest = _objectWithoutProperties(_ref, _excluded);
|
|
26
|
-
var genCdnUrl = useCdnFn();
|
|
27
27
|
var theme = useTheme();
|
|
28
28
|
var _useStyles = useStyles(),
|
|
29
29
|
styles = _useStyles.styles;
|
|
@@ -31,34 +31,24 @@ var LobeHub = /*#__PURE__*/memo(function (_ref) {
|
|
|
31
31
|
switch (type) {
|
|
32
32
|
case '3d':
|
|
33
33
|
{
|
|
34
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
35
|
-
|
|
36
|
-
height: size,
|
|
37
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-3d.webp',
|
|
38
|
-
style: style,
|
|
39
|
-
width: size
|
|
34
|
+
logoComponent = /*#__PURE__*/_jsx(Logo3d, _objectSpread({
|
|
35
|
+
size: size
|
|
40
36
|
}, rest));
|
|
41
37
|
break;
|
|
42
38
|
}
|
|
43
39
|
case 'flat':
|
|
44
40
|
{
|
|
45
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-flat.svg',
|
|
49
|
-
style: style,
|
|
50
|
-
width: size
|
|
41
|
+
logoComponent = /*#__PURE__*/_jsx(LogoFlat, {
|
|
42
|
+
size: size,
|
|
43
|
+
style: style
|
|
51
44
|
});
|
|
52
45
|
break;
|
|
53
46
|
}
|
|
54
47
|
case 'mono':
|
|
55
48
|
{
|
|
56
|
-
logoComponent = /*#__PURE__*/_jsx(
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
src: 'https://hub-apac-1.lobeobjects.space/logo-mono.svg',
|
|
60
|
-
style: style,
|
|
61
|
-
width: size
|
|
49
|
+
logoComponent = /*#__PURE__*/_jsx(LogoMono, {
|
|
50
|
+
size: size,
|
|
51
|
+
style: style
|
|
62
52
|
});
|
|
63
53
|
break;
|
|
64
54
|
}
|
|
@@ -74,11 +64,9 @@ var LobeHub = /*#__PURE__*/memo(function (_ref) {
|
|
|
74
64
|
case 'combine':
|
|
75
65
|
{
|
|
76
66
|
logoComponent = /*#__PURE__*/_jsxs(_Fragment, {
|
|
77
|
-
children: [/*#__PURE__*/_jsx(
|
|
78
|
-
alt: "
|
|
79
|
-
|
|
80
|
-
src: genCdnUrl(LOGO_3D),
|
|
81
|
-
width: size
|
|
67
|
+
children: [/*#__PURE__*/_jsx(Logo3d, {
|
|
68
|
+
alt: "LobeChat",
|
|
69
|
+
size: size
|
|
82
70
|
}), /*#__PURE__*/_jsx(LogoText, {
|
|
83
71
|
size: size,
|
|
84
72
|
style: {
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { ImageProps } from 'antd';
|
|
3
|
+
import { ImgProps } from "../../types";
|
|
4
|
+
declare const Logo3d: import("react").NamedExoticComponent<Omit<ImgProps & ImageProps, "height" | "width" | "src"> & {
|
|
5
|
+
size?: string | number | undefined;
|
|
6
|
+
}>;
|
|
7
|
+
export default Logo3d;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style", "alt"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import { useCdnFn } from "../../ConfigProvider";
|
|
6
|
+
import Img from "../../Img";
|
|
7
|
+
import { LOGO_3D } from "../style";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
var Logo3d = /*#__PURE__*/memo(function (_ref) {
|
|
10
|
+
var _ref$size = _ref.size,
|
|
11
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
12
|
+
style = _ref.style,
|
|
13
|
+
_ref$alt = _ref.alt,
|
|
14
|
+
alt = _ref$alt === void 0 ? 'LobeHub' : _ref$alt,
|
|
15
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
16
|
+
var genCdnUrl = useCdnFn();
|
|
17
|
+
return /*#__PURE__*/_jsx(Img, _objectSpread({
|
|
18
|
+
alt: alt,
|
|
19
|
+
height: size,
|
|
20
|
+
src: genCdnUrl(LOGO_3D),
|
|
21
|
+
style: style,
|
|
22
|
+
width: size
|
|
23
|
+
}, rest));
|
|
24
|
+
});
|
|
25
|
+
export default Logo3d;
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
+
var LogoFlat = /*#__PURE__*/memo(function (_ref) {
|
|
8
|
+
var _ref$size = _ref.size,
|
|
9
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
10
|
+
style = _ref.style,
|
|
11
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
12
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
13
|
+
height: size,
|
|
14
|
+
style: _objectSpread({
|
|
15
|
+
flex: 'none',
|
|
16
|
+
lineHeight: 1
|
|
17
|
+
}, style),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
width: size,
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, rest), {}, {
|
|
22
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
23
|
+
children: "LobeHub"
|
|
24
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
25
|
+
d: "M22.951 13.475C22.951 19.672 18.082 24 11.975 24 5.87 24 1 19.59 1 13.393c0-1.843.41-2.633 2.58-2.922 3.89-.518 5.942-.313 8.396-.313 2.453 0 5.942-.104 8.395.313 2.007.342 2.457.71 2.58 3.004z",
|
|
26
|
+
fill: "#FFB02E"
|
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
28
|
+
d: "M11.955 19.209c-2.314 0-2.928.286-2.928.286s.287 2.212 2.928 2.212c2.642 0 2.928-2.212 2.928-2.212s-.614-.287-2.928-.287z",
|
|
29
|
+
fill: "#972021"
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M21.15 11.51c0 .52-4.09.941-9.133.941-5.044 0-9.133-.422-9.133-.942s4.089-.942 9.133-.942c5.043 0 9.132.422 9.132.942z",
|
|
32
|
+
fill: "#FF6723"
|
|
33
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
34
|
+
d: "M9.969 12.451c.052-1.226-.04-1.867-.45-2.985 0 0 .777-.987 2.21-.987 1.434 0 2.458.25 2.458.25-.248 1.376-.26 2.206-.205 3.722H9.97z",
|
|
35
|
+
fill: "#FEE064"
|
|
36
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
37
|
+
d: "M8.633 18.535c1.207-.58 2.032-1.762 2.032-3.217 0-2.081-1.687-3.932-3.768-3.932-2.08 0-3.85 1.605-3.85 3.686 0 1.146.537 2.196 1.365 2.91a4.582 4.582 0 011.625-.289c1.04 0 1.972.327 2.596.842zM15.318 18.535c-1.207-.58-2.032-1.762-2.032-3.217 0-2.081 1.687-3.932 3.768-3.932 2.08 0 3.85 1.605 3.85 3.686 0 1.146-.537 2.196-1.365 2.91a4.582 4.582 0 00-1.625-.289c-1.04 0-1.972.327-2.596.842z",
|
|
38
|
+
fill: "#fff"
|
|
39
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
40
|
+
d: "M7.143 17.447a2.293 2.293 0 100-4.586 2.293 2.293 0 000 4.586zM16.808 17.447a2.293 2.293 0 110-4.586 2.293 2.293 0 010 4.586z",
|
|
41
|
+
fill: "#270C36"
|
|
42
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
43
|
+
d: "M13.04.902c-1.149 0-1.597-.942-3.358-.9-1.916 0-2.785 1.064-3.727 1.883-.16.14-.942.574-1.31.737-1.612.717-2.826 1.761-2.826 3.318 0 1.696 1.43 3.071 3.194 3.071.29 0 .57-.037.838-.106.712.863 1.816 1.364 3.053 1.417 1.925.082 2.54-1.25 3.645-.697.758.38 1.133.697 2.334.697 1.402 0 2.053-.43 2.457-.901.738-.86 1.874-.328 2.58-.328 1.538 0 2.785-1.192 2.785-2.662s-1.246-2.662-2.784-2.662c-.422 0-1.217.104-1.393-.573C18.241 2.09 16.878.82 14.924.82c-.763 0-1.449.082-1.884.082z",
|
|
44
|
+
fill: "#A68AE2"
|
|
45
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
46
|
+
d: "M5.669 1.025a.778.778 0 11-1.557 0 .778.778 0 011.557 0z",
|
|
47
|
+
fill: "#7B61FF"
|
|
48
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
49
|
+
d: "M4.686 8.192a1.31 1.31 0 11-2.621 0 1.31 1.31 0 012.62 0z",
|
|
50
|
+
fill: "#F24630"
|
|
51
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
52
|
+
d: "M21.968 3.4a1.27 1.27 0 11-2.539 0 1.27 1.27 0 012.54 0z",
|
|
53
|
+
fill: "#7CEE1D"
|
|
54
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
55
|
+
d: "M9.701 19.34c.45-.068 1.163-.131 2.254-.131 1 0 1.683.053 2.136.114-.127.48-1.062.664-2.197.664-1.122 0-2.05-.18-2.193-.647z",
|
|
56
|
+
fill: "#fff"
|
|
57
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
58
|
+
d: "M11.976 23.099c1.646 0 1.909-1.678 1.96-2.098.039-.34-.137-.511-.33-.627-.191-.116-.768-.224-1.63-.224-.862 0-1.435.108-1.63.224-.196.116-.373.288-.33.627.051.42.314 2.098 1.96 2.098z",
|
|
59
|
+
fill: "#F24630"
|
|
60
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
61
|
+
d: "M12.934 9.972c-.47-.319-1.143-.348-1.621-.043a4.086 4.086 0 01-2.204.638c-2.217 0-4.014-1.742-4.014-3.89 0-2.149 1.797-3.89 4.014-3.89 1.116 0 2.126.44 2.853 1.154.406.397 1.072.51 1.597.295.407-.167.855-.259 1.324-.259 1.878 0 3.4 1.475 3.4 3.295 0 1.82-1.523 3.295-3.4 3.295-.725 0-1.397-.22-1.95-.595z",
|
|
62
|
+
fill: "#F4B8CA"
|
|
63
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
64
|
+
d: "M16.808 8.07a1.106 1.106 0 11-2.211 0 1.106 1.106 0 012.211 0z",
|
|
65
|
+
fill: "#0C74FF"
|
|
66
|
+
})]
|
|
67
|
+
}));
|
|
68
|
+
});
|
|
69
|
+
export default LogoFlat;
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["size", "style"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
6
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
7
|
+
var LogoMono = /*#__PURE__*/memo(function (_ref) {
|
|
8
|
+
var _ref$size = _ref.size,
|
|
9
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
10
|
+
style = _ref.style,
|
|
11
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
12
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
13
|
+
height: size,
|
|
14
|
+
style: _objectSpread({
|
|
15
|
+
flex: 'none',
|
|
16
|
+
lineHeight: 1
|
|
17
|
+
}, style),
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
width: size,
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, rest), {}, {
|
|
22
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
23
|
+
children: "LobeHub"
|
|
24
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
25
|
+
d: "M22.951 13.475C22.951 19.672 18.082 24 11.975 24 5.87 24 1 19.59 1 13.393c0-1.843.41-2.633 2.58-2.922 3.89-.518 5.942-.313 8.396-.313 2.453 0 5.942-.104 8.395.313 2.007.342 2.457.71 2.58 3.004z",
|
|
26
|
+
fill: "#BFBFBF"
|
|
27
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
28
|
+
d: "M11.955 19.209c-2.314 0-2.928.286-2.928.286s.287 2.212 2.928 2.212c2.642 0 2.928-2.212 2.928-2.212s-.614-.287-2.928-.287z",
|
|
29
|
+
fill: "#4F4F4F"
|
|
30
|
+
}), /*#__PURE__*/_jsx("ellipse", {
|
|
31
|
+
cx: "12.017",
|
|
32
|
+
cy: "11.509",
|
|
33
|
+
fill: "#838383",
|
|
34
|
+
rx: "9.133",
|
|
35
|
+
ry: ".942"
|
|
36
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
37
|
+
d: "M9.969 12.451c.052-1.226-.04-1.867-.45-2.985 0 0 .777-.987 2.21-.987 1.434 0 2.458.25 2.458.25-.248 1.376-.26 2.206-.205 3.722H9.97z",
|
|
38
|
+
fill: "#E1E1E1"
|
|
39
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
40
|
+
d: "M8.633 18.535c1.207-.58 2.032-1.762 2.032-3.217 0-2.081-1.687-3.932-3.768-3.932-2.08 0-3.85 1.605-3.85 3.686 0 1.146.537 2.196 1.365 2.91a4.582 4.582 0 011.625-.289c1.04 0 1.972.327 2.596.842zM15.318 18.535c-1.207-.58-2.032-1.762-2.032-3.217 0-2.081 1.687-3.932 3.768-3.932 2.08 0 3.85 1.605 3.85 3.686 0 1.146-.537 2.196-1.365 2.91a4.582 4.582 0 00-1.625-.289c-1.04 0-1.972.327-2.596.842z",
|
|
41
|
+
fill: "#fff"
|
|
42
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
43
|
+
d: "M16.808 17.447a2.293 2.293 0 110-4.586 2.293 2.293 0 010 4.586zM7.143 17.447a2.293 2.293 0 100-4.586 2.293 2.293 0 000 4.586z",
|
|
44
|
+
fill: "#1A1A1A"
|
|
45
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
46
|
+
d: "M13.04.902c-1.149 0-1.597-.942-3.358-.9-1.916 0-2.785 1.064-3.727 1.883-.16.14-.942.574-1.31.737-1.612.717-2.826 1.761-2.826 3.318 0 1.696 1.43 3.071 3.194 3.071.29 0 .57-.037.838-.106.712.863 1.816 1.364 3.053 1.417 1.925.082 2.54-1.25 3.645-.697.758.38 1.133.697 2.334.697 1.402 0 2.053-.43 2.457-.901.738-.86 1.874-.328 2.58-.328 1.538 0 2.785-1.192 2.785-2.662s-1.246-2.662-2.784-2.662c-.422 0-1.217.104-1.393-.573C18.241 2.09 16.878.82 14.924.82c-.763 0-1.449.082-1.884.082z",
|
|
47
|
+
fill: "#838383"
|
|
48
|
+
}), /*#__PURE__*/_jsx("circle", {
|
|
49
|
+
cx: "4.891",
|
|
50
|
+
cy: "1.025",
|
|
51
|
+
fill: "#838383",
|
|
52
|
+
r: ".778"
|
|
53
|
+
}), /*#__PURE__*/_jsx("circle", {
|
|
54
|
+
cx: "20.699",
|
|
55
|
+
cy: "3.4",
|
|
56
|
+
fill: "#C8C8C8",
|
|
57
|
+
r: "1.27"
|
|
58
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
59
|
+
d: "M9.701 19.34c.45-.068 1.163-.131 2.254-.131 1 0 1.683.053 2.136.114-.127.48-1.062.664-2.197.664-1.122 0-2.05-.18-2.193-.647z",
|
|
60
|
+
fill: "#fff"
|
|
61
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
62
|
+
d: "M11.976 23.099c1.646 0 1.909-1.678 1.96-2.098.039-.34-.137-.511-.33-.627-.191-.116-.768-.224-1.63-.224-.862 0-1.435.108-1.63.224-.196.116-.373.288-.33.627.051.42.314 2.098 1.96 2.098z",
|
|
63
|
+
fill: "#838383"
|
|
64
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
65
|
+
d: "M12.934 9.972c-.47-.319-1.143-.348-1.621-.043a4.086 4.086 0 01-2.204.638c-2.217 0-4.014-1.742-4.014-3.89 0-2.149 1.797-3.89 4.014-3.89 1.116 0 2.126.44 2.853 1.154.406.397 1.072.51 1.597.295.407-.167.855-.259 1.324-.259 1.878 0 3.4 1.475 3.4 3.295 0 1.82-1.523 3.295-3.4 3.295-.725 0-1.397-.22-1.95-.595z",
|
|
66
|
+
fill: "#C8C8C8"
|
|
67
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
68
|
+
d: "M3.375 9.502a1.31 1.31 0 100-2.62 1.31 1.31 0 000 2.62zM15.702 9.175a1.106 1.106 0 100-2.212 1.106 1.106 0 000 2.212z",
|
|
69
|
+
fill: "#4F4F4F"
|
|
70
|
+
})]
|
|
71
|
+
}));
|
|
72
|
+
});
|
|
73
|
+
export default LogoMono;
|
package/es/brand/index.d.ts
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
export { default as LobeChatText } from './components/LobeChatText';
|
|
2
|
+
export { default as LobeHubText } from './components/LobeHubText';
|
|
3
|
+
export { default as Logo3d } from './components/Logo3d';
|
|
4
|
+
export { default as LogoFlat } from './components/LogoFlat';
|
|
5
|
+
export { default as LogoMono } from './components/LogoMono';
|
|
1
6
|
export { default as LobeChat, type LobeChatProps } from './LobeChat';
|
|
2
7
|
export { default as LobeHub, type LobeHubProps } from './LobeHub';
|
package/es/brand/index.js
CHANGED
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
export { default as LobeChatText } from "./components/LobeChatText";
|
|
2
|
+
export { default as LobeHubText } from "./components/LobeHubText";
|
|
3
|
+
export { default as Logo3d } from "./components/Logo3d";
|
|
4
|
+
export { default as LogoFlat } from "./components/LogoFlat";
|
|
5
|
+
export { default as LogoMono } from "./components/LogoMono";
|
|
1
6
|
export { default as LobeChat } from "./LobeChat";
|
|
2
7
|
export { default as LobeHub } from "./LobeHub";
|
package/es/brand/style.d.ts
CHANGED
|
@@ -3,11 +3,6 @@ export declare const LOGO_3D: {
|
|
|
3
3
|
pkg: string;
|
|
4
4
|
version: string;
|
|
5
5
|
};
|
|
6
|
-
export declare const LOGO_FLAT: {
|
|
7
|
-
path: string;
|
|
8
|
-
pkg: string;
|
|
9
|
-
version: string;
|
|
10
|
-
};
|
|
11
6
|
export declare const useStyles: (props?: unknown) => import("antd-style").ReturnStyles<{
|
|
12
7
|
extraTitle: import("antd-style").SerializedStyles;
|
|
13
8
|
}>;
|
package/es/brand/style.js
CHANGED
|
@@ -6,11 +6,6 @@ export var LOGO_3D = {
|
|
|
6
6
|
pkg: '@lobehub/assets-logo',
|
|
7
7
|
version: '1.2.0'
|
|
8
8
|
};
|
|
9
|
-
export var LOGO_FLAT = {
|
|
10
|
-
path: 'assets/logo-flat.svg',
|
|
11
|
-
pkg: '@lobehub/assets-logo',
|
|
12
|
-
version: '1.2.0'
|
|
13
|
-
};
|
|
14
9
|
export var useStyles = createStyles(function (_ref) {
|
|
15
10
|
var css = _ref.css;
|
|
16
11
|
return {
|