@lobehub/icons 1.18.0 → 1.19.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 +5 -58
- package/es/Adobe/components/Avatar.d.ts +5 -0
- package/es/Adobe/components/Avatar.js +19 -0
- package/es/Adobe/components/Color.d.ts +3 -0
- package/es/Adobe/components/Color.js +35 -0
- package/es/Adobe/components/Combine.d.ts +7 -0
- package/es/Adobe/components/Combine.js +24 -0
- package/es/Adobe/components/Mono.d.ts +3 -0
- package/es/Adobe/components/Mono.js +35 -0
- package/es/Adobe/components/Text.d.ts +3 -0
- package/es/Adobe/components/Text.js +33 -0
- package/es/Adobe/index.d.ts +15 -0
- package/es/Adobe/index.js +14 -0
- package/es/Adobe/style.d.ts +4 -0
- package/es/Adobe/style.js +4 -0
- package/es/AdobeFirefly/components/Avatar.d.ts +5 -0
- package/es/AdobeFirefly/components/Avatar.js +20 -0
- package/es/AdobeFirefly/components/Color.d.ts +3 -0
- package/es/AdobeFirefly/components/Color.js +33 -0
- package/es/AdobeFirefly/components/Combine.d.ts +5 -0
- package/es/AdobeFirefly/components/Combine.js +24 -0
- package/es/AdobeFirefly/components/Mono.d.ts +3 -0
- package/es/AdobeFirefly/components/Mono.js +33 -0
- package/es/AdobeFirefly/components/Text.d.ts +3 -0
- package/es/AdobeFirefly/components/Text.js +33 -0
- package/es/AdobeFirefly/index.d.ts +15 -0
- package/es/AdobeFirefly/index.js +14 -0
- package/es/AdobeFirefly/style.d.ts +4 -0
- package/es/AdobeFirefly/style.js +4 -0
- package/es/Ai21/components/Avatar.d.ts +5 -0
- package/es/Ai21/components/Avatar.js +23 -0
- package/es/Ai21/components/Brand.d.ts +1 -0
- package/es/Ai21/components/Brand.js +1 -0
- package/es/Ai21/components/BrandColor.d.ts +3 -0
- package/es/Ai21/components/BrandColor.js +38 -0
- package/es/Ai21/components/Color.d.ts +3 -0
- package/es/Ai21/components/Color.js +52 -0
- package/es/Ai21/components/Combine.d.ts +5 -0
- package/es/Ai21/components/Combine.js +24 -0
- package/es/Ai21/components/Mono.d.ts +3 -0
- package/es/Ai21/components/Mono.js +33 -0
- package/es/Ai21/components/Text.d.ts +3 -0
- package/es/Ai21/components/Text.js +37 -0
- package/es/Ai21/index.d.ts +20 -0
- package/es/Ai21/index.js +19 -0
- package/es/Ai21/style.d.ts +5 -0
- package/es/Ai21/style.js +5 -0
- package/es/FishAudio/components/Avatar.d.ts +5 -0
- package/es/FishAudio/components/Avatar.js +19 -0
- package/es/FishAudio/components/Combine.d.ts +5 -0
- package/es/FishAudio/components/Combine.js +19 -0
- package/es/FishAudio/components/Mono.d.ts +3 -0
- package/es/FishAudio/components/Mono.js +38 -0
- package/es/FishAudio/components/Text.d.ts +3 -0
- package/es/FishAudio/components/Text.js +33 -0
- package/es/FishAudio/index.d.ts +13 -0
- package/es/FishAudio/index.js +12 -0
- package/es/FishAudio/style.d.ts +4 -0
- package/es/FishAudio/style.js +4 -0
- package/es/index.d.ts +4 -0
- package/es/index.js +4 -0
- package/package.json +9 -8
|
@@ -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,23 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["background", "size"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import IconAvatar from "../../IconAvatar";
|
|
6
|
+
import { COLOR_GRADIENT, TITLE } from "../style";
|
|
7
|
+
import Mono from "./Mono";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
10
|
+
var background = _ref.background,
|
|
11
|
+
size = _ref.size,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
|
14
|
+
Icon: Mono,
|
|
15
|
+
"aria-label": TITLE,
|
|
16
|
+
background: background || COLOR_GRADIENT,
|
|
17
|
+
iconStyle: {
|
|
18
|
+
marginLeft: -size * 0.05
|
|
19
|
+
},
|
|
20
|
+
size: size
|
|
21
|
+
}, rest));
|
|
22
|
+
});
|
|
23
|
+
export default Avatar;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './Text';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./Text";
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { TITLE } from "../style";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
height: size,
|
|
17
|
+
ref: ref,
|
|
18
|
+
style: _objectSpread({
|
|
19
|
+
flex: 'none',
|
|
20
|
+
lineHeight: 1,
|
|
21
|
+
width: 'fit-content'
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 103 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
27
|
+
children: TITLE
|
|
28
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
29
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
30
|
+
d: "M15.064 21.643l-.74-2.335H7.487l-.741 2.335H2L8.862 2.414h4.09l6.944 19.23h-4.832zM10.92 7.908L8.56 15.819h4.666l-2.305-7.911zm9.504-5.494h4.501v19.23h-4.501V2.413zm5.714 15.3a8.84 8.84 0 011.057-2.691 7.78 7.78 0 011.606-1.868 16.915 16.915 0 012.045-1.456c.567-.33 1.093-.646 1.578-.948.447-.275.874-.582 1.276-.92.348-.289.64-.638.865-1.03.214-.391.323-.832.315-1.278 0-.769-.21-1.323-.63-1.662-.447-.347-1-.526-1.565-.508A2.475 2.475 0 0030.943 6c-.467.43-.7 1.15-.7 2.156h-4.42a6.493 6.493 0 01.454-2.445c.294-.74.749-1.406 1.33-1.95a6.26 6.26 0 012.142-1.291A8.363 8.363 0 0132.657 2a9.048 9.048 0 012.512.344c.76.21 1.472.565 2.1 1.044a4.972 4.972 0 011.44 1.813c.374.823.557 1.72.536 2.623a4.64 4.64 0 01-.522 2.198 7.454 7.454 0 01-1.276 1.758c-.497.508-1.044.963-1.633 1.36-.586.394-1.117.728-1.592 1.003-.66.44-1.204.82-1.633 1.14a7.753 7.753 0 00-1.03.892 2.403 2.403 0 00-.535.852 3.128 3.128 0 00-.15 1.017h8.234v3.598h-13.34c-.023-1.32.102-2.637.371-3.928zM39.958 5.792c.769.016 1.538-.053 2.292-.206a3.307 3.307 0 001.386-.618 2.14 2.14 0 00.686-1.044c.137-.491.202-1 .192-1.51h3.926v19.23h-4.528V8.923h-3.954V5.792z"
|
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M53.534 2.414h4.199v19.23h-4.2V2.413zm19.704 5.978v13.241h-4.2v-1.868a3.434 3.434 0 01-.659.865 4.24 4.24 0 01-.946.686c-.371.198-.762.354-1.167.466-.41.118-.835.178-1.262.179a6.33 6.33 0 01-2.622-.536 6.207 6.207 0 01-2.044-1.456 6.455 6.455 0 01-1.318-2.197 8.402 8.402 0 010-5.522 6.455 6.455 0 011.318-2.198 6.207 6.207 0 012.044-1.455 6.329 6.329 0 012.622-.535c.427.001.852.061 1.263.179.406.113.798.274 1.166.48.347.194.666.434.947.715.257.252.48.539.659.851V8.392h4.199zm-7.356 10c.445.006.886-.088 1.29-.275a3.147 3.147 0 001.634-1.8c.156-.417.235-.859.233-1.304a3.546 3.546 0 00-.879-2.363 3.056 3.056 0 00-.989-.742 3.168 3.168 0 00-2.58 0 3.06 3.06 0 00-.989.742 3.549 3.549 0 00-.878 2.363c-.002.445.077.888.233 1.305a3.153 3.153 0 001.634 1.8c.404.187.845.28 1.29.273zm12.459 3.251h-4.2V2.414h4.2v7.883a4.218 4.218 0 011.619-1.566c.37-.202.76-.364 1.166-.48.415-.12.845-.18 1.276-.179a6.33 6.33 0 012.622.536c.773.34 1.47.836 2.044 1.456a6.47 6.47 0 011.318 2.197 8.413 8.413 0 010 5.522 6.47 6.47 0 01-1.318 2.198 6.203 6.203 0 01-2.044 1.456 6.33 6.33 0 01-2.622.535 4.577 4.577 0 01-1.276-.178 6.213 6.213 0 01-1.166-.466 4.12 4.12 0 01-.96-.687 3.435 3.435 0 01-.66-.865v1.867zm3.184-3.241c.436.004.868-.09 1.263-.275a3.148 3.148 0 001.634-1.8c.156-.416.235-.859.232-1.304a3.547 3.547 0 00-.878-2.363 3.056 3.056 0 00-.99-.741 2.901 2.901 0 00-1.261-.276 3.012 3.012 0 00-2.305 1.016 3.546 3.546 0 00-.879 2.362 3.66 3.66 0 00.233 1.305c.145.395.364.759.645 1.072a3.1 3.1 0 002.306 1.004zm15.219-4.56a20.56 20.56 0 011.646.535c.479.175.932.415 1.345.714.38.28.695.642.92 1.058.244.494.362 1.042.343 1.593a3.937 3.937 0 01-.467 1.992 3.71 3.71 0 01-1.29 1.319c-.587.353-1.234.6-1.907.727-.765.15-1.542.224-2.32.22-1.885 0-3.372-.412-4.46-1.236-1.09-.824-1.413-2.006-1.413-3.544h3.897c0 .696.197 1.195.59 1.497a2.43 2.43 0 001.524.453c.434.019.866-.08 1.248-.288a1.018 1.018 0 00.48-.948.898.898 0 00-.205-.618 1.982 1.982 0 00-.632-.44 7.884 7.884 0 00-1.097-.412c-.45-.137-.985-.306-1.606-.508a21.019 21.019 0 01-1.565-.535 5.688 5.688 0 01-1.304-.7 2.978 2.978 0 01-.891-1.045 3.427 3.427 0 01-.33-1.593c0-1.374.526-2.39 1.578-3.05 1.053-.659 2.475-.989 4.268-.99a8.335 8.335 0 012.512.344c.652.192 1.26.514 1.784.948.457.39.818.878 1.057 1.429.238.555.36 1.153.357 1.758h-4.145a1.798 1.798 0 00-.425-1.278 1.71 1.71 0 00-1.304-.453 2.04 2.04 0 00-1.098.289.972.972 0 00-.467.892.828.828 0 00.22.591c.185.182.405.327.645.426.344.15.697.279 1.057.384.42.13.905.285 1.455.468z",
|
|
33
|
+
fill: "#E91E63"
|
|
34
|
+
})]
|
|
35
|
+
})]
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
38
|
+
export default Icon;
|
|
@@ -0,0 +1,52 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { useFillId } from "../../hooks/useFillId";
|
|
6
|
+
import { TITLE } from "../style";
|
|
7
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
10
|
+
var _ref$size = _ref.size,
|
|
11
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
12
|
+
style = _ref.style,
|
|
13
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
14
|
+
var _useFillId = useFillId(TITLE),
|
|
15
|
+
id = _useFillId.id,
|
|
16
|
+
fill = _useFillId.fill;
|
|
17
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
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__*/_jsx("defs", {
|
|
31
|
+
children: /*#__PURE__*/_jsxs("linearGradient", {
|
|
32
|
+
id: id,
|
|
33
|
+
x1: "0%",
|
|
34
|
+
x2: "100.182%",
|
|
35
|
+
y1: "50.057%",
|
|
36
|
+
y2: "50.057%",
|
|
37
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
38
|
+
offset: "0%",
|
|
39
|
+
stopColor: "#E2167E"
|
|
40
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
41
|
+
offset: "100%",
|
|
42
|
+
stopColor: "#FE603C"
|
|
43
|
+
})]
|
|
44
|
+
})
|
|
45
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
46
|
+
d: "M16.278 2c1.156 0 2.093.927 2.093 2.07v12.501a.74.74 0 00.744.709.74.74 0 00.743-.709V9.099a2.06 2.06 0 012.071-2.049A2.06 2.06 0 0124 9.1v6.561a.649.649 0 01-.652.645.649.649 0 01-.653-.645V9.1a.762.762 0 00-.766-.758.762.762 0 00-.766.758v7.472a2.037 2.037 0 01-2.048 2.026 2.037 2.037 0 01-2.048-2.026v-12.5a.785.785 0 00-.788-.753.785.785 0 00-.789.752l-.001 15.904A2.037 2.037 0 0113.441 22a2.037 2.037 0 01-2.048-2.026V18.04c0-.356.292-.645.652-.645.36 0 .652.289.652.645v1.934c0 .263.142.506.372.638.23.131.514.131.744 0a.734.734 0 00.372-.638V4.07c0-1.143.937-2.07 2.093-2.07zm-5.674 0c1.156 0 2.093.927 2.093 2.07v11.523a.648.648 0 01-.652.645.648.648 0 01-.652-.645V4.07a.785.785 0 00-.789-.78.785.785 0 00-.789.78v14.013a2.06 2.06 0 01-2.07 2.048 2.06 2.06 0 01-2.071-2.048V9.1a.762.762 0 00-.766-.758.762.762 0 00-.766.758v3.8a2.06 2.06 0 01-2.071 2.049A2.06 2.06 0 010 12.9v-1.378c0-.357.292-.646.652-.646.36 0 .653.29.653.646V12.9c0 .418.343.757.766.757s.766-.339.766-.757V9.099a2.06 2.06 0 012.07-2.048 2.06 2.06 0 012.071 2.048v8.984c0 .419.343.758.767.758.423 0 .766-.339.766-.758V4.07c0-1.143.937-2.07 2.093-2.07z",
|
|
47
|
+
fill: fill,
|
|
48
|
+
fillRule: "nonzero"
|
|
49
|
+
})]
|
|
50
|
+
}));
|
|
51
|
+
});
|
|
52
|
+
export default Icon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["iconProps"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import IconCombine from "../../IconCombine";
|
|
6
|
+
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
|
7
|
+
import Avatar from "./Avatar";
|
|
8
|
+
import Text from "./Text";
|
|
9
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
11
|
+
var iconProps = _ref.iconProps,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
14
|
+
Icon: Avatar,
|
|
15
|
+
Text: Text,
|
|
16
|
+
"aria-label": TITLE,
|
|
17
|
+
iconProps: _objectSpread({
|
|
18
|
+
shape: 'square'
|
|
19
|
+
}, iconProps),
|
|
20
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
21
|
+
textMultiple: TEXT_MULTIPLE
|
|
22
|
+
}, rest));
|
|
23
|
+
});
|
|
24
|
+
export default Combine;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { TITLE } from "../style";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
height: size,
|
|
17
|
+
ref: ref,
|
|
18
|
+
style: _objectSpread({
|
|
19
|
+
flex: 'none',
|
|
20
|
+
lineHeight: 1
|
|
21
|
+
}, style),
|
|
22
|
+
viewBox: "0 0 24 24",
|
|
23
|
+
width: size,
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
27
|
+
children: TITLE
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M6.47 17l-.367-1.189H2.718L2.35 17H0l3.398-9.789h2.026L8.864 17H6.47zm-2.052-6.993l-1.17 4.028H5.56l-1.142-4.028zm4.707-2.796h2.23V17h-2.23V7.211zM11.955 15c.1-.483.277-.946.524-1.37.214-.359.482-.68.795-.951.32-.273.658-.52 1.013-.741.28-.168.54-.33.781-.483.222-.14.433-.296.632-.468.172-.148.317-.325.428-.525.107-.199.16-.423.157-.65 0-.392-.104-.674-.313-.846a1.176 1.176 0 00-.775-.259 1.207 1.207 0 00-.863.329c-.231.219-.347.585-.347 1.098H11.8a3.387 3.387 0 01.224-1.245c.146-.377.371-.716.66-.993.306-.29.667-.514 1.06-.657A4.04 4.04 0 0115.183 7c.42-.002.84.057 1.244.175.376.107.73.287 1.04.531.305.246.55.562.714.923.185.419.275.875.265 1.335.005.39-.084.774-.259 1.12-.167.328-.38.63-.632.894-.246.259-.517.49-.808.693-.29.2-.554.37-.789.51-.326.224-.596.417-.809.58a3.872 3.872 0 00-.51.455 1.229 1.229 0 00-.265.434 1.633 1.633 0 00-.074.517h4.078V17h-6.606a9.24 9.24 0 01.183-2zM18.8 8.93a5.05 5.05 0 001.135-.105c.25-.049.484-.156.686-.314.163-.139.28-.324.34-.532.068-.25.1-.51.095-.77H23V17h-2.243v-6.475H18.8V8.93z"
|
|
30
|
+
})]
|
|
31
|
+
}));
|
|
32
|
+
});
|
|
33
|
+
export default Icon;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { TITLE } from "../style";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
height: size,
|
|
17
|
+
ref: ref,
|
|
18
|
+
style: _objectSpread({
|
|
19
|
+
flex: 'none',
|
|
20
|
+
lineHeight: 1,
|
|
21
|
+
width: 'fit-content'
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 103 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
27
|
+
children: TITLE
|
|
28
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
29
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
30
|
+
d: "M15.064 21.643l-.74-2.335H7.487l-.741 2.335H2L8.862 2.414h4.09l6.944 19.23h-4.832zM10.92 7.908L8.56 15.819h4.666l-2.305-7.911zm9.504-5.494h4.501v19.23h-4.501V2.413zm5.714 15.3a8.84 8.84 0 011.057-2.691 7.78 7.78 0 011.606-1.868 16.915 16.915 0 012.045-1.456c.567-.33 1.093-.646 1.578-.948.447-.275.874-.582 1.276-.92.348-.289.64-.638.865-1.03.214-.391.323-.832.315-1.278 0-.769-.21-1.323-.63-1.662-.447-.347-1-.526-1.565-.508A2.475 2.475 0 0030.943 6c-.467.43-.7 1.15-.7 2.156h-4.42a6.493 6.493 0 01.454-2.445c.294-.74.749-1.406 1.33-1.95a6.26 6.26 0 012.142-1.291A8.363 8.363 0 0132.657 2a9.048 9.048 0 012.512.344c.76.21 1.472.565 2.1 1.044a4.972 4.972 0 011.44 1.813c.374.823.557 1.72.536 2.623a4.64 4.64 0 01-.522 2.198 7.454 7.454 0 01-1.276 1.758c-.497.508-1.044.963-1.633 1.36-.586.394-1.117.728-1.592 1.003-.66.44-1.204.82-1.633 1.14a7.753 7.753 0 00-1.03.892 2.403 2.403 0 00-.535.852 3.128 3.128 0 00-.15 1.017h8.234v3.598h-13.34c-.023-1.32.102-2.637.371-3.928zM39.958 5.792c.769.016 1.538-.053 2.292-.206a3.307 3.307 0 001.386-.618 2.14 2.14 0 00.686-1.044c.137-.491.202-1 .192-1.51h3.926v19.23h-4.528V8.923h-3.954V5.792z"
|
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M53.534 2.414h4.199v19.23h-4.2V2.413zm19.704 5.978v13.241h-4.2v-1.868a3.434 3.434 0 01-.659.865 4.24 4.24 0 01-.946.686c-.371.198-.762.354-1.167.466-.41.118-.835.178-1.262.179a6.33 6.33 0 01-2.622-.536 6.207 6.207 0 01-2.044-1.456 6.455 6.455 0 01-1.318-2.197 8.402 8.402 0 010-5.522 6.455 6.455 0 011.318-2.198 6.207 6.207 0 012.044-1.455 6.329 6.329 0 012.622-.535c.427.001.852.061 1.263.179.406.113.798.274 1.166.48.347.194.666.434.947.715.257.252.48.539.659.851V8.392h4.199zm-7.356 10c.445.006.886-.088 1.29-.275a3.147 3.147 0 001.634-1.8c.156-.417.235-.859.233-1.304a3.546 3.546 0 00-.879-2.363 3.056 3.056 0 00-.989-.742 3.168 3.168 0 00-2.58 0 3.06 3.06 0 00-.989.742 3.549 3.549 0 00-.878 2.363c-.002.445.077.888.233 1.305a3.153 3.153 0 001.634 1.8c.404.187.845.28 1.29.273zm12.459 3.251h-4.2V2.414h4.2v7.883a4.218 4.218 0 011.619-1.566c.37-.202.76-.364 1.166-.48.415-.12.845-.18 1.276-.179a6.33 6.33 0 012.622.536c.773.34 1.47.836 2.044 1.456a6.47 6.47 0 011.318 2.197 8.413 8.413 0 010 5.522 6.47 6.47 0 01-1.318 2.198 6.203 6.203 0 01-2.044 1.456 6.33 6.33 0 01-2.622.535 4.577 4.577 0 01-1.276-.178 6.213 6.213 0 01-1.166-.466 4.12 4.12 0 01-.96-.687 3.435 3.435 0 01-.66-.865v1.867zm3.184-3.241c.436.004.868-.09 1.263-.275a3.148 3.148 0 001.634-1.8c.156-.416.235-.859.232-1.304a3.547 3.547 0 00-.878-2.363 3.056 3.056 0 00-.99-.741 2.901 2.901 0 00-1.261-.276 3.012 3.012 0 00-2.305 1.016 3.546 3.546 0 00-.879 2.362 3.66 3.66 0 00.233 1.305c.145.395.364.759.645 1.072a3.1 3.1 0 002.306 1.004zm15.219-4.56a20.56 20.56 0 011.646.535c.479.175.932.415 1.345.714.38.28.695.642.92 1.058.244.494.362 1.042.343 1.593a3.937 3.937 0 01-.467 1.992 3.71 3.71 0 01-1.29 1.319c-.587.353-1.234.6-1.907.727-.765.15-1.542.224-2.32.22-1.885 0-3.372-.412-4.46-1.236-1.09-.824-1.413-2.006-1.413-3.544h3.897c0 .696.197 1.195.59 1.497a2.43 2.43 0 001.524.453c.434.019.866-.08 1.248-.288a1.018 1.018 0 00.48-.948.898.898 0 00-.205-.618 1.982 1.982 0 00-.632-.44 7.884 7.884 0 00-1.097-.412c-.45-.137-.985-.306-1.606-.508a21.019 21.019 0 01-1.565-.535 5.688 5.688 0 01-1.304-.7 2.978 2.978 0 01-.891-1.045 3.427 3.427 0 01-.33-1.593c0-1.374.526-2.39 1.578-3.05 1.053-.659 2.475-.989 4.268-.99a8.335 8.335 0 012.512.344c.652.192 1.26.514 1.784.948.457.39.818.878 1.057 1.429.238.555.36 1.153.357 1.758h-4.145a1.798 1.798 0 00-.425-1.278 1.71 1.71 0 00-1.304-.453 2.04 2.04 0 00-1.098.289.972.972 0 00-.467.892.828.828 0 00.22.591c.185.182.405.327.645.426.344.15.697.279 1.057.384.42.13.905.285 1.455.468z"
|
|
33
|
+
})]
|
|
34
|
+
})]
|
|
35
|
+
}));
|
|
36
|
+
});
|
|
37
|
+
export default Icon;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import Brand from './components/Brand';
|
|
3
|
+
import BrandColor from './components/BrandColor';
|
|
4
|
+
import Color from './components/Color';
|
|
5
|
+
import Combine from './components/Combine';
|
|
6
|
+
import Mono from './components/Mono';
|
|
7
|
+
import Text from './components/Text';
|
|
8
|
+
export type CompoundedIcon = typeof Mono & {
|
|
9
|
+
Avatar: typeof Avatar;
|
|
10
|
+
Brand: typeof Brand;
|
|
11
|
+
BrandColor: typeof BrandColor;
|
|
12
|
+
Color: typeof Color;
|
|
13
|
+
Combine: typeof Combine;
|
|
14
|
+
Text: typeof Text;
|
|
15
|
+
colorGradient: string;
|
|
16
|
+
colorPrimary: string;
|
|
17
|
+
title: string;
|
|
18
|
+
};
|
|
19
|
+
declare const Icons: CompoundedIcon;
|
|
20
|
+
export default Icons;
|
package/es/Ai21/index.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import Brand from "./components/Brand";
|
|
3
|
+
import BrandColor from "./components/BrandColor";
|
|
4
|
+
import Color from "./components/Color";
|
|
5
|
+
import Combine from "./components/Combine";
|
|
6
|
+
import Mono from "./components/Mono";
|
|
7
|
+
import Text from "./components/Text";
|
|
8
|
+
import { COLOR_GRADIENT, COLOR_PRIMARY, TITLE } from "./style";
|
|
9
|
+
var Icons = Mono;
|
|
10
|
+
Icons.Color = Color;
|
|
11
|
+
Icons.Text = Text;
|
|
12
|
+
Icons.Brand = Brand;
|
|
13
|
+
Icons.BrandColor = BrandColor;
|
|
14
|
+
Icons.Combine = Combine;
|
|
15
|
+
Icons.Avatar = Avatar;
|
|
16
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
17
|
+
Icons.colorGradient = COLOR_GRADIENT;
|
|
18
|
+
Icons.title = TITLE;
|
|
19
|
+
export default Icons;
|
package/es/Ai21/style.js
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
|
|
3
|
+
var _excluded = ["background"];
|
|
4
|
+
import { memo } from 'react';
|
|
5
|
+
import IconAvatar from "../../IconAvatar";
|
|
6
|
+
import { COLOR_PRIMARY, TITLE } from "../style";
|
|
7
|
+
import Mono from "./Mono";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
|
10
|
+
var background = _ref.background,
|
|
11
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
12
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
|
13
|
+
Icon: Mono,
|
|
14
|
+
"aria-label": TITLE,
|
|
15
|
+
background: background || COLOR_PRIMARY,
|
|
16
|
+
color: '#000'
|
|
17
|
+
}, rest));
|
|
18
|
+
});
|
|
19
|
+
export default Avatar;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _objectDestructuringEmpty from "@babel/runtime/helpers/esm/objectDestructuringEmpty";
|
|
3
|
+
import { memo } from 'react';
|
|
4
|
+
import IconCombine from "../../IconCombine";
|
|
5
|
+
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
|
6
|
+
import Mono from "./Mono";
|
|
7
|
+
import Text from "./Text";
|
|
8
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
9
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
|
10
|
+
var rest = Object.assign({}, (_objectDestructuringEmpty(_ref), _ref));
|
|
11
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
|
12
|
+
Icon: Mono,
|
|
13
|
+
Text: Text,
|
|
14
|
+
"aria-label": TITLE,
|
|
15
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
16
|
+
textMultiple: TEXT_MULTIPLE
|
|
17
|
+
}, rest));
|
|
18
|
+
});
|
|
19
|
+
export default Combine;
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { TITLE } from "../style";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
height: size,
|
|
17
|
+
ref: ref,
|
|
18
|
+
style: _objectSpread({
|
|
19
|
+
flex: 'none',
|
|
20
|
+
lineHeight: 1
|
|
21
|
+
}, style),
|
|
22
|
+
viewBox: "0 0 24 24",
|
|
23
|
+
width: size,
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
27
|
+
children: TITLE
|
|
28
|
+
}), /*#__PURE__*/_jsxs("g", {
|
|
29
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
30
|
+
d: "M23.556 12.189c.244 0 .444.126.444.28v.951c0 .154-.2.28-.444.28s-.444-.126-.444-.28v-.952c0-.153.2-.279.444-.279zm-1.764.372c.244 0 .444.126.444.28v2.095c0 .153-.2.279-.444.279-.245 0-.444-.126-.444-.28V12.84c0-.153.2-.28.444-.28zm-1.765.434c.244 0 .444.125.444.279v2.355c0 .154-.2.28-.444.28s-.444-.126-.444-.28v-2.355c0-.154.2-.28.444-.28zm-1.764.359c.244 0 .444.125.444.279v2.33c0 .153-.2.279-.444.279s-.444-.126-.444-.28v-2.33c0-.153.2-.278.444-.278zm-1.765.316c.245 0 .444.126.444.28v2.017c0 .154-.2.28-.444.28s-.444-.126-.444-.28V13.95c0-.154.2-.28.444-.28zm-1.755 1.287c.244 0 .444.125.444.28v.64c0 .153-.2.278-.444.278s-.444-.125-.444-.279v-.64c0-.154.2-.28.444-.28z",
|
|
31
|
+
opacity: ".35"
|
|
32
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
33
|
+
d: "M23.556 9.63c.244 0 .444.125.444.279v1.575c0 .154-.2.28-.444.28s-.444-.126-.444-.28V9.909c0-.154.2-.28.444-.28zm-1.764-1.058c.244 0 .444.125.444.28v2.81c0 .153-.2.278-.444.278-.245 0-.444-.125-.444-.279v-2.81c0-.154.2-.28.444-.28zm-1.765-.398c.244 0 .444.126.444.28v3.667c0 .153-.2.28-.444.28s-.444-.127-.444-.28V8.453c0-.153.2-.28.444-.28zM18.263 8c.244 0 .444.126.444.28v4.29c0 .154-.2.28-.444.28s-.444-.126-.444-.28V8.28c0-.154.2-.28.444-.28zm-1.765.109c.245 0 .444.126.444.28v4.355c0 .154-.2.28-.444.28s-.444-.126-.444-.28V8.388c0-.153.2-.28.444-.28zm-1.755.273c.244 0 .444.125.444.28v5.434c0 .153-.2.28-.444.28s-.444-.126-.444-.28V8.66c0-.154.2-.28.444-.28zm-1.801.463c.244 0 .444.125.444.279v6.162c0 .154-.2.28-.444.28s-.444-.126-.444-.28V9.124c0-.154.2-.28.444-.28zm-1.764.784c.244 0 .444.126.444.28v5.928c0 .154-.2.28-.444.28-.245 0-.444-.126-.444-.28V9.909c0-.154.2-.28.444-.28zm-1.765 1.022c.245 0 .444.126.444.28v5.161c0 .154-.2.28-.444.28s-.444-.126-.444-.28V10.93c0-.154.2-.28.444-.28zm-1.764.706c.244 0 .444.126.444.28v5.084c0 .153-.2.279-.444.279s-.444-.126-.444-.28v-5.083c0-.154.2-.28.444-.28zm-1.756.585c.245 0 .444.126.444.28v2.705c0 .154-.2.28-.444.28s-.444-.126-.444-.28v-2.706c0-.153.2-.279.444-.279zM4.076 9.304c.244 0 .444.126.444.28v3.771c0 .154-.2.28-.444.28s-.444-.126-.444-.28V9.584c0-.154.2-.28.444-.28zm-1.814.247c.244 0 .443.126.443.28v1.16c0 .153-.2.279-.443.279-.245 0-.444-.126-.444-.28V9.83c0-.153.2-.279.444-.279zM.444 9.395c.244 0 .444.126.444.28v.523c0 .153-.2.279-.444.279S0 10.351 0 10.197v-.522c0-.154.2-.28.444-.28zm5.45-.442c.244 0 .443.126.443.28v.392c0 .154-.2.28-.444.28s-.444-.126-.444-.28v-.393c0-.154.2-.28.444-.28z"
|
|
34
|
+
})]
|
|
35
|
+
})]
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
38
|
+
export default Icon;
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { forwardRef } from 'react';
|
|
5
|
+
import { TITLE } from "../style";
|
|
6
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
|
7
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
8
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
9
|
+
var _ref$size = _ref.size,
|
|
10
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
11
|
+
style = _ref.style,
|
|
12
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
height: size,
|
|
17
|
+
ref: ref,
|
|
18
|
+
style: _objectSpread({
|
|
19
|
+
flex: 'none',
|
|
20
|
+
lineHeight: 1,
|
|
21
|
+
width: 'fit-content'
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 167 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: [/*#__PURE__*/_jsx("title", {
|
|
27
|
+
children: TITLE
|
|
28
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M2.721 21.578c-.48 0-.721-.2-.721-.598V2.599c0-.4.24-.599.721-.599h15.21c.48 0 .72.2.72.599v2.184c0 .4-.24.599-.72.599H5.998v4.73H16.16c.48 0 .721.2.721.599v2.184c0 .4-.24.599-.721.599H6v7.486c0 .399-.241.598-.722.598H2.721zm36.91.409c-1.826 0-3.514-.236-5.063-.708-.37-.109-.607-.222-.711-.34-.104-.118-.156-.313-.156-.585v-.98c0-.363.162-.545.485-.545.126 0 .35.033.672.099l.3.064c1.64.363 3.12.545 4.438.545 1.157 0 2-.14 2.532-.422.532-.281.798-.712.798-1.293 0-.4-.162-.721-.486-.966-.298-.227-.834-.457-1.605-.69l-3.077-.93c-2.59-.78-3.884-2.05-3.884-3.811 0-1.27.601-2.273 1.803-3.008 1.203-.735 2.81-1.102 4.821-1.102 1.434 0 2.879.19 4.335.571.347.091.578.195.694.313.116.118.173.322.173.613v.953c0 .2-.04.34-.121.421-.08.082-.225.123-.433.123a3.65 3.65 0 01-.498-.067l-.37-.07c-1.456-.271-2.635-.407-3.537-.407-1.064 0-1.844.122-2.341.367-.497.245-.746.63-.746 1.157 0 .4.18.721.538.966.358.245 1 .513 1.925.803l2.67.817c1.387.417 2.387.916 3 1.497.613.58.92 1.316.92 2.205 0 1.361-.625 2.436-1.874 3.226-1.248.79-2.982 1.184-5.202 1.184zm13.432-.409c-.481 0-.721-.2-.721-.598V2.75c0-.4.24-.6.72-.6h2.427c.48 0 .72.2.72.6v5.357c.34-.248 2.597-.985 4.673-.985 2.08 0 4.299.542 5.13 1.24.83.7 1.245 1.711 1.245 3.036v9.582c0 .399-.24.598-.721.598H64.11c-.48 0-.721-.2-.721-.598v-7.594c0-.89-.223-1.825-.656-2.212-.432-.387-1.745-.664-2.706-.664-1.443 0-3.817.303-3.817 1.25v9.22c0 .399-.24.598-.721.598h-2.426zM89.332 2.714c.22 0 .396.046.525.136a.808.808 0 01.265.36l6.453 17.443.073.21.052.164a.86.86 0 01.041.198.308.308 0 01-.124.258.557.557 0 01-.346.095h-2.74c-.204 0-.356-.04-.457-.122-.101-.082-.189-.222-.263-.422L88.032 7.851l-4.751 13.183c-.074.218-.162.363-.263.436-.101.072-.253.108-.456.108h-2.63a.557.557 0 01-.346-.095.308.308 0 01-.125-.258c0-.073.055-.264.166-.572l6.442-17.34c.074-.218.175-.372.304-.463.13-.09.304-.136.526-.136h2.433zm17.306 19.273c-1.551 0-2.748-.359-3.59-1.075-.84-.717-1.261-1.747-1.261-3.09v-9.5c0-.4.24-.599.721-.599h2.426c.48 0 .721.2.721.599v8.547c0 .89.219 1.543.656 1.96.437.418 1.136.626 2.098.626 1.355 0 2.72-.372 4.097-1.116V8.322c0-.4.24-.599.721-.599h2.426c.481 0 .721.2.721.599V20.98c0 .399-.24.598-.72.598h-2.363c-.306 0-.479-.292-.523-.492v-.174c-2.054 1.288-4.097 1.075-6.13 1.075zm20.094-.11c-2.098 0-3.776-.648-5.032-1.945-1.257-1.298-1.885-3.045-1.885-5.24 0-1.507.3-2.818.901-3.934s1.437-1.969 2.508-2.559c1.071-.59 2.306-.884 3.704-.884 1.749 0 3.225.185 4.786.776V2.75c0-.4.24-.599.722-.599h2.425c.481 0 .722.2.722.6v18.23c0 .399-.24.598-.722.598h-2.166c-.48 0-.73-.137-.817-.5v-.303c-1.486 1.09-3.201 1.103-5.146 1.103zm1.213-2.53c1.289 0 2.546-.345 3.77-1.035v-7.486c-1.115-.653-2.35-.98-3.705-.98-1.464 0-2.54.386-3.229 1.157-.688.771-1.032 1.955-1.032 3.552 0 3.194 1.398 4.791 4.196 4.791zm13.495 2.231c-.48 0-.72-.22-.72-.66V7.668c0-.44.24-.66.72-.66h2.426c.481 0 .721.22.721.66v13.25c0 .44-.24.66-.72.66h-2.427zm-117.584 0c-.48 0-.72-.22-.72-.66V7.668c0-.44.24-.66.72-.66h2.426c.481 0 .721.22.721.66v13.25c0 .44-.24.66-.72.66h-2.427zM141.44 5.841c-.48 0-.72-.2-.72-.599V2.599c0-.4.24-.599.72-.599h2.426c.481 0 .721.2.721.599v2.643c0 .4-.24.599-.72.599h-2.427zm-117.584 0c-.48 0-.72-.2-.72-.599V2.599c0-.4.24-.599.72-.599h2.426c.481 0 .721.2.721.599v2.643c0 .4-.24.599-.72.599h-2.427zm133.08 16.146c-2.535 0-4.513-.649-5.933-1.946-1.421-1.298-2.131-3.1-2.131-5.404 0-2.305.71-4.101 2.13-5.39 1.421-1.288 3.399-1.932 5.934-1.932s4.513.644 5.933 1.932c1.42 1.289 2.131 3.085 2.131 5.39 0 2.305-.71 4.106-2.13 5.404-1.421 1.297-3.4 1.946-5.934 1.946zm0-2.532c2.753 0 4.13-1.606 4.13-4.818 0-3.194-1.377-4.79-4.13-4.79-2.754 0-4.13 1.596-4.13 4.79 0 3.212 1.376 4.818 4.13 4.818z"
|
|
30
|
+
})]
|
|
31
|
+
}));
|
|
32
|
+
});
|
|
33
|
+
export default Icon;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import Combine from './components/Combine';
|
|
3
|
+
import Mono from './components/Mono';
|
|
4
|
+
import Text from './components/Text';
|
|
5
|
+
export type CompoundedIcon = typeof Mono & {
|
|
6
|
+
Avatar: typeof Avatar;
|
|
7
|
+
Combine: typeof Combine;
|
|
8
|
+
Text: typeof Text;
|
|
9
|
+
colorPrimary: string;
|
|
10
|
+
title: string;
|
|
11
|
+
};
|
|
12
|
+
declare const Icons: CompoundedIcon;
|
|
13
|
+
export default Icons;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import Avatar from "./components/Avatar";
|
|
2
|
+
import Combine from "./components/Combine";
|
|
3
|
+
import Mono from "./components/Mono";
|
|
4
|
+
import Text from "./components/Text";
|
|
5
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
|
6
|
+
var Icons = Mono;
|
|
7
|
+
Icons.Text = Text;
|
|
8
|
+
Icons.Combine = Combine;
|
|
9
|
+
Icons.Avatar = Avatar;
|
|
10
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
11
|
+
Icons.title = TITLE;
|
|
12
|
+
export default Icons;
|
package/es/index.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { default as Adobe, type CompoundedIcon as AdobeProps } from './Adobe';
|
|
2
|
+
export { default as AdobeFirefly, type CompoundedIcon as AdobeFireflyProps } from './AdobeFirefly';
|
|
3
|
+
export { default as Ai21, type CompoundedIcon as Ai21Props } from './Ai21';
|
|
1
4
|
export { default as Alibaba, type CompoundedIcon as AlibabaProps } from './Alibaba';
|
|
2
5
|
export { default as AntGroup, type CompoundedIcon as AntGroupProps } from './AntGroup';
|
|
3
6
|
export { default as Anthropic, type CompoundedIcon as AnthropicProps } from './Anthropic';
|
|
@@ -19,6 +22,7 @@ export { default as Dalle, type CompoundedIcon as DalleProps } from './Dalle';
|
|
|
19
22
|
export { default as Dbrx, type CompoundedIcon as DbrxProps } from './Dbrx';
|
|
20
23
|
export { default as DeepMind, type CompoundedIcon as DeepMindProps } from './DeepMind';
|
|
21
24
|
export { default as Fireworks, type CompoundedIcon as FireworksProps } from './Fireworks';
|
|
25
|
+
export { default as FishAudio, type CompoundedIcon as FishAudioProps } from './FishAudio';
|
|
22
26
|
export { default as Gemini, type CompoundedIcon as GeminiProps } from './Gemini';
|
|
23
27
|
export { default as Gemma, type CompoundedIcon as GemmaProps } from './Gemma';
|
|
24
28
|
export { default as Github, type CompoundedIcon as GithubProps } from './Github';
|
package/es/index.js
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export { default as Adobe } from "./Adobe";
|
|
2
|
+
export { default as AdobeFirefly } from "./AdobeFirefly";
|
|
3
|
+
export { default as Ai21 } from "./Ai21";
|
|
1
4
|
export { default as Alibaba } from "./Alibaba";
|
|
2
5
|
export { default as AntGroup } from "./AntGroup";
|
|
3
6
|
export { default as Anthropic } from "./Anthropic";
|
|
@@ -19,6 +22,7 @@ export { default as Dalle } from "./Dalle";
|
|
|
19
22
|
export { default as Dbrx } from "./Dbrx";
|
|
20
23
|
export { default as DeepMind } from "./DeepMind";
|
|
21
24
|
export { default as Fireworks } from "./Fireworks";
|
|
25
|
+
export { default as FishAudio } from "./FishAudio";
|
|
22
26
|
export { default as Gemini } from "./Gemini";
|
|
23
27
|
export { default as Gemma } from "./Gemma";
|
|
24
28
|
export { default as Github } from "./Github";
|