@lobehub/icons 1.4.0 → 1.5.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/es/Aws/components/Avatar.d.ts +5 -0
- package/es/Aws/components/Avatar.js +20 -0
- package/es/Aws/components/BrandColor.d.ts +3 -0
- package/es/Aws/components/BrandColor.js +37 -0
- package/es/Aws/components/BrandMono.d.ts +3 -0
- package/es/Aws/components/BrandMono.js +36 -0
- package/es/Aws/components/Color.d.ts +3 -0
- package/es/Aws/components/Color.js +37 -0
- package/es/Aws/components/Combine.d.ts +7 -0
- package/es/Aws/components/Combine.js +25 -0
- package/es/Aws/components/Mono.d.ts +3 -0
- package/es/Aws/components/Mono.js +36 -0
- package/es/Aws/components/Text.d.ts +3 -0
- package/es/Aws/components/Text.js +31 -0
- package/es/Aws/index.d.ts +19 -0
- package/es/Aws/index.js +17 -0
- package/es/Aws/style.d.ts +3 -0
- package/es/Aws/style.js +3 -0
- package/es/Bedrock/components/Avatar.d.ts +5 -0
- package/es/Bedrock/components/Avatar.js +20 -0
- package/es/Bedrock/components/Color.d.ts +3 -0
- package/es/Bedrock/components/Color.js +50 -0
- package/es/Bedrock/components/Combine.d.ts +7 -0
- package/es/Bedrock/components/Combine.js +25 -0
- package/es/Bedrock/components/Mono.d.ts +3 -0
- package/es/Bedrock/components/Mono.js +31 -0
- package/es/Bedrock/components/Text.d.ts +3 -0
- package/es/Bedrock/components/Text.js +31 -0
- package/es/Bedrock/index.d.ts +16 -0
- package/es/Bedrock/index.js +14 -0
- package/es/Bedrock/style.d.ts +4 -0
- package/es/Bedrock/style.js +4 -0
- package/es/Qingyan/components/Avatar.d.ts +5 -0
- package/es/Qingyan/components/Avatar.js +19 -0
- package/es/Qingyan/components/Color.d.ts +3 -0
- package/es/Qingyan/components/Color.js +38 -0
- package/es/Qingyan/components/Combine.d.ts +7 -0
- package/es/Qingyan/components/Combine.js +25 -0
- package/es/Qingyan/components/Mono.d.ts +3 -0
- package/es/Qingyan/components/Mono.js +36 -0
- package/es/Qingyan/components/Text.d.ts +3 -0
- package/es/Qingyan/components/Text.js +31 -0
- package/es/Qingyan/index.d.ts +15 -0
- package/es/Qingyan/index.js +13 -0
- package/es/Qingyan/style.d.ts +3 -0
- package/es/Qingyan/style.js +3 -0
- package/es/Zhipu/components/Color.js +4 -11
- package/es/Zhipu/components/Mono.js +2 -7
- package/es/Zhipu/components/Text.js +2 -2
- package/es/Zhipu/style.d.ts +1 -1
- package/es/Zhipu/style.js +1 -1
- package/es/index.d.ts +3 -0
- package/es/index.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,20 @@
|
|
|
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 } from "../style";
|
|
9
|
+
import Color from "./Color";
|
|
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: Color,
|
|
16
|
+
background: background || COLOR_PRIMARY,
|
|
17
|
+
color: '#fff'
|
|
18
|
+
}, rest));
|
|
19
|
+
});
|
|
20
|
+
export default Avatar;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
height: size,
|
|
18
|
+
ref: ref,
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
flex: 'none',
|
|
21
|
+
lineHeight: 1,
|
|
22
|
+
width: 'fit-content'
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 61 24",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, rest), {}, {
|
|
27
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z",
|
|
30
|
+
fill: "#F90"
|
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M23.938 18.641l-.253.001c-.092 0-.21.062-.24.163l-.765 2.681-.757-2.675c-.022-.084-.102-.169-.21-.169h-.299c-.107 0-.186.086-.207.17l-.705 2.648-.727-2.656c-.029-.097-.15-.162-.245-.162h-.363a.233.233 0 00-.188.086.124.124 0 00-.021.113l1.124 3.957c.024.083.097.167.203.167h.361c.098 0 .183-.071.208-.171l.691-2.636.753 2.639c.023.08.096.168.202.168h.356a.213.213 0 00.206-.169l1.082-3.954a.128.128 0 00-.02-.116.23.23 0 00-.186-.085zm3.12 1.68h-1.906c.044-.532.391-1.084.98-1.105.626.02.913.56.927 1.105zm-.927-1.708c-1.289 0-1.875 1.132-1.875 2.184 0 1.313.729 2.162 1.858 2.162.808 0 1.423-.406 1.69-1.115a.149.149 0 00-.013-.124.21.21 0 00-.14-.098l-.357-.068c-.096-.014-.206.042-.242.124-.174.394-.49.618-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.823l2.589-.001c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.022-.476-2.115-1.776-2.115zm4.961 2.138l-.002.166c-.017.383-.137 1.342-.906 1.37a.965.965 0 01-.745-.431c-.12-.19-.191-.451-.21-.775v-.712c.015-.545.4-1.143.953-1.166.819.032.903 1.198.91 1.548zm-.772-2.175h-.069c-.427 0-.763.177-1.021.539v-1.668c0-.094-.098-.18-.205-.18h-.373c-.097 0-.206.077-.206.18v5.207c0 .094.098.18.205.18h.11c.103 0 .176-.083.2-.16l.117-.367c.27.382.678.606 1.115.606h.066c1.15 0 1.663-1.111 1.663-2.212 0-.548-.136-1.072-.372-1.438a1.487 1.487 0 00-1.23-.687zm5.68 2.11c-.243-.173-.534-.23-.826-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.372.388-.514.717-.523.401.01.703.188.85.502a.217.217 0 00.192.123l.04-.004.35-.077a.216.216 0 00.138-.102.148.148 0 00.015-.123c-.214-.618-.756-.945-1.576-.945-.741.002-1.533.33-1.533 1.244 0 .626.395 1.023 1.176 1.18l.625.12c.344.065.695.181.695.548 0 .543-.635.598-.827.602-.431-.009-.92-.2-1.038-.605-.024-.089-.136-.152-.235-.131l-.365.074a.21.21 0 00-.134.095.158.158 0 00-.02.126c.175.627.755 1.022 1.567 1.077l.197.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm3.69-.361h-1.907c.043-.533.39-1.085.98-1.105.626.02.913.559.927 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.406 1.69-1.115a.15.15 0 00-.012-.124.21.21 0 00-.14-.097l-.358-.068c-.083-.014-.2.03-.241.124-.174.393-.49.617-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.824h2.589c.054 0 .11-.024.149-.064a.163.163 0 00.051-.116c-.006-1.023-.476-2.116-1.777-2.116zm4.222.049c-.05-.006-.1-.009-.147-.009-.434 0-.787.235-1.032.684l.001-.393c0-.095-.096-.179-.204-.179h-.324c-.106 0-.2.084-.2.18v3.818c0 .096.093.18.2.18h.377c.098 0 .209-.077.21-.18v-1.925c0-.317.03-.556.182-.839.218-.403.522-.6.93-.604.102 0 .192-.09.192-.19v-.357c0-.093-.081-.175-.185-.186zm3.96-.075h-.297c-.094 0-.213.066-.242.164l-.966 3.018-.986-3.015c-.03-.1-.15-.167-.243-.167h-.425a.24.24 0 00-.193.087.124.124 0 00-.02.115l1.35 3.981c.026.079.095.171.203.171h.515c.095 0 .172-.064.208-.171l1.309-3.98a.123.123 0 00-.02-.114.24.24 0 00-.192-.09zm.98-1.53a.497.497 0 100 .994.497.497 0 000-.995zm.204 1.505h-.408c-.111 0-.213.09-.213.187l-.002 4.054c0 .049.026.098.07.134a.23.23 0 00.143.052h.412c.113 0 .212-.088.212-.186v-4.054c0-.1-.1-.187-.214-.187zm3.818 2.75h-.34a.22.22 0 00-.211.156c-.125.535-.407.812-.835.824-.834-.025-.898-1.18-.898-1.534 0-.705.245-1.465.93-1.485.414.012.715.307.806.788a.223.223 0 00.196.185l.365.004c.109-.012.195-.094.194-.196-.13-.869-.735-1.43-1.544-1.43h-.06c-1.176 0-1.703 1.092-1.703 2.174 0 .992.444 2.15 1.697 2.15h.06c.789 0 1.384-.55 1.555-1.44a.16.16 0 00-.041-.12.242.242 0 00-.17-.077zm3.37-.99h-1.908c.044-.533.391-1.085.98-1.105.627.02.914.559.928 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.405 1.69-1.114a.151.151 0 00-.013-.125.208.208 0 00-.139-.097l-.358-.068c-.084-.014-.2.03-.241.124-.175.393-.492.617-.888.63a1.03 1.03 0 01-.894-.576c-.131-.276-.15-.547-.153-.824h2.59c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.023-.476-2.116-1.777-2.116zm5.02 2.07c-.242-.173-.534-.23-.825-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.48.6-.52.716-.523.402.01.704.188.85.502a.218.218 0 00.193.123l.042-.004.348-.077a.217.217 0 00.139-.102.148.148 0 00.014-.123c-.213-.618-.756-.945-1.576-.945-.74.002-1.532.33-1.532 1.244 0 .626.395 1.023 1.175 1.18l.626.12c.344.065.695.181.695.548 0 .543-.636.598-.828.602-.4-.008-.911-.172-1.037-.604-.023-.09-.136-.153-.236-.132l-.365.074a.212.212 0 00-.135.096.158.158 0 00-.02.125c.176.627.756 1.022 1.567 1.077l.198.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm-16.608-9.925v-.92c0-.14.107-.234.235-.233h4.147a.23.23 0 01.24.232v.789c-.002.094-.06.21-.165.368l-2.296 3.261c.797-.019 1.64.1 2.365.505.163.091.207.226.22.359v.982c0 .135-.149.292-.305.21-1.277-.665-2.97-.737-4.383.008-.144.076-.295-.078-.295-.213v-.933c0-.15.003-.405.155-.633l2.489-3.55h-2.167c-.133 0-.239-.094-.24-.232zm-3.99-1.334c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.005.333-.257.215-.715.61-.967.833a.273.273 0 01-.301.027c-.419-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.889-.651-1.889-1.955 0-1.018.555-1.71 1.346-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.154-.644-.153-.23-.448-.325-.708-.325-.441 0-.837.206-.981.631l-.033.122c-.021.113-.105.225-.22.23l-1.222-.131c-.103-.023-.218-.105-.188-.262.281-1.476 1.62-1.921 2.822-1.921zm-16.54 0c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.004.333-.258.215-.716.61-.968.833a.274.274 0 01-.301.027c-.42-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.89-.651-1.89-1.955 0-1.018.556-1.71 1.347-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.153-.644-.154-.23-.45-.325-.708-.325-.442 0-.838.206-.982.631l-.033.122c-.022.113-.105.225-.219.23l-1.223-.131c-.103-.023-.218-.105-.188-.262.28-1.476 1.62-1.921 2.821-1.921zm10.628.062c.53 0 1.107.217 1.46.704.4.543.318 1.328.318 2.02v4.063a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.414c0-.271.024-.949-.035-1.206-.095-.434-.377-.555-.742-.555a.837.837 0 00-.754.527c-.093.233-.113.576-.117.886v3.761a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.639c.012-.694.027-1.55-.778-1.55-.816 0-.87.834-.872 1.544v3.644a.237.237 0 01-.244.232h-1.262a.237.237 0 01-.225-.212v-6.44c0-.128.11-.231.244-.231l1.175-.001c.123.007.222.1.23.216v.842h.023c.306-.814.883-1.193 1.66-1.193.79 0 1.284.38 1.638 1.193.306-.814 1-1.193 1.743-1.193zm6.596 4.123v-.451l-.261.006c-.826.039-1.616.29-1.616 1.257 0 .543.284.91.767.91.354 0 .673-.217.874-.57.217-.38.235-.74.236-1.152zm-16.542.174l.002-.625-.261.006c-.827.039-1.616.29-1.616 1.257 0 .543.283.91.768.91.354 0 .673-.217.873-.57.186-.326.226-.637.234-.978zm28.051-2.983c-.842 0-.97 1.032-.987 1.81l-.002.45c.005.84.07 2.252.978 2.252.977 0 1.024-1.355 1.024-2.181 0-.542-.023-1.192-.188-1.707-.128-.403-.369-.586-.708-.618L51 10.803zM50.99 9.49c1.872 0 2.885 1.599 2.885 3.63 0 1.966-1.12 3.524-2.885 3.524-1.838 0-2.84-1.599-2.84-3.59 0-2.006 1.013-3.564 2.84-3.564zm5.314 7.019h-1.257a.236.236 0 01-.227-.231l-.002-6.442a.238.238 0 01.242-.21l1.171-.001c.11.006.2.08.224.18v.986h.024c.353-.881.848-1.3 1.719-1.3.565 0 1.12.202 1.472.758.33.514.33 1.381.33 2.005v4.052a.239.239 0 01-.241.203h-1.266a.238.238 0 01-.224-.203l.001-3.947c-.006-.625-.093-1.284-.79-1.284-.307 0-.589.204-.73.515-.177.393-.2.786-.2 1.22v3.467a.241.241 0 01-.246.232z"
|
|
33
|
+
})]
|
|
34
|
+
})
|
|
35
|
+
}));
|
|
36
|
+
});
|
|
37
|
+
export default Icon;
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
height: size,
|
|
18
|
+
ref: ref,
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
flex: 'none',
|
|
21
|
+
lineHeight: 1,
|
|
22
|
+
width: 'fit-content'
|
|
23
|
+
}, style),
|
|
24
|
+
viewBox: "0 0 61 24",
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, rest), {}, {
|
|
27
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M5.323 16.931l3.433 1.012L8.752 23l-3.429-1.138v-4.931zm7.757 0l-.012 4.928L9.647 23v-5.057l3.433-1.012zm-3.9-1.517l3.2.983-3.195.843-3.162-.843 3.158-.983zm-.424-5.69l-.011 4.928-3.422 1.141v-5.057l3.433-1.012zm.89 0l3.434 1.012-.004 5.057-3.43-1.138v-4.93zm7.757 0l-.012 4.928-3.421 1.141v-5.057l3.433-1.012zM1 9.724l3.433 1.012-.004 5.057L1 14.655v-4.93zm12.504-1.517l3.2.983-3.195.843-3.163-.843 3.158-.983zm-8.647 0l3.2.983-3.195.843-3.163-.843 3.158-.983zm9.113-5.69l3.433 1.012-.004 5.057-3.43-1.138v-4.93zm7.756 0l-.012 4.928-3.42 1.141V3.53l3.432-1.012zM17.827 1l3.2.983-3.195.843-3.163-.843L17.827 1zm4.79 1.517L26.05 3.53l-.005 5.057-3.429-1.138v-4.93zm7.756 0l-.012 4.928-3.421 1.141V3.53l3.433-1.012zM26.473 1l3.2.983-3.195.843-3.162-.843L26.474 1z"
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M23.938 18.641l-.253.001c-.092 0-.21.062-.24.163l-.765 2.681-.757-2.675c-.022-.084-.102-.169-.21-.169h-.299c-.107 0-.186.086-.207.17l-.705 2.648-.727-2.656c-.029-.097-.15-.162-.245-.162h-.363a.233.233 0 00-.188.086.124.124 0 00-.021.113l1.124 3.957c.024.083.097.167.203.167h.361c.098 0 .183-.071.208-.171l.691-2.636.753 2.639c.023.08.096.168.202.168h.356a.213.213 0 00.206-.169l1.082-3.954a.128.128 0 00-.02-.116.23.23 0 00-.186-.085zm3.12 1.68h-1.906c.044-.532.391-1.084.98-1.105.626.02.913.56.927 1.105zm-.927-1.708c-1.289 0-1.875 1.132-1.875 2.184 0 1.313.729 2.162 1.858 2.162.808 0 1.423-.406 1.69-1.115a.149.149 0 00-.013-.124.21.21 0 00-.14-.098l-.357-.068c-.096-.014-.206.042-.242.124-.174.394-.49.618-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.823l2.589-.001c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.022-.476-2.115-1.776-2.115zm4.961 2.138l-.002.166c-.017.383-.137 1.342-.906 1.37a.965.965 0 01-.745-.431c-.12-.19-.191-.451-.21-.775v-.712c.015-.545.4-1.143.953-1.166.819.032.903 1.198.91 1.548zm-.772-2.175h-.069c-.427 0-.763.177-1.021.539v-1.668c0-.094-.098-.18-.205-.18h-.373c-.097 0-.206.077-.206.18v5.207c0 .094.098.18.205.18h.11c.103 0 .176-.083.2-.16l.117-.367c.27.382.678.606 1.115.606h.066c1.15 0 1.663-1.111 1.663-2.212 0-.548-.136-1.072-.372-1.438a1.487 1.487 0 00-1.23-.687zm5.68 2.11c-.243-.173-.534-.23-.826-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.372.388-.514.717-.523.401.01.703.188.85.502a.217.217 0 00.192.123l.04-.004.35-.077a.216.216 0 00.138-.102.148.148 0 00.015-.123c-.214-.618-.756-.945-1.576-.945-.741.002-1.533.33-1.533 1.244 0 .626.395 1.023 1.176 1.18l.625.12c.344.065.695.181.695.548 0 .543-.635.598-.827.602-.431-.009-.92-.2-1.038-.605-.024-.089-.136-.152-.235-.131l-.365.074a.21.21 0 00-.134.095.158.158 0 00-.02.126c.175.627.755 1.022 1.567 1.077l.197.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm3.69-.361h-1.907c.043-.533.39-1.085.98-1.105.626.02.913.559.927 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.406 1.69-1.115a.15.15 0 00-.012-.124.21.21 0 00-.14-.097l-.358-.068c-.083-.014-.2.03-.241.124-.174.393-.49.617-.888.63a1.03 1.03 0 01-.894-.576c-.13-.275-.15-.547-.152-.824h2.589c.054 0 .11-.024.149-.064a.163.163 0 00.051-.116c-.006-1.023-.476-2.116-1.777-2.116zm4.222.049c-.05-.006-.1-.009-.147-.009-.434 0-.787.235-1.032.684l.001-.393c0-.095-.096-.179-.204-.179h-.324c-.106 0-.2.084-.2.18v3.818c0 .096.093.18.2.18h.377c.098 0 .209-.077.21-.18v-1.925c0-.317.03-.556.182-.839.218-.403.522-.6.93-.604.102 0 .192-.09.192-.19v-.357c0-.093-.081-.175-.185-.186zm3.96-.075h-.297c-.094 0-.213.066-.242.164l-.966 3.018-.986-3.015c-.03-.1-.15-.167-.243-.167h-.425a.24.24 0 00-.193.087.124.124 0 00-.02.115l1.35 3.981c.026.079.095.171.203.171h.515c.095 0 .172-.064.208-.171l1.309-3.98a.123.123 0 00-.02-.114.24.24 0 00-.192-.09zm.98-1.53a.497.497 0 100 .994.497.497 0 000-.995zm.204 1.505h-.408c-.111 0-.213.09-.213.187l-.002 4.054c0 .049.026.098.07.134a.23.23 0 00.143.052h.412c.113 0 .212-.088.212-.186v-4.054c0-.1-.1-.187-.214-.187zm3.818 2.75h-.34a.22.22 0 00-.211.156c-.125.535-.407.812-.835.824-.834-.025-.898-1.18-.898-1.534 0-.705.245-1.465.93-1.485.414.012.715.307.806.788a.223.223 0 00.196.185l.365.004c.109-.012.195-.094.194-.196-.13-.869-.735-1.43-1.544-1.43h-.06c-1.176 0-1.703 1.092-1.703 2.174 0 .992.444 2.15 1.697 2.15h.06c.789 0 1.384-.55 1.555-1.44a.16.16 0 00-.041-.12.242.242 0 00-.17-.077zm3.37-.99h-1.908c.044-.533.391-1.085.98-1.105.627.02.914.559.928 1.105zm-.929-1.709c-1.288 0-1.875 1.133-1.875 2.185 0 1.313.73 2.161 1.858 2.161.808 0 1.424-.405 1.69-1.114a.151.151 0 00-.013-.125.208.208 0 00-.139-.097l-.358-.068c-.084-.014-.2.03-.241.124-.175.393-.492.617-.888.63a1.03 1.03 0 01-.894-.576c-.131-.276-.15-.547-.153-.824h2.59c.054 0 .11-.024.15-.064a.163.163 0 00.05-.116c-.006-1.023-.476-2.116-1.777-2.116zm5.02 2.07c-.242-.173-.534-.23-.825-.288l-.559-.103c-.4-.066-.633-.173-.633-.525 0-.48.6-.52.716-.523.402.01.704.188.85.502a.218.218 0 00.193.123l.042-.004.348-.077a.217.217 0 00.139-.102.148.148 0 00.014-.123c-.213-.618-.756-.945-1.576-.945-.74.002-1.532.33-1.532 1.244 0 .626.395 1.023 1.175 1.18l.626.12c.344.065.695.181.695.548 0 .543-.636.598-.828.602-.4-.008-.911-.172-1.037-.604-.023-.09-.136-.153-.236-.132l-.365.074a.212.212 0 00-.135.096.158.158 0 00-.02.125c.176.627.756 1.022 1.567 1.077l.198.007c.807 0 1.67-.344 1.67-1.308 0-.393-.177-.744-.487-.964zm-16.608-9.925v-.92c0-.14.107-.234.235-.233h4.147a.23.23 0 01.24.232v.789c-.002.094-.06.21-.165.368l-2.296 3.261c.797-.019 1.64.1 2.365.505.163.091.207.226.22.359v.982c0 .135-.149.292-.305.21-1.277-.665-2.97-.737-4.383.008-.144.076-.295-.078-.295-.213v-.933c0-.15.003-.405.155-.633l2.489-3.55h-2.167c-.133 0-.239-.094-.24-.232zm-3.99-1.334c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.005.333-.257.215-.715.61-.967.833a.273.273 0 01-.301.027c-.419-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.889-.651-1.889-1.955 0-1.018.555-1.71 1.346-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.154-.644-.153-.23-.448-.325-.708-.325-.441 0-.837.206-.981.631l-.033.122c-.021.113-.105.225-.22.23l-1.222-.131c-.103-.023-.218-.105-.188-.262.281-1.476 1.62-1.921 2.822-1.921zm-16.54 0c.613 0 1.416.162 1.9.624.482.448.549 1.014.555 1.637v2.477c0 .588.245.846.476 1.163.08.114.098.25-.004.333-.258.215-.716.61-.968.833a.274.274 0 01-.301.027c-.42-.346-.494-.507-.723-.836-.693.701-1.183.911-2.08.911-1.063 0-1.89-.651-1.89-1.955 0-1.018.556-1.71 1.347-2.05.684-.3 1.64-.354 2.372-.435v-.429c-.003-.227-.027-.46-.153-.644-.154-.23-.45-.325-.708-.325-.442 0-.838.206-.982.631l-.033.122c-.022.113-.105.225-.219.23l-1.223-.131c-.103-.023-.218-.105-.188-.262.28-1.476 1.62-1.921 2.821-1.921zm10.628.062c.53 0 1.107.217 1.46.704.4.543.318 1.328.318 2.02v4.063a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.414c0-.271.024-.949-.035-1.206-.095-.434-.377-.555-.742-.555a.837.837 0 00-.754.527c-.093.233-.113.576-.117.886v3.761a.238.238 0 01-.244.232h-1.26a.236.236 0 01-.227-.231v-3.639c.012-.694.027-1.55-.778-1.55-.816 0-.87.834-.872 1.544v3.644a.237.237 0 01-.244.232h-1.262a.237.237 0 01-.225-.212v-6.44c0-.128.11-.231.244-.231l1.175-.001c.123.007.222.1.23.216v.842h.023c.306-.814.883-1.193 1.66-1.193.79 0 1.284.38 1.638 1.193.306-.814 1-1.193 1.743-1.193zm6.596 4.123v-.451l-.261.006c-.826.039-1.616.29-1.616 1.257 0 .543.284.91.767.91.354 0 .673-.217.874-.57.217-.38.235-.74.236-1.152zm-16.542.174l.002-.625-.261.006c-.827.039-1.616.29-1.616 1.257 0 .543.283.91.768.91.354 0 .673-.217.873-.57.186-.326.226-.637.234-.978zm28.051-2.983c-.842 0-.97 1.032-.987 1.81l-.002.45c.005.84.07 2.252.978 2.252.977 0 1.024-1.355 1.024-2.181 0-.542-.023-1.192-.188-1.707-.128-.403-.369-.586-.708-.618L51 10.803zM50.99 9.49c1.872 0 2.885 1.599 2.885 3.63 0 1.966-1.12 3.524-2.885 3.524-1.838 0-2.84-1.599-2.84-3.59 0-2.006 1.013-3.564 2.84-3.564zm5.314 7.019h-1.257a.236.236 0 01-.227-.231l-.002-6.442a.238.238 0 01.242-.21l1.171-.001c.11.006.2.08.224.18v.986h.024c.353-.881.848-1.3 1.719-1.3.565 0 1.12.202 1.472.758.33.514.33 1.381.33 2.005v4.052a.239.239 0 01-.241.203h-1.266a.238.238 0 01-.224-.203l.001-3.947c-.006-.625-.093-1.284-.79-1.284-.307 0-.589.204-.73.515-.177.393-.2.786-.2 1.22v3.467a.241.241 0 01-.246.232z"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
}));
|
|
35
|
+
});
|
|
36
|
+
export default Icon;
|
|
@@ -0,0 +1,37 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
height: size,
|
|
18
|
+
ref: ref,
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
flex: 'none',
|
|
21
|
+
lineHeight: 1
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
width: size,
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, rest), {}, {
|
|
27
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M6.763 11.212c0 .296.032.535.088.71.064.176.144.368.256.576.04.063.056.127.056.183 0 .08-.048.16-.152.24l-.503.335a.383.383 0 01-.208.072c-.08 0-.16-.04-.239-.112a2.47 2.47 0 01-.287-.375 6.18 6.18 0 01-.248-.471c-.622.734-1.405 1.101-2.347 1.101-.67 0-1.205-.191-1.596-.574-.39-.384-.59-.894-.59-1.533 0-.678.24-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583c0-.607-.127-1.03-.375-1.277-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103-.295.072-.583.16-.862.272a2.4 2.4 0 01-.28.104.488.488 0 01-.127.023c-.112 0-.168-.08-.168-.247v-.391c0-.128.016-.224.056-.28a.597.597 0 01.224-.167 4.577 4.577 0 011.005-.36 4.84 4.84 0 011.246-.151c.95 0 1.644.216 2.091.647.44.43.662 1.085.662 1.963v2.586h.016zm-3.24 1.214c.263 0 .534-.048.822-.144a1.78 1.78 0 00.758-.51 1.27 1.27 0 00.272-.512c.047-.191.08-.423.08-.694v-.335a6.66 6.66 0 00-.735-.136 6.02 6.02 0 00-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296zm6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 6.726a1.398 1.398 0 01-.072-.32c0-.128.064-.2.191-.2h.783c.151 0 .255.025.31.08.065.048.113.16.16.312l1.342 5.284 1.245-5.284c.04-.16.088-.264.151-.312a.549.549 0 01.32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348c.048-.16.104-.264.16-.312a.52.52 0 01.311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1.137 1.137 0 01-.056.2l-1.923 6.17c-.048.16-.104.263-.168.311a.51.51 0 01-.303.08h-.687c-.15 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32L12.32 7.747l-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08l-.686.001zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.563.563 0 01-.048-.224v-.407c0-.167.064-.247.183-.247.048 0 .096.008.144.024.048.016.12.048.2.08.271.12.566.215.878.279.32.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 00.415-.758.777.777 0 00-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.902 1.902 0 01-.4-1.158c0-.335.073-.63.216-.886.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .36.008.535.032.183.024.35.056.518.088.16.04.312.08.455.127.144.048.256.096.336.144a.69.69 0 01.24.2.43.43 0 01.071.263v.375c0 .168-.064.256-.184.256a.83.83 0 01-.303-.096 3.652 3.652 0 00-1.532-.311c-.455 0-.815.071-1.062.223-.248.152-.375.383-.375.71 0 .224.08.416.24.567.16.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767.247.327.367.702.367 1.117 0 .343-.072.655-.207.926a2.157 2.157 0 01-.583.703c-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167z"
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M.378 15.475c3.384 1.963 7.56 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.44-.2.814.287.383.607-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351zm23.531-.2c.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151l.175-.439c.343-.88.802-2.198.52-2.555-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399z",
|
|
32
|
+
fill: "#F90"
|
|
33
|
+
})]
|
|
34
|
+
})
|
|
35
|
+
}));
|
|
36
|
+
});
|
|
37
|
+
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,25 @@
|
|
|
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 } 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
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
22
|
+
textMultiple: TEXT_MULTIPLE
|
|
23
|
+
}, rest));
|
|
24
|
+
});
|
|
25
|
+
export default Combine;
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
height: size,
|
|
18
|
+
ref: ref,
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
flex: 'none',
|
|
21
|
+
lineHeight: 1
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
width: size,
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, rest), {}, {
|
|
27
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M6.763 11.212c0 .296.032.535.088.71.064.176.144.368.256.576.04.063.056.127.056.183 0 .08-.048.16-.152.24l-.503.335a.383.383 0 01-.208.072c-.08 0-.16-.04-.239-.112a2.47 2.47 0 01-.287-.375 6.18 6.18 0 01-.248-.471c-.622.734-1.405 1.101-2.347 1.101-.67 0-1.205-.191-1.596-.574-.39-.384-.59-.894-.59-1.533 0-.678.24-1.23.726-1.644.487-.415 1.133-.623 1.955-.623.272 0 .551.024.846.064.296.04.6.104.918.176v-.583c0-.607-.127-1.03-.375-1.277-.255-.248-.686-.367-1.3-.367-.28 0-.568.031-.863.103-.295.072-.583.16-.862.272-.09.04-.184.075-.28.104a.488.488 0 01-.127.023c-.112 0-.168-.08-.168-.247v-.391c0-.128.016-.224.056-.28a.597.597 0 01.224-.167 4.577 4.577 0 011.005-.36 4.84 4.84 0 011.246-.151c.95 0 1.644.216 2.091.647.44.43.662 1.085.662 1.963v2.586h.016zm-3.24 1.214c.263 0 .534-.048.822-.144a1.78 1.78 0 00.758-.51 1.27 1.27 0 00.272-.512c.047-.191.08-.423.08-.694v-.335a6.66 6.66 0 00-.735-.136 6.02 6.02 0 00-.75-.048c-.535 0-.926.104-1.19.32-.263.215-.39.518-.39.917 0 .375.095.655.295.846.191.2.47.296.838.296zm6.41.862c-.144 0-.24-.024-.304-.08-.064-.048-.12-.16-.168-.311L7.586 6.726a1.398 1.398 0 01-.072-.32c0-.128.064-.2.191-.2h.783c.151 0 .255.025.31.08.065.048.113.16.16.312l1.342 5.284 1.245-5.284c.04-.16.088-.264.151-.312a.549.549 0 01.32-.08h.638c.152 0 .256.025.32.08.063.048.12.16.151.312l1.261 5.348 1.381-5.348c.048-.16.104-.264.16-.312a.52.52 0 01.311-.08h.743c.127 0 .2.065.2.2 0 .04-.009.08-.017.128a1.137 1.137 0 01-.056.2l-1.923 6.17c-.048.16-.104.263-.168.311a.51.51 0 01-.303.08h-.687c-.15 0-.255-.024-.32-.08-.063-.056-.119-.16-.15-.32L12.32 7.747l-1.23 5.14c-.04.16-.087.264-.15.32-.065.056-.177.08-.32.08l-.686.001zm10.256.215c-.415 0-.83-.048-1.229-.143-.399-.096-.71-.2-.918-.32-.128-.071-.215-.151-.247-.223a.563.563 0 01-.048-.224v-.407c0-.167.064-.247.183-.247.048 0 .096.008.144.024.048.016.12.048.2.08.271.12.566.215.878.279.32.064.63.096.95.096.502 0 .894-.088 1.165-.264a.86.86 0 00.415-.758.777.777 0 00-.215-.559c-.144-.151-.416-.287-.807-.415l-1.157-.36c-.583-.183-1.014-.454-1.277-.813a1.902 1.902 0 01-.4-1.158c0-.335.073-.63.216-.886.144-.255.335-.479.575-.654.24-.184.51-.32.83-.415.32-.096.655-.136 1.006-.136.175 0 .36.008.535.032.183.024.35.056.518.088.16.04.312.08.455.127.144.048.256.096.336.144a.69.69 0 01.24.2.43.43 0 01.071.263v.375c0 .168-.064.256-.184.256a.83.83 0 01-.303-.096 3.652 3.652 0 00-1.532-.311c-.455 0-.815.071-1.062.223-.248.152-.375.383-.375.71 0 .224.08.416.24.567.16.152.454.304.877.44l1.134.358c.574.184.99.44 1.237.767.247.327.367.702.367 1.117 0 .343-.072.655-.207.926a2.157 2.157 0 01-.583.703c-.248.2-.543.343-.886.447-.36.111-.734.167-1.142.167z"
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M.378 15.475c3.384 1.963 7.56 3.153 11.877 3.153 2.914 0 6.114-.607 9.06-1.852.44-.2.814.287.383.607-2.626 1.94-6.442 2.969-9.722 2.969-4.598 0-8.74-1.7-11.87-4.526-.247-.223-.024-.527.272-.351zm23.531-.2c.287.36-.08 2.826-1.485 4.007-.215.184-.423.088-.327-.151l.175-.439c.343-.88.802-2.198.52-2.555-.336-.43-2.22-.207-3.074-.103-.255.032-.295-.192-.063-.36 1.5-1.053 3.967-.75 4.254-.399z"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
}));
|
|
35
|
+
});
|
|
36
|
+
export default Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { jsx as _jsx } 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__*/_jsx("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 65 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
27
|
+
d: "M9.409 15.585l-.375.001c-.138 0-.313.092-.356.24L7.541 19.78l-1.125-3.945c-.034-.123-.152-.249-.313-.249H5.66c-.16 0-.276.127-.308.252L4.304 19.74l-1.081-3.915c-.043-.143-.223-.24-.363-.24h-.54a.347.347 0 00-.28.127.182.182 0 00-.032.166l1.67 5.834c.038.123.145.246.303.246h.536a.323.323 0 00.309-.252l1.028-3.886 1.119 3.89c.034.12.142.248.3.248h.528c.147 0 .27-.1.307-.248l1.608-5.83a.187.187 0 00-.03-.17.343.343 0 00-.277-.126zm4.638 2.477h-2.834c.066-.785.582-1.598 1.457-1.63.931.03 1.357.825 1.377 1.63zm-1.38-2.519c-1.913 0-2.785 1.67-2.785 3.221 0 1.936 1.084 3.187 2.76 3.187 1.201 0 2.117-.599 2.512-1.644a.218.218 0 00-.019-.183.313.313 0 00-.207-.143l-.53-.1c-.144-.023-.307.06-.361.182-.258.58-.729.91-1.32.927a1.533 1.533 0 01-1.328-.848c-.194-.406-.223-.806-.226-1.214l3.847-.001c.08 0 .164-.035.223-.094a.239.239 0 00.076-.17c-.01-1.508-.708-3.12-2.641-3.12zm7.374 3.153l-.003.245c-.026.564-.204 1.978-1.346 2.019a1.437 1.437 0 01-1.108-.635c-.18-.28-.284-.665-.31-1.143v-1.049c.02-.804.594-1.686 1.414-1.72 1.217.048 1.343 1.767 1.353 2.283zm-1.147-3.207h-.102c-.636 0-1.135.26-1.519.794v-2.459c0-.138-.145-.264-.304-.264h-.554c-.144 0-.306.113-.306.264v7.677c0 .14.145.266.304.266h.163c.153 0 .262-.122.3-.236l.172-.542c.402.564 1.008.894 1.656.894h.1c1.707 0 2.47-1.638 2.47-3.261 0-.808-.201-1.58-.553-2.12-.407-.625-1.107-1.013-1.827-1.013zm8.44 3.112c-.36-.255-.793-.34-1.226-.426l-.831-.152c-.597-.097-.942-.254-.942-.773 0-.549.577-.758 1.065-.772.597.015 1.046.278 1.264.74a.323.323 0 00.286.182l.06-.006.519-.113a.322.322 0 00.206-.15.217.217 0 00.02-.182c-.316-.911-1.122-1.393-2.34-1.393-1.102.002-2.278.485-2.278 1.834 0 .922.587 1.508 1.746 1.74l.93.175c.511.097 1.033.268 1.033.81 0 .8-.944.881-1.23.887-.64-.013-1.366-.295-1.542-.892-.035-.131-.202-.224-.35-.194l-.542.11a.313.313 0 00-.2.14.232.232 0 00-.03.185c.262.925 1.124 1.507 2.33 1.588l.293.01c1.2 0 2.482-.507 2.482-1.928a1.71 1.71 0 00-.724-1.42zm5.484-.533h-2.835c.065-.786.582-1.6 1.457-1.63.93.03 1.357.825 1.378 1.63zm-1.38-2.52c-1.915 0-2.787 1.67-2.787 3.222 0 1.935 1.084 3.186 2.762 3.186 1.2 0 2.116-.599 2.511-1.644a.22.22 0 00-.018-.183.311.311 0 00-.207-.143l-.532-.1c-.125-.02-.299.043-.36.182-.258.58-.729.91-1.319.928a1.532 1.532 0 01-1.328-.848c-.195-.406-.224-.806-.227-1.215h3.847c.08 0 .164-.036.222-.094a.24.24 0 00.076-.171c-.009-1.508-.707-3.12-2.64-3.12zm6.273.072a2.01 2.01 0 00-.217-.012c-.646 0-1.17.346-1.534 1.008l.001-.58c0-.14-.142-.263-.303-.263h-.48c-.159 0-.298.123-.299.266v5.628c0 .141.139.265.297.265h.561c.146 0 .31-.113.311-.265v-2.838c0-.468.045-.82.272-1.237.323-.594.775-.886 1.381-.89a.292.292 0 00.286-.28v-.527c0-.138-.121-.259-.276-.275zm5.887-.11h-.443c-.139 0-.317.098-.36.242l-1.435 4.45-1.466-4.446c-.043-.147-.221-.246-.36-.246l-.633-.001a.36.36 0 00-.285.13.181.181 0 00-.03.168l2.005 5.87c.039.116.141.252.303.252h.765c.14 0 .255-.094.308-.252l1.946-5.868a.18.18 0 00-.03-.168.359.359 0 00-.285-.132zm1.454-2.257a.736.736 0 00-.74.732c0 .403.332.731.74.731s.74-.328.74-.731a.737.737 0 00-.74-.732zm.305 2.22h-.608c-.165 0-.315.132-.315.276l-.003 5.976a.26.26 0 00.103.198c.06.048.136.076.213.076l.612.001c.168-.001.315-.13.315-.274v-5.977c0-.147-.149-.275-.317-.275zm5.673 4.053l-.507.002a.327.327 0 00-.312.23c-.186.788-.605 1.196-1.241 1.214-1.239-.036-1.335-1.74-1.335-2.26 0-1.04.365-2.162 1.383-2.191.615.018 1.063.453 1.197 1.162a.33.33 0 00.291.273l.543.005c.162-.017.29-.138.288-.288-.192-1.281-1.091-2.109-2.294-2.109h-.088c-1.75 0-2.532 1.61-2.532 3.206 0 1.462.66 3.17 2.522 3.17h.089c1.172 0 2.057-.81 2.31-2.125a.234.234 0 00-.06-.176.36.36 0 00-.254-.113zm5.008-1.458h-2.836c.065-.786.582-1.6 1.457-1.63.931.03 1.357.825 1.379 1.63zm-1.38-2.52c-1.915 0-2.787 1.67-2.787 3.222 0 1.935 1.084 3.186 2.762 3.186 1.2 0 2.114-.598 2.51-1.643a.222.222 0 00-.019-.184.31.31 0 00-.206-.143l-.532-.1c-.125-.02-.298.043-.36.182-.258.58-.73.91-1.319.928a1.532 1.532 0 01-1.328-.848c-.195-.406-.224-.807-.227-1.215H57c.08 0 .164-.036.223-.095.05-.049.076-.11.075-.17-.009-1.508-.707-3.12-2.64-3.12zm7.46 3.053c-.36-.256-.794-.34-1.226-.426l-.831-.152c-.596-.097-.94-.254-.94-.773 0-.708.89-.767 1.063-.772.598.015 1.046.278 1.264.74a.324.324 0 00.287.182l.06-.006.519-.113a.322.322 0 00.206-.15.217.217 0 00.02-.182c-.316-.911-1.122-1.393-2.341-1.393-1.101.002-2.277.485-2.277 1.834 0 .922.587 1.508 1.746 1.74l.93.175c.511.097 1.033.268 1.033.81 0 .8-.944.881-1.23.887-.594-.012-1.354-.254-1.542-.891-.034-.132-.201-.225-.35-.195l-.542.11a.315.315 0 00-.2.141.23.23 0 00-.03.184c.26.925 1.122 1.507 2.328 1.588l.294.01c1.2 0 2.482-.507 2.482-1.928 0-.58-.264-1.097-.723-1.42zM37.436 3.968V2.61c.001-.206.16-.344.35-.344h6.163c.196 0 .355.141.355.342v1.164c-.001.14-.087.309-.243.542l-3.413 4.808c1.184-.028 2.438.147 3.514.744.244.135.308.335.328.53v1.448c0 .2-.221.43-.454.31-1.897-.98-4.414-1.088-6.512.011-.215.113-.439-.114-.439-.314v-1.376c0-.22.005-.597.23-.932l3.698-5.234-3.22-.001c-.197 0-.355-.139-.357-.341zM31.506 2c.912 0 2.106.24 2.825.92.716.662.815 1.495.825 2.415l-.001 3.65c0 .868.365 1.248.708 1.715.119.169.146.368-.007.492-.383.316-1.063.899-1.437 1.228a.409.409 0 01-.448.04c-.622-.511-.734-.748-1.075-1.234-1.029 1.035-1.758 1.345-3.09 1.345-1.58 0-2.807-.961-2.807-2.883 0-1.501.824-2.522 2-3.023 1.017-.44 2.438-.521 3.525-.641v-.632c-.005-.335-.04-.678-.229-.95-.227-.34-.665-.48-1.052-.48-.656 0-1.244.304-1.458.932l-.05.18c-.03.166-.155.33-.325.339l-1.816-.194c-.154-.034-.325-.155-.28-.386C27.73 2.657 29.722 2 31.507 2zM6.927 2c.913 0 2.106.24 2.825.92.717.662.816 1.495.826 2.415l-.002 3.65c0 .868.366 1.248.708 1.715.12.169.146.368-.006.492A75.1 75.1 0 009.84 12.42a.41.41 0 01-.447.04c-.623-.511-.735-.748-1.075-1.234-1.029 1.035-1.758 1.345-3.092 1.345-1.578 0-2.806-.961-2.806-2.883 0-1.501.825-2.522 2-3.023 1.017-.44 2.438-.521 3.525-.641l.001-.632c-.005-.335-.04-.678-.229-.95-.228-.34-.666-.48-1.052-.48-.655 0-1.245.304-1.458.932l-.05.18c-.032.166-.155.33-.325.339l-1.817-.194c-.154-.034-.324-.155-.28-.386C3.15 2.657 5.143 2 6.927 2zm15.796.093c.788 0 1.644.319 2.17 1.038.595.8.472 1.957.472 2.976l-.001 5.991c0 .19-.162.342-.361.342h-1.873a.35.35 0 01-.337-.34V7.065c0-.4.035-1.399-.053-1.778-.14-.64-.56-.818-1.102-.818-.456 0-.928.3-1.121.778-.137.343-.168.848-.174 1.306v5.544c0 .19-.163.342-.362.342h-1.873a.35.35 0 01-.337-.34l.002-5.365c.016-1.024.038-2.285-1.158-2.285-1.213 0-1.292 1.229-1.296 2.276v5.372c0 .19-.162.342-.362.342H13.08a.351.351 0 01-.335-.313l.002-9.493c0-.19.162-.342.361-.342h1.747c.182.01.329.145.341.318v1.24h.035c.455-1.199 1.312-1.757 2.467-1.757 1.173 0 1.908.558 2.433 1.757.455-1.199 1.488-1.757 2.591-1.757zm9.802 6.078v-.665l-.388.008c-1.228.058-2.4.429-2.4 1.854 0 .8.42 1.341 1.138 1.341.527 0 1-.32 1.299-.84.322-.561.35-1.091.35-1.698zM7.94 8.427l.003-.921-.388.008c-1.228.058-2.4.429-2.4 1.854 0 .8.42 1.341 1.14 1.341.526 0 1-.32 1.298-.84.276-.481.335-.94.347-1.442zM49.627 4.03c-1.252 0-1.442 1.52-1.467 2.668l-.003.663c.007 1.24.105 3.32 1.453 3.32 1.453 0 1.523-1.997 1.523-3.215 0-.8-.035-1.758-.28-2.517-.19-.594-.548-.863-1.053-.911l-.173-.008zm-.017-1.937c2.783 0 4.288 2.357 4.288 5.352 0 2.897-1.663 5.195-4.288 5.195-2.73 0-4.219-2.358-4.219-5.294 0-2.957 1.505-5.253 4.22-5.253zm7.897 10.347H55.64a.35.35 0 01-.336-.34L55.3 2.601a.353.353 0 01.36-.31h1.739a.356.356 0 01.333.265V4.01h.035c.525-1.299 1.26-1.917 2.555-1.917.84 0 1.663.298 2.188 1.118.49.759.49 2.037.49 2.956v5.974a.354.354 0 01-.358.3h-1.88a.353.353 0 01-.335-.3l.003-5.82c-.01-.92-.139-1.892-1.176-1.892-.454 0-.874.3-1.084.76-.263.578-.298 1.157-.298 1.797v5.112a.357.357 0 01-.365.342z"
|
|
28
|
+
})
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
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
|
+
Mono: typeof Mono;
|
|
15
|
+
Text: typeof Text;
|
|
16
|
+
colorPrimary: string;
|
|
17
|
+
};
|
|
18
|
+
declare const Icons: CompoundedIcon;
|
|
19
|
+
export default Icons;
|
package/es/Aws/index.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
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 } 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
|
+
export default Icons;
|
package/es/Aws/style.js
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
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_GRADIENT } 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
|
+
background: background || COLOR_GRADIENT,
|
|
17
|
+
color: '#fff'
|
|
18
|
+
}, rest));
|
|
19
|
+
});
|
|
20
|
+
export default Avatar;
|
|
@@ -0,0 +1,50 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
|
15
|
+
height: size,
|
|
16
|
+
ref: ref,
|
|
17
|
+
style: _objectSpread({
|
|
18
|
+
flex: 'none',
|
|
19
|
+
lineHeight: 1
|
|
20
|
+
}, style),
|
|
21
|
+
viewBox: "0 0 24 24",
|
|
22
|
+
width: size,
|
|
23
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
24
|
+
}, rest), {}, {
|
|
25
|
+
children: [/*#__PURE__*/_jsx("defs", {
|
|
26
|
+
children: /*#__PURE__*/_jsxs("linearGradient", {
|
|
27
|
+
id: "a",
|
|
28
|
+
x1: "80%",
|
|
29
|
+
x2: "20%",
|
|
30
|
+
y1: "20%",
|
|
31
|
+
y2: "80%",
|
|
32
|
+
children: [/*#__PURE__*/_jsx("stop", {
|
|
33
|
+
offset: "0%",
|
|
34
|
+
stopColor: "#6350FB"
|
|
35
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
36
|
+
offset: "50%",
|
|
37
|
+
stopColor: "#3D8FFF"
|
|
38
|
+
}), /*#__PURE__*/_jsx("stop", {
|
|
39
|
+
offset: "100%",
|
|
40
|
+
stopColor: "#9AD8F8"
|
|
41
|
+
})]
|
|
42
|
+
})
|
|
43
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
44
|
+
d: "M13.05 15.513h3.08c.214 0 .389.177.389.394v1.82a1.704 1.704 0 011.296 1.661c0 .943-.755 1.708-1.685 1.708-.931 0-1.686-.765-1.686-1.708 0-.807.554-1.484 1.297-1.662v-1.425h-2.69v4.663a.395.395 0 01-.188.338l-2.69 1.641a.385.385 0 01-.405-.002l-4.926-3.086a.395.395 0 01-.185-.336V16.3L2.196 14.87A.395.395 0 012 14.555L2 14.528V9.406c0-.14.073-.27.192-.34l2.465-1.462V4.448c0-.129.062-.249.165-.322l.021-.014L9.77 1.058a.385.385 0 01.407 0l2.69 1.675a.395.395 0 01.185.336V7.6h3.856V5.683a1.704 1.704 0 01-1.296-1.662c0-.943.755-1.708 1.685-1.708.931 0 1.685.765 1.685 1.708 0 .807-.553 1.484-1.296 1.662v2.311a.391.391 0 01-.389.394h-4.245v1.806h6.624a1.69 1.69 0 011.64-1.313c.93 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708a1.69 1.69 0 01-1.64-1.314H13.05v1.937h4.953l.915 1.18a1.66 1.66 0 01.84-.227c.931 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708-.93 0-1.685-.765-1.685-1.708 0-.346.102-.668.276-.937l-.724-.935H13.05v1.806zM9.973 1.856L7.93 3.122V6.09h-.778V3.604L5.435 4.669v2.945l2.11 1.36L9.712 7.61V5.334h.778V7.83c0 .136-.07.263-.184.335L7.963 9.638v2.081l1.422 1.009-.446.646-1.406-.998-1.53 1.005-.423-.66 1.605-1.055v-1.99L5.038 8.29l-2.26 1.34v1.676l1.972-1.189.398.677-2.37 1.429V14.3l2.166 1.258 2.27-1.368.397.677-2.176 1.311V19.3l1.876 1.175 2.365-1.426.398.678-2.017 1.216 1.918 1.201 2.298-1.403v-5.78l-4.758 2.893-.4-.675 5.158-3.136V3.289L9.972 1.856zM16.13 18.47a.913.913 0 00-.908.92c0 .507.406.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zm3.63-3.81a.913.913 0 00-.908.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92zm1.555-4.99a.913.913 0 00-.908.92c0 .507.407.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zM17.296 3.1a.913.913 0 00-.907.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92z",
|
|
45
|
+
fill: "url(#a)",
|
|
46
|
+
fillRule: "nonzero"
|
|
47
|
+
})]
|
|
48
|
+
}));
|
|
49
|
+
});
|
|
50
|
+
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,25 @@
|
|
|
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 } 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
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
22
|
+
textMultiple: TEXT_MULTIPLE
|
|
23
|
+
}, rest));
|
|
24
|
+
});
|
|
25
|
+
export default Combine;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { jsx as _jsx } 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__*/_jsx("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("path", {
|
|
27
|
+
d: "M13.05 15.513h3.08c.214 0 .389.177.389.394v1.82a1.704 1.704 0 011.296 1.661c0 .943-.755 1.708-1.685 1.708-.931 0-1.686-.765-1.686-1.708 0-.807.554-1.484 1.297-1.662v-1.425h-2.69v4.663a.395.395 0 01-.188.338l-2.69 1.641a.385.385 0 01-.405-.002l-4.926-3.086a.395.395 0 01-.185-.336V16.3L2.196 14.87A.395.395 0 012 14.555L2 14.528V9.406c0-.14.073-.27.192-.34l2.465-1.462V4.448c0-.129.062-.249.165-.322l.021-.014L9.77 1.058a.385.385 0 01.407 0l2.69 1.675a.395.395 0 01.185.336V7.6h3.856V5.683a1.704 1.704 0 01-1.296-1.662c0-.943.755-1.708 1.685-1.708.931 0 1.685.765 1.685 1.708 0 .807-.553 1.484-1.296 1.662v2.311a.391.391 0 01-.389.394h-4.245v1.806h6.624a1.69 1.69 0 011.64-1.313c.93 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708a1.69 1.69 0 01-1.64-1.314H13.05v1.937h4.953l.915 1.18a1.66 1.66 0 01.84-.227c.931 0 1.685.764 1.685 1.707 0 .943-.754 1.708-1.685 1.708-.93 0-1.685-.765-1.685-1.708 0-.346.102-.668.276-.937l-.724-.935H13.05v1.806zM9.973 1.856L7.93 3.122V6.09h-.778V3.604L5.435 4.669v2.945l2.11 1.36L9.712 7.61V5.334h.778V7.83c0 .136-.07.263-.184.335L7.963 9.638v2.081l1.422 1.009-.446.646-1.406-.998-1.53 1.005-.423-.66 1.605-1.055v-1.99L5.038 8.29l-2.26 1.34v1.676l1.972-1.189.398.677-2.37 1.429V14.3l2.166 1.258 2.27-1.368.397.677-2.176 1.311V19.3l1.876 1.175 2.365-1.426.398.678-2.017 1.216 1.918 1.201 2.298-1.403v-5.78l-4.758 2.893-.4-.675 5.158-3.136V3.289L9.972 1.856zM16.13 18.47a.913.913 0 00-.908.92c0 .507.406.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zm3.63-3.81a.913.913 0 00-.908.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92zm1.555-4.99a.913.913 0 00-.908.92c0 .507.407.918.908.918a.913.913 0 00.907-.919.913.913 0 00-.907-.92zM17.296 3.1a.913.913 0 00-.907.92c0 .508.406.92.907.92a.913.913 0 00.908-.92.913.913 0 00-.908-.92z"
|
|
28
|
+
})
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
export default Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { jsx as _jsx } 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__*/_jsx("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 214 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
27
|
+
d: "M13.269 14.167l-2.47-8.056-2.415 8.056h4.885zM2.555 21.556c-.37 0-.555-.14-.555-.417 0-.093.023-.208.07-.347l.152-.459L8.384 3.028a1.66 1.66 0 01.236-.43.745.745 0 01.291-.223c.111-.046.268-.07.472-.07h3.08c.297 0 .514.056.653.167.139.111.255.297.347.556l6.162 17.305.153.459c.046.139.069.254.069.347 0 .278-.185.417-.555.417h-3.053c-.278 0-.486-.051-.625-.153-.139-.102-.254-.292-.347-.57l-1.138-3.666H7.496l-1.083 3.666c-.092.278-.208.468-.347.57-.139.102-.356.153-.652.153H2.555zm19.54 0c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528V8.056c0-.26.056-.44.167-.542.11-.102.287-.153.527-.153h1.999c.378 0 .625.161.74.483l.259.878c.98-.648 1.864-1.106 2.65-1.375a7.465 7.465 0 012.43-.403c1.664 0 2.84.593 3.524 1.778.944-.63 1.832-1.083 2.665-1.36a8.103 8.103 0 012.58-.418c1.296 0 2.3.362 3.012 1.084.713.722 1.069 1.731 1.069 3.028v9.805c0 .24-.05.417-.153.528-.101.111-.282.167-.54.167h-2.665c-.241 0-.417-.056-.528-.167-.11-.111-.166-.287-.166-.528v-8.917c0-1.259-.565-1.888-1.693-1.888-1 0-2.008.24-3.026.722V20.86c0 .24-.05.417-.152.528-.102.111-.283.167-.542.167h-2.664c-.24 0-.417-.056-.528-.167-.11-.111-.166-.287-.166-.528v-8.917c0-1.259-.565-1.888-1.693-1.888-1.036 0-2.054.25-3.053.75V20.86c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-2.665zm27.7.444c-1.369 0-2.465-.389-3.289-1.167-.823-.777-1.235-1.814-1.235-3.11 0-.908.236-1.71.708-2.404s1.124-1.222 1.957-1.583c.832-.361 1.785-.542 2.859-.542.888 0 1.868.12 2.942.362v-1.39c0-.851-.176-1.435-.528-1.75-.351-.314-.999-.472-1.943-.472-1.118 0-2.36.176-3.728.527l-.518.14a1.095 1.095 0 01-.305.056c-.315 0-.472-.213-.472-.64v-1.25c0-.296.037-.5.11-.61.075-.111.241-.223.5-.334.648-.277 1.43-.495 2.346-.652a16.44 16.44 0 012.79-.237c1.905 0 3.297.385 4.176 1.153.88.769 1.319 1.977 1.319 3.625v9.14c0 .24-.051.416-.153.527-.102.111-.282.167-.541.167h-1.888c-.222 0-.393-.047-.513-.14-.12-.092-.208-.25-.264-.472l-.166-.638a6.708 6.708 0 01-1.985 1.236c-.75.305-1.475.458-2.179.458zm1.138-2.722c.463 0 .94-.102 1.43-.306a5.4 5.4 0 001.374-.833v-2.417a14.088 14.088 0 00-2.193-.194c-1.61 0-2.415.648-2.415 1.944 0 .574.158 1.019.472 1.334.315.314.759.472 1.332.472zm9.326 2.278c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528v-1.417c0-.296.033-.523.098-.68.064-.158.18-.338.347-.542l6.855-7.86h-6.328c-.24 0-.416-.056-.527-.168-.112-.11-.167-.287-.167-.527V8.056c0-.26.055-.44.167-.542.11-.102.286-.153.527-.153H70.64c.259 0 .44.051.541.153.102.102.153.282.153.542v1.472c0 .296-.033.523-.097.68-.065.158-.18.338-.347.542l-6.94 7.806h6.829c.259 0 .44.05.541.152.102.102.153.283.153.542v1.611c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-10.52zm19.374.416c-2.202 0-3.923-.662-5.163-1.986-1.24-1.324-1.86-3.171-1.86-5.542 0-2.351.62-4.19 1.86-5.513 1.24-1.325 2.96-1.987 5.163-1.987 2.202 0 3.923.662 5.162 1.987 1.24 1.324 1.86 3.162 1.86 5.513 0 2.37-.62 4.218-1.86 5.542-1.24 1.324-2.96 1.986-5.162 1.986zm0-3.11c1.943 0 2.914-1.473 2.914-4.418 0-2.925-.971-4.388-2.914-4.388s-2.915 1.463-2.915 4.388c0 2.945.972 4.417 2.915 4.417zm10.186 2.694c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528V8.056c0-.26.056-.44.167-.542.11-.102.287-.153.527-.153h1.999c.425 0 .684.204.777.611l.25.917c1.665-1.296 3.441-1.945 5.329-1.945 1.313 0 2.327.357 3.039 1.07.712.713 1.069 1.727 1.069 3.042v9.805c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-2.665c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528V12.25c0-.76-.166-1.315-.5-1.667-.332-.352-.841-.527-1.526-.527-1.018 0-2.026.314-3.025.944v9.861c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-2.665zm23.148 0c-.24 0-.416-.056-.527-.167-.11-.111-.166-.287-.166-.528V3c0-.26.055-.44.166-.542.111-.102.287-.152.527-.152h6.218c1.85 0 3.344.472 4.482 1.416 1.138.945 1.707 2.176 1.707 3.695 0 .944-.217 1.754-.652 2.43-.435.676-1.078 1.2-1.929 1.57 1.184.352 2.086.93 2.706 1.736.62.805.93 1.791.93 2.958 0 1.667-.62 2.99-1.86 3.972-1.24.982-2.905 1.473-4.996 1.473h-6.606zm6.523-2.973c1.887 0 2.831-.889 2.831-2.666 0-1.834-1.008-2.75-3.025-2.75h-3.081v5.416h3.275zm-.86-8.25c1.795 0 2.692-.833 2.692-2.5 0-1.703-.823-2.555-2.47-2.555h-2.637v5.055h2.415zm16.709 11.64c-2.35 0-4.14-.64-5.371-1.917-1.23-1.278-1.846-3.149-1.846-5.612 0-2.37.61-4.213 1.832-5.527 1.221-1.315 2.914-1.973 5.08-1.973 1.831 0 3.242.505 4.232 1.514.99 1.01 1.485 2.45 1.485 4.32 0 .574-.046 1.231-.139 1.972-.037.278-.11.463-.222.556-.11.092-.277.138-.5.138h-8.02c.073 1.223.443 2.107 1.11 2.653.666.547 1.711.82 3.136.82 1.017 0 2.202-.176 3.553-.528a1.095 1.095 0 01.305-.056c.314 0 .472.213.472.64v1.277c0 .296-.042.505-.125.625-.083.12-.245.227-.486.32-1.406.518-2.905.777-4.496.777zm1.943-9.029v-.472c0-1.815-.796-2.722-2.387-2.722-.907 0-1.624.273-2.152.82-.527.546-.828 1.337-.902 2.374h5.44zm11.046 8.917c-1.202 0-2.248-.31-3.136-.93-.888-.62-1.568-1.482-2.04-2.584s-.708-2.375-.708-3.82c0-2.296.546-4.133 1.638-5.513 1.091-1.38 2.535-2.07 4.33-2.07 1.461 0 2.729.417 3.802 1.25v-6.5c0-.259.056-.44.167-.541.11-.102.286-.153.527-.153h2.665c.259 0 .439.05.54.153.103.102.153.282.153.541v19.167c0 .24-.05.417-.152.528-.102.111-.282.167-.541.167h-2.22c-.223 0-.394-.047-.514-.14-.12-.092-.209-.25-.264-.472l-.167-.638c-1.147 1.037-2.507 1.555-4.08 1.555zm1.333-3.055c.888 0 1.739-.26 2.553-.778v-7.334c-.796-.463-1.711-.694-2.748-.694-.98 0-1.711.366-2.192 1.097-.482.732-.722 1.838-.722 3.32 0 1.481.254 2.583.763 3.305.51.722 1.29 1.084 2.346 1.084zm10.491 2.75c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528V8.056c0-.26.056-.44.167-.542.11-.102.287-.153.527-.153h1.999c.425 0 .684.204.777.611l.36 1.5c.74-.815 1.44-1.393 2.096-1.736a4.468 4.468 0 012.096-.514h.388c.26 0 .444.051.555.153.111.102.167.282.167.542v2.333c0 .24-.05.417-.153.528-.101.11-.282.166-.54.166l-.223-.007-.277-.02a8.873 8.873 0 00-.778-.028c-.425 0-.943.06-1.554.18-.61.12-1.129.274-1.554.459v9.333c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-2.665zm16.154.416c-2.202 0-3.923-.662-5.162-1.986-1.24-1.324-1.86-3.171-1.86-5.542 0-2.351.62-4.19 1.86-5.513 1.24-1.325 2.96-1.987 5.162-1.987s3.923.662 5.163 1.987c1.24 1.324 1.86 3.162 1.86 5.513 0 2.37-.62 4.218-1.86 5.542-1.24 1.324-2.96 1.986-5.163 1.986zm0-3.11c1.943 0 2.914-1.473 2.914-4.418 0-2.925-.971-4.388-2.914-4.388s-2.914 1.463-2.914 4.388c0 2.945.971 4.417 2.914 4.417zm15.738 3c-2.258 0-3.983-.63-5.177-1.89-1.193-1.259-1.79-3.074-1.79-5.444 0-2.352.63-4.185 1.887-5.5 1.259-1.315 3.007-1.972 5.246-1.972 1.11 0 2.156.203 3.137.61.24.093.402.2.485.32.084.12.125.329.125.625V9.89c0 .426-.157.639-.472.639l-.138-.014a1.095 1.095 0 01-.167-.042 8.761 8.761 0 00-2.22-.305c-1.296 0-2.249.328-2.86.986-.61.657-.915 1.699-.915 3.125v.389c0 1.407.3 2.44.902 3.097.601.657 1.531.986 2.79.986.585 0 1.21-.07 1.873-.212l.633-.147c.098-.02.169-.03.213-.03.296 0 .444.185.444.556v1.389c0 .296-.041.504-.124.625-.084.12-.246.226-.486.319a9.46 9.46 0 01-1.68.472 9.88 9.88 0 01-1.706.14zm6.883-.306c-.24 0-.416-.056-.527-.167-.111-.111-.167-.287-.167-.528V1.694c0-.259.056-.44.167-.541.11-.102.286-.153.527-.153h2.637c.259 0 .44.05.541.153.102.102.153.282.153.541v11.723l4.607-5.556c.167-.204.32-.338.458-.403.139-.064.338-.097.597-.097h3.025c.37 0 .555.139.555.417 0 .203-.12.435-.36.694l-4.996 5.667 5.495 6.305c.24.26.361.482.361.667 0 .296-.185.445-.555.445h-3.192c-.26 0-.458-.033-.597-.098-.139-.064-.291-.199-.458-.402l-4.94-5.973v5.778c0 .24-.051.417-.153.528-.102.111-.282.167-.541.167h-2.637z"
|
|
28
|
+
})
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
export default Icon;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import Avatar from './components/Avatar';
|
|
2
|
+
import Color from './components/Color';
|
|
3
|
+
import Combine from './components/Combine';
|
|
4
|
+
import Mono from './components/Mono';
|
|
5
|
+
import Text from './components/Text';
|
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
|
7
|
+
Avatar: typeof Avatar;
|
|
8
|
+
Color: typeof Color;
|
|
9
|
+
Combine: typeof Combine;
|
|
10
|
+
Mono: typeof Mono;
|
|
11
|
+
Text: typeof Text;
|
|
12
|
+
colorGradient: string;
|
|
13
|
+
colorPrimary: string;
|
|
14
|
+
};
|
|
15
|
+
declare const Icons: CompoundedIcon;
|
|
16
|
+
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_GRADIENT, COLOR_PRIMARY } from "./style";
|
|
7
|
+
var Icons = Mono;
|
|
8
|
+
Icons.Color = Color;
|
|
9
|
+
Icons.Text = Text;
|
|
10
|
+
Icons.Combine = Combine;
|
|
11
|
+
Icons.Avatar = Avatar;
|
|
12
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
|
13
|
+
Icons.colorGradient = COLOR_GRADIENT;
|
|
14
|
+
export default Icons;
|
|
@@ -0,0 +1,19 @@
|
|
|
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 } 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
|
+
background: background || COLOR_PRIMARY
|
|
17
|
+
}, rest));
|
|
18
|
+
});
|
|
19
|
+
export default Avatar;
|
|
@@ -0,0 +1,38 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
height: size,
|
|
16
|
+
ref: ref,
|
|
17
|
+
style: _objectSpread({
|
|
18
|
+
flex: 'none',
|
|
19
|
+
lineHeight: 1
|
|
20
|
+
}, style),
|
|
21
|
+
viewBox: "0 0 24 24",
|
|
22
|
+
width: size,
|
|
23
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
24
|
+
}, rest), {}, {
|
|
25
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
26
|
+
fill: "none",
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M6.075 10.494C7.6 9.446 9.768 8.759 12.222 8.759c2.453 0 4.622.687 6.147 1.735.77.53 1.352 1.133 1.74 1.77C20 10 20 10 20.687 9.362a9.276 9.276 0 00-1.008-.8c-1.958-1.347-4.598-2.143-7.457-2.143-2.858 0-5.499.796-7.457 2.144-1.955 1.345-3.325 3.322-3.325 5.647 0 2.326 1.37 4.303 3.322 5.646C6.721 21.205 9.362 22 12.22 22c2.859 0 5.5-.795 7.457-2.144C21.63 18.513 23 16.538 23 14.21c0-1.48-.554-2.817-1.46-3.94-.046 1.036-.41 2.03-1.012 2.937.099.325.149.663.15 1.003 0 1.33-.782 2.664-2.313 3.717-1.524 1.048-3.692 1.735-6.146 1.735-2.453 0-4.623-.687-6.147-1.735C4.544 16.874 3.76 15.54 3.76 14.21c.003-1.33.785-2.663 2.315-3.716z",
|
|
30
|
+
fill: "#3762FF"
|
|
31
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
+
d: "M3.747 11.494c-.62 1.77-.473 3.365.332 4.51.806 1.144 2.254 1.813 4.117 1.813 1.86 0 4.029-.68 6.021-2.1 1.993-1.42 3.35-3.251 3.967-5.017.62-1.769.473-3.364-.332-4.51-.806-1.143-2.254-1.812-4.117-1.812-1.86 0-4.029.68-6.021 2.099-1.993 1.42-3.35 3.252-3.967 5.017zm-2.228-.79c.8-2.28 2.487-4.498 4.83-6.167C8.691 2.866 11.33 2 13.734 2c2.4 0 4.678.874 6.045 2.817 1.366 1.943 1.431 4.394.633 6.674-.8 2.282-2.487 4.499-4.83 6.168-2.344 1.67-4.981 2.536-7.387 2.537-2.4 0-4.678-.874-6.045-2.817-1.368-1.943-1.431-4.396-.633-6.674h.002z",
|
|
33
|
+
fill: "#1041F3"
|
|
34
|
+
})]
|
|
35
|
+
})
|
|
36
|
+
}));
|
|
37
|
+
});
|
|
38
|
+
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,25 @@
|
|
|
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 } 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
|
+
spaceMultiple: SPACE_MULTIPLE,
|
|
22
|
+
textMultiple: TEXT_MULTIPLE
|
|
23
|
+
}, rest));
|
|
24
|
+
});
|
|
25
|
+
export default Combine;
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { 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
|
+
return /*#__PURE__*/_jsx("svg", _objectSpread(_objectSpread({
|
|
15
|
+
fill: "currentColor",
|
|
16
|
+
fillRule: "evenodd",
|
|
17
|
+
height: size,
|
|
18
|
+
ref: ref,
|
|
19
|
+
style: _objectSpread({
|
|
20
|
+
flex: 'none',
|
|
21
|
+
lineHeight: 1
|
|
22
|
+
}, style),
|
|
23
|
+
viewBox: "0 0 24 24",
|
|
24
|
+
width: size,
|
|
25
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
26
|
+
}, rest), {}, {
|
|
27
|
+
children: /*#__PURE__*/_jsxs("g", {
|
|
28
|
+
children: [/*#__PURE__*/_jsx("path", {
|
|
29
|
+
d: "M6.075 10.494C7.6 9.446 9.768 8.759 12.222 8.759c2.453 0 4.622.687 6.147 1.735.77.53 1.352 1.133 1.74 1.77C20 10 20 10 20.687 9.362a9.276 9.276 0 00-1.008-.8c-1.958-1.347-4.598-2.143-7.457-2.143-2.858 0-5.499.796-7.457 2.144-1.955 1.345-3.325 3.322-3.325 5.647 0 2.326 1.37 4.303 3.322 5.646C6.721 21.205 9.362 22 12.22 22c2.859 0 5.5-.795 7.457-2.144C21.63 18.513 23 16.538 23 14.21c0-1.48-.554-2.817-1.46-3.94-.046 1.036-.41 2.03-1.012 2.937.099.325.149.663.15 1.003 0 1.33-.782 2.664-2.313 3.717-1.524 1.048-3.692 1.735-6.146 1.735-2.453 0-4.623-.687-6.147-1.735C4.544 16.874 3.76 15.54 3.76 14.21c.003-1.33.785-2.663 2.315-3.716z"
|
|
30
|
+
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
+
d: "M3.747 11.494c-.62 1.77-.473 3.365.332 4.51.806 1.144 2.254 1.813 4.117 1.813 1.86 0 4.029-.68 6.021-2.1 1.993-1.42 3.35-3.251 3.967-5.017.62-1.769.473-3.364-.332-4.51-.806-1.143-2.254-1.812-4.117-1.812-1.86 0-4.029.68-6.021 2.099-1.993 1.42-3.35 3.252-3.967 5.017zm-2.228-.79c.8-2.28 2.487-4.498 4.83-6.167C8.691 2.866 11.33 2 13.734 2c2.4 0 4.678.874 6.045 2.817 1.366 1.943 1.431 4.394.633 6.674-.8 2.282-2.487 4.499-4.83 6.168-2.344 1.67-4.981 2.536-7.387 2.537-2.4 0-4.678-.874-6.045-2.817-1.368-1.943-1.431-4.396-.633-6.674h.002z"
|
|
32
|
+
})]
|
|
33
|
+
})
|
|
34
|
+
}));
|
|
35
|
+
});
|
|
36
|
+
export default Icon;
|
|
@@ -0,0 +1,31 @@
|
|
|
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 { jsx as _jsx } 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__*/_jsx("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 86 24",
|
|
24
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
25
|
+
}, rest), {}, {
|
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
27
|
+
d: "M82.857 13.62v5.001c0 1.86-1.61 3.377-3.587 3.377H67.086V13.62h15.77zm-20.095-1.973v6.943c0 1.863-1.609 3.379-3.587 3.379h-.797v-2h.294c.655 0 1.212-.42 1.388-.991h-6.624v3.02h-2.628V11.647h11.954zm-43.606 1.236v5.738c0 1.86-1.61 3.376-3.587 3.376H3.132v-9.114h16.024zm22.387-.003v5.737c0 1.863-1.61 3.379-3.587 3.379h-8.62l.002-9.116h12.205zM26.95 6.317V18.33l1.337-.746v2.553l-3.755 1.858V8.478h-1.026v-2.16h3.444zm22.315 6.774c-.07.605-.166 1.27-.28 1.98a91.279 91.279 0 01-1.35 6.792H45.13a81.452 81.452 0 001.064-4.471 86.9 86.9 0 00.456-2.352 39.05 39.05 0 00.303-1.95h2.312zm30.95 2.527h-10.5v4.379h9.052c.797 0 1.447-.617 1.447-1.376v-3.003zm-63.701 2.644H5.762v1.735h9.557c.797 0 1.195-.618 1.195-1.376v-.359zM38.9 18.26h-6.934v1.734h5.486c.798 0 1.448-.618 1.448-1.376v-.358zm21.22-1.897h-6.682v.972h6.682v-.972zM16.51 14.884H5.76v1.736h10.752v-1.736zm22.39-.004h-6.935v1.737H38.9V14.88zm21.219-1.23h-6.682v1.068h6.682V13.65zM6.003 2.03l-.366.83h5.039v2.003h-2.91v1.501h2.987v2.001h-2.84a6.942 6.942 0 002.84 1.698v2.085a9.1 9.1 0 01-4.564-2.582 9.139 9.139 0 01-4.11 2.466l-.007-2.134A6.91 6.91 0 004.45 8.363H2.11V6.362h3.077V4.86H2l.67-1.654.147-.346h.029l.368-.83h2.79zM40.116 2c-.04.155-.096.325-.166.509-.082.216-.18.428-.296.65l-.099.188h2.832V5.21h-3.33v4.984h3.388v1.954H28.683v-1.955h3.593V5.212h-3.403V3.349h2.967l-.055-.17a10.132 10.132 0 00-.474-1.177h2.822c.116.2.215.393.306.59.1.22.191.444.272.672l.03.085h1.962l.037-.07A5.7 5.7 0 0037.212 2h2.904zm42.932 8.13v2.017h-16.15V10.13h16.15zM20.03 2.776V8.77c0 1.86-1.61 3.376-3.586 3.376H11.6v-9.37h8.43zm27.435 4.686c.32.589.643 1.286.964 2.076.304.748.593 1.502.867 2.262h-2.46a42.866 42.866 0 00-.811-2.284 27.453 27.453 0 00-.882-2.054h2.322zm10.727-5.397v.71h5.244v2h-5.244V5.79h4.439v2.003h-4.439v1.015h5.371v2H50.01v-2h5.371V7.793h-4.439V5.79h4.439V4.775h-5.244v-2h5.244v-.71h2.813zM36.821 5.21H34.49v4.982h2.331V5.21zM17.39 4.776h-3.16v5.368h1.712c.797 0 1.448-.618 1.448-1.376V4.776zm13.494 1.425c.38.928.689 1.945.917 3.028l-2.273.002a17.347 17.347 0 00-.359-1.55c-.14-.5-.301-.993-.482-1.48h2.197zm11.564-.048a13.645 13.645 0 01-.899 3.052h-2.211c.212-.489.393-.99.542-1.501.146-.51.266-1.028.359-1.55h2.209zm40.6.297v2.017H66.899V6.45h16.15zM47.507 2.065c.163.308.322.618.474.93.184.382.36.768.525 1.158a34.027 34.027 0 01.89 2.25H46.95c-.121-.356-.249-.722-.384-1.085a33.973 33.973 0 00-.987-2.403 33.74 33.74 0 00-.412-.85h2.339zm-20.921-.033c.166.447.318.9.455 1.356.171.574.329 1.152.472 1.734h-2.78a29.381 29.381 0 00-.406-1.71 28.974 28.974 0 00-.417-1.38h2.676zm49.792.033v.71H84v2H65.943v-2h7.62v-.71h2.814z"
|
|
28
|
+
})
|
|
29
|
+
}));
|
|
30
|
+
});
|
|
31
|
+
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
|
+
Mono: typeof Mono;
|
|
11
|
+
Text: typeof Text;
|
|
12
|
+
colorPrimary: string;
|
|
13
|
+
};
|
|
14
|
+
declare const Icons: CompoundedIcon;
|
|
15
|
+
export default Icons;
|
|
@@ -0,0 +1,13 @@
|
|
|
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 } 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
|
+
export default Icons;
|
|
@@ -5,7 +5,6 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
5
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
6
|
import { forwardRef } from 'react';
|
|
7
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
8
|
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
10
9
|
var _ref$size = _ref.size,
|
|
11
10
|
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
@@ -22,16 +21,10 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
22
21
|
width: size,
|
|
23
22
|
xmlns: "http://www.w3.org/2000/svg"
|
|
24
23
|
}, rest), {}, {
|
|
25
|
-
children: /*#__PURE__*/
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
d: "M6.075 10.494C7.6 9.446 9.768 8.759 12.222 8.759c2.453 0 4.622.687 6.147 1.735.77.53 1.352 1.133 1.74 1.77C20 10 20 10 20.687 9.362a9.276 9.276 0 00-1.008-.8c-1.958-1.347-4.598-2.143-7.457-2.143-2.858 0-5.499.796-7.457 2.144-1.955 1.345-3.325 3.322-3.325 5.647 0 2.326 1.37 4.303 3.322 5.646C6.721 21.205 9.362 22 12.22 22c2.859 0 5.5-.795 7.457-2.144C21.63 18.513 23 16.538 23 14.21c0-1.48-.554-2.817-1.46-3.94-.046 1.036-.41 2.03-1.012 2.937.099.325.149.663.15 1.003 0 1.33-.782 2.664-2.313 3.717-1.524 1.048-3.692 1.735-6.146 1.735-2.453 0-4.623-.687-6.147-1.735C4.544 16.874 3.76 15.54 3.76 14.21c.003-1.33.785-2.663 2.315-3.716z",
|
|
30
|
-
fill: "#3762FF"
|
|
31
|
-
}), /*#__PURE__*/_jsx("path", {
|
|
32
|
-
d: "M3.747 11.494c-.62 1.77-.473 3.365.332 4.51.806 1.144 2.254 1.813 4.117 1.813 1.86 0 4.029-.68 6.021-2.1 1.993-1.42 3.35-3.251 3.967-5.017.62-1.769.473-3.364-.332-4.51-.806-1.143-2.254-1.812-4.117-1.812-1.86 0-4.029.68-6.021 2.099-1.993 1.42-3.35 3.252-3.967 5.017zm-2.228-.79c.8-2.28 2.487-4.498 4.83-6.167C8.691 2.866 11.33 2 13.734 2c2.4 0 4.678.874 6.045 2.817 1.366 1.943 1.431 4.394.633 6.674-.8 2.282-2.487 4.499-4.83 6.168-2.344 1.67-4.981 2.536-7.387 2.537-2.4 0-4.678-.874-6.045-2.817-1.368-1.943-1.431-4.396-.633-6.674h.002z",
|
|
33
|
-
fill: "#1041F3"
|
|
34
|
-
})]
|
|
24
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
25
|
+
d: "M11.991 23.503a.24.24 0 00-.244.248.24.24 0 00.244.249.24.24 0 00.245-.249.24.24 0 00-.22-.247l-.025-.001zM9.671 5.365a1.697 1.697 0 011.099 2.132l-.071.172-.016.04-.018.054c-.07.16-.104.32-.104.498-.035.71.47 1.279 1.186 1.314h.366c1.309.053 2.338 1.173 2.286 2.523-.052 1.332-1.152 2.38-2.478 2.327h-.174c-.715.018-1.274.64-1.239 1.368 0 .124.018.23.053.337.209.373.54.658.96.8.75.23 1.517-.125 1.9-.782l.018-.035c.402-.64 1.17-.96 1.92-.711.854.284 1.378 1.226 1.099 2.167a1.661 1.661 0 01-2.077 1.102 1.711 1.711 0 01-.907-.711l-.017-.035c-.2-.323-.463-.58-.851-.711l-.056-.018a1.646 1.646 0 00-1.954.746 1.66 1.66 0 01-1.065.764 1.677 1.677 0 01-1.989-1.279c-.209-.906.332-1.83 1.257-2.043a1.51 1.51 0 01.296-.035h.018c.68-.071 1.151-.622 1.116-1.333a1.307 1.307 0 00-.227-.693 2.515 2.515 0 01-.366-1.403 2.39 2.39 0 01.366-1.208c.14-.195.21-.444.227-.693.018-.71-.506-1.261-1.186-1.332l-.07-.018a1.43 1.43 0 01-.299-.07l-.05-.019a1.7 1.7 0 01-1.047-2.114 1.68 1.68 0 012.094-1.101zm-5.575 10.11c.26-.264.639-.367.994-.27.355.096.633.379.728.74.095.362-.007.748-.267 1.013-.402.41-1.053.41-1.455 0a1.062 1.062 0 010-1.482zm14.845-.294c.359-.09.738.024.992.297.254.274.344.665.237 1.025-.107.36-.396.634-.756.718-.551.128-1.1-.22-1.23-.781a1.05 1.05 0 01.757-1.26zm-.064-4.39c.314.32.49.753.49 1.206 0 .452-.176.886-.49 1.206-.315.32-.74.5-1.185.5-.444 0-.87-.18-1.184-.5a1.727 1.727 0 010-2.412 1.654 1.654 0 012.369 0zm-11.243.163c.364.484.447 1.128.218 1.691a1.665 1.665 0 01-2.188.923c-.855-.36-1.26-1.358-.907-2.228a1.68 1.68 0 011.33-1.038c.593-.08 1.183.169 1.547.652zm11.545-4.221c.368 0 .708.2.892.524.184.324.184.724 0 1.048a1.026 1.026 0 01-.892.524c-.568 0-1.03-.47-1.03-1.048 0-.579.462-1.048 1.03-1.048zm-14.358 0c.368 0 .707.2.891.524.184.324.184.724 0 1.048a1.026 1.026 0 01-.891.524c-.569 0-1.03-.47-1.03-1.048 0-.579.461-1.048 1.03-1.048zm10.031-1.475c.925 0 1.675.764 1.675 1.706s-.75 1.705-1.675 1.705-1.674-.763-1.674-1.705c0-.942.75-1.706 1.674-1.706zm-2.626-.684c.362-.082.653-.356.761-.718a1.062 1.062 0 00-.238-1.028 1.017 1.017 0 00-.996-.294c-.547.14-.881.7-.752 1.257.13.558.675.907 1.225.783zm0 16.876c.359-.087.644-.36.75-.72a1.062 1.062 0 00-.237-1.019 1.018 1.018 0 00-.985-.301 1.037 1.037 0 00-.762.717c-.108.361-.017.754.239 1.028.245.263.606.377.953.305l.043-.01zM17.19 3.5a.631.631 0 00.628-.64c0-.355-.279-.64-.628-.64a.631.631 0 00-.628.64c0 .355.28.64.628.64zm-10.38 0a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64a.631.631 0 00-.628.64c0 .355.279.64.628.64zm-5.182 7.852a.631.631 0 00-.628.64c0 .354.28.639.628.639a.63.63 0 00.627-.606l.001-.034a.62.62 0 00-.628-.64zm5.182 9.13a.631.631 0 00-.628.64c0 .355.279.64.628.64a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64zm10.38.018a.631.631 0 00-.628.64c0 .355.28.64.628.64a.631.631 0 00.628-.64c0-.355-.279-.64-.628-.64zm5.182-9.148a.631.631 0 00-.628.64c0 .354.279.639.628.639a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64zm-.384-4.992a.24.24 0 00.244-.249.24.24 0 00-.244-.249.24.24 0 00-.244.249c0 .142.122.249.244.249zM11.991.497a.24.24 0 00.245-.248A.24.24 0 0011.99 0a.24.24 0 00-.244.249c0 .133.108.236.223.247l.021.001zM2.011 6.36a.24.24 0 00.245-.249.24.24 0 00-.244-.249.24.24 0 00-.244.249.24.24 0 00.244.249zm0 11.263a.24.24 0 00-.243.248.24.24 0 00.244.249.24.24 0 00.244-.249.252.252 0 00-.244-.248zm19.995-.018a.24.24 0 00-.245.248.24.24 0 00.245.25.24.24 0 00.244-.25.252.252 0 00-.244-.248z",
|
|
26
|
+
fill: "#3859FF",
|
|
27
|
+
fillRule: "nonzero"
|
|
35
28
|
})
|
|
36
29
|
}));
|
|
37
30
|
});
|
|
@@ -5,7 +5,6 @@ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbol
|
|
|
5
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
6
|
import { forwardRef } from 'react';
|
|
7
7
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
8
|
-
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
9
8
|
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
10
9
|
var _ref$size = _ref.size,
|
|
11
10
|
size = _ref$size === void 0 ? '1em' : _ref$size,
|
|
@@ -24,12 +23,8 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
24
23
|
width: size,
|
|
25
24
|
xmlns: "http://www.w3.org/2000/svg"
|
|
26
25
|
}, rest), {}, {
|
|
27
|
-
children: /*#__PURE__*/
|
|
28
|
-
|
|
29
|
-
d: "M6.075 10.494C7.6 9.446 9.768 8.759 12.222 8.759c2.453 0 4.622.687 6.147 1.735.77.53 1.352 1.133 1.74 1.77C20 10 20 10 20.687 9.362a9.276 9.276 0 00-1.008-.8c-1.958-1.347-4.598-2.143-7.457-2.143-2.858 0-5.499.796-7.457 2.144-1.955 1.345-3.325 3.322-3.325 5.647 0 2.326 1.37 4.303 3.322 5.646C6.721 21.205 9.362 22 12.22 22c2.859 0 5.5-.795 7.457-2.144C21.63 18.513 23 16.538 23 14.21c0-1.48-.554-2.817-1.46-3.94-.046 1.036-.41 2.03-1.012 2.937.099.325.149.663.15 1.003 0 1.33-.782 2.664-2.313 3.717-1.524 1.048-3.692 1.735-6.146 1.735-2.453 0-4.623-.687-6.147-1.735C4.544 16.874 3.76 15.54 3.76 14.21c.003-1.33.785-2.663 2.315-3.716z"
|
|
30
|
-
}), /*#__PURE__*/_jsx("path", {
|
|
31
|
-
d: "M3.747 11.494c-.62 1.77-.473 3.365.332 4.51.806 1.144 2.254 1.813 4.117 1.813 1.86 0 4.029-.68 6.021-2.1 1.993-1.42 3.35-3.251 3.967-5.017.62-1.769.473-3.364-.332-4.51-.806-1.143-2.254-1.812-4.117-1.812-1.86 0-4.029.68-6.021 2.099-1.993 1.42-3.35 3.252-3.967 5.017zm-2.228-.79c.8-2.28 2.487-4.498 4.83-6.167C8.691 2.866 11.33 2 13.734 2c2.4 0 4.678.874 6.045 2.817 1.366 1.943 1.431 4.394.633 6.674-.8 2.282-2.487 4.499-4.83 6.168-2.344 1.67-4.981 2.536-7.387 2.537-2.4 0-4.678-.874-6.045-2.817-1.368-1.943-1.431-4.396-.633-6.674h.002z"
|
|
32
|
-
})]
|
|
26
|
+
children: /*#__PURE__*/_jsx("path", {
|
|
27
|
+
d: "M11.991 23.503a.24.24 0 00-.244.248.24.24 0 00.244.249.24.24 0 00.245-.249.24.24 0 00-.22-.247l-.025-.001zM9.671 5.365a1.697 1.697 0 011.099 2.132l-.071.172-.016.04-.018.054c-.07.16-.104.32-.104.498-.035.71.47 1.279 1.186 1.314h.366c1.309.053 2.338 1.173 2.286 2.523-.052 1.332-1.152 2.38-2.478 2.327h-.174c-.715.018-1.274.64-1.239 1.368 0 .124.018.23.053.337.209.373.54.658.96.8.75.23 1.517-.125 1.9-.782l.018-.035c.402-.64 1.17-.96 1.92-.711.854.284 1.378 1.226 1.099 2.167a1.661 1.661 0 01-2.077 1.102 1.711 1.711 0 01-.907-.711l-.017-.035c-.2-.323-.463-.58-.851-.711l-.056-.018a1.646 1.646 0 00-1.954.746 1.66 1.66 0 01-1.065.764 1.677 1.677 0 01-1.989-1.279c-.209-.906.332-1.83 1.257-2.043a1.51 1.51 0 01.296-.035h.018c.68-.071 1.151-.622 1.116-1.333a1.307 1.307 0 00-.227-.693 2.515 2.515 0 01-.366-1.403 2.39 2.39 0 01.366-1.208c.14-.195.21-.444.227-.693.018-.71-.506-1.261-1.186-1.332l-.07-.018a1.43 1.43 0 01-.299-.07l-.05-.019a1.7 1.7 0 01-1.047-2.114 1.68 1.68 0 012.094-1.101zm-5.575 10.11c.26-.264.639-.367.994-.27.355.096.633.379.728.74.095.362-.007.748-.267 1.013-.402.41-1.053.41-1.455 0a1.062 1.062 0 010-1.482zm14.845-.294c.359-.09.738.024.992.297.254.274.344.665.237 1.025-.107.36-.396.634-.756.718-.551.128-1.1-.22-1.23-.781a1.05 1.05 0 01.757-1.26zm-.064-4.39c.314.32.49.753.49 1.206 0 .452-.176.886-.49 1.206-.315.32-.74.5-1.185.5-.444 0-.87-.18-1.184-.5a1.727 1.727 0 010-2.412 1.654 1.654 0 012.369 0zm-11.243.163c.364.484.447 1.128.218 1.691a1.665 1.665 0 01-2.188.923c-.855-.36-1.26-1.358-.907-2.228a1.68 1.68 0 011.33-1.038c.593-.08 1.183.169 1.547.652zm11.545-4.221c.368 0 .708.2.892.524.184.324.184.724 0 1.048a1.026 1.026 0 01-.892.524c-.568 0-1.03-.47-1.03-1.048 0-.579.462-1.048 1.03-1.048zm-14.358 0c.368 0 .707.2.891.524.184.324.184.724 0 1.048a1.026 1.026 0 01-.891.524c-.569 0-1.03-.47-1.03-1.048 0-.579.461-1.048 1.03-1.048zm10.031-1.475c.925 0 1.675.764 1.675 1.706s-.75 1.705-1.675 1.705-1.674-.763-1.674-1.705c0-.942.75-1.706 1.674-1.706zm-2.626-.684c.362-.082.653-.356.761-.718a1.062 1.062 0 00-.238-1.028 1.017 1.017 0 00-.996-.294c-.547.14-.881.7-.752 1.257.13.558.675.907 1.225.783zm0 16.876c.359-.087.644-.36.75-.72a1.062 1.062 0 00-.237-1.019 1.018 1.018 0 00-.985-.301 1.037 1.037 0 00-.762.717c-.108.361-.017.754.239 1.028.245.263.606.377.953.305l.043-.01zM17.19 3.5a.631.631 0 00.628-.64c0-.355-.279-.64-.628-.64a.631.631 0 00-.628.64c0 .355.28.64.628.64zm-10.38 0a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64a.631.631 0 00-.628.64c0 .355.279.64.628.64zm-5.182 7.852a.631.631 0 00-.628.64c0 .354.28.639.628.639a.63.63 0 00.627-.606l.001-.034a.62.62 0 00-.628-.64zm5.182 9.13a.631.631 0 00-.628.64c0 .355.279.64.628.64a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64zm10.38.018a.631.631 0 00-.628.64c0 .355.28.64.628.64a.631.631 0 00.628-.64c0-.355-.279-.64-.628-.64zm5.182-9.148a.631.631 0 00-.628.64c0 .354.279.639.628.639a.631.631 0 00.628-.64c0-.355-.28-.64-.628-.64zm-.384-4.992a.24.24 0 00.244-.249.24.24 0 00-.244-.249.24.24 0 00-.244.249c0 .142.122.249.244.249zM11.991.497a.24.24 0 00.245-.248A.24.24 0 0011.99 0a.24.24 0 00-.244.249c0 .133.108.236.223.247l.021.001zM2.011 6.36a.24.24 0 00.245-.249.24.24 0 00-.244-.249.24.24 0 00-.244.249.24.24 0 00.244.249zm0 11.263a.24.24 0 00-.243.248.24.24 0 00.244.249.24.24 0 00.244-.249.252.252 0 00-.244-.248zm19.995-.018a.24.24 0 00-.245.248.24.24 0 00.245.25.24.24 0 00.244-.25.252.252 0 00-.244-.248z"
|
|
33
28
|
})
|
|
34
29
|
}));
|
|
35
30
|
});
|
|
@@ -20,11 +20,11 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
|
20
20
|
lineHeight: 1,
|
|
21
21
|
width: 'fit-content'
|
|
22
22
|
}, style),
|
|
23
|
-
viewBox: "0 0
|
|
23
|
+
viewBox: "0 0 64 24",
|
|
24
24
|
xmlns: "http://www.w3.org/2000/svg"
|
|
25
25
|
}, rest), {}, {
|
|
26
26
|
children: /*#__PURE__*/_jsx("path", {
|
|
27
|
-
d: "
|
|
27
|
+
d: "M63 3.405h-2.67v17.19H63V3.405zm-6.646 0l2.76 17.19h-2.7l-.297-1.943-.149-.927c-.03-.18-.267-.329-.534-.329H53.12c-.267 0-.504.15-.534.329l-.148.927-.297 1.943H49.68l2.73-17.19h3.945zm-2.106 3.797c-.178 0-.327.15-.356.359l-.92 7.503c0 .15.118.3.267.3h2.047c.148 0 .267-.12.237-.3l-.92-7.503c-.03-.21-.177-.36-.355-.36zm-10.325 5.5a1.31 1.31 0 001.305-1.315 1.31 1.31 0 00-1.305-1.315 1.31 1.31 0 00-1.306 1.315c0 .705.55 1.28 1.242 1.314l.064.002zm-7.329.987V22h-1.78v-.777H28.97V22h-1.72v-8.31h9.345zM4.136 2l1.662.15a6.024 6.024 0 01-.564 1.405h4.955v1.554H7.786c0 .21-.03.508-.06.867l-.002.74c-.005.567-.019 1.226-.057 1.323h3.026v1.554H7.46c.505.39 1.306.927 2.344 1.645.386.239.653.448.83.538l-.978 1.554h6.853v8.61h-1.84v-.867H5.947v.867h-1.78v-8.55c-.356.15-.742.359-1.098.628a17.279 17.279 0 00-1.038-1.644c1.899-.778 3.115-1.734 3.56-2.81H2.148V8.009h3.768c.09-.508.149-2.272.149-2.9H4.403a8.78 8.78 0 01-1.305 1.644c-.119-.09-.208-.239-.356-.388-.09-.18-.327-.449-.742-.867A8.205 8.205 0 004.136 2zm20.65 7.743v8.37l.129-.15a3.36 3.36 0 01.099-.108l.039-.04c.564-.568.95-1.017 1.157-1.346.119.538.208 1.256.356 2.183-1.305 1.196-2.284 2.242-2.937 3.109l-1.098-1.704c.326-.3.475-.777.475-1.465v-6.906h-1.454V9.743h3.234zm10.028 8.46H28.97v1.555h5.845v-1.555zm-20.145-.209H5.946v1.704h8.723v-1.704zm20.145-2.75H28.97v1.644h5.845v-1.644zm-20.145-.3H5.946v1.645h8.723v-1.644zM6.717 10.91c-.415.807-1.216 1.614-2.462 2.391h5.4l-.674-.558c-.445-.366-.977-.8-1.581-1.295l-.194-.172c-.188-.164-.355-.299-.489-.366zm21.273-8.49l1.662-.39.084.124c.116.175.251.395.416.648l.272.414c.308.473.535.84.682 1.087h1.661a21.46 21.46 0 001.365-2.242l1.72.388c-.118.09-.207.27-.355.539l-.175.276c-.147.23-.371.58-.656 1.039h3.026v1.465h-3.53v5.052h3.975v1.465h-12.49v-1.465h3.856V5.737H26.27V4.272h2.878l-.302-.52c-.38-.645-.665-1.094-.855-1.333zm-10.236.986v8.58h-6.379v-8.58h6.38zm14.924 2.332h-1.572v5.082h1.572V5.737zm-16.555-.598h-3.086v5.232h3.086V5.139zM26.21 7.59l1.157-.867.155.185c.175.213.409.51.676.892.386.448.653.807.83 1.076l-1.245.957-.113-.176a45.578 45.578 0 00-1.46-2.067zm10.206-.896l1.246.867-.058.095c-.192.307-.526.777-.98 1.37l-.203.304a3.5 3.5 0 01-.36.473l-1.217-.927.418-.54c.549-.714.939-1.256 1.154-1.642zm-14.39-3.289l1.366-.927.322.41c.533.68 1.162 1.513 1.873 2.55l-1.572 1.076-.09-.152c-.21-.348-.542-.86-.995-1.534l-.073-.108a24.604 24.604 0 01-.83-1.315z"
|
|
28
28
|
})
|
|
29
29
|
}));
|
|
30
30
|
});
|
package/es/Zhipu/style.d.ts
CHANGED
package/es/Zhipu/style.js
CHANGED
package/es/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export { default as Anthropic, type CompoundedIcon as AnthropicProps } from './Anthropic';
|
|
2
2
|
export { default as Automatic, type CompoundedIcon as AutomaticProps } from './Automatic';
|
|
3
|
+
export { default as Aws, type CompoundedIcon as AwsProps } from './Aws';
|
|
3
4
|
export { default as Baichuan, type CompoundedIcon as BaichuanProps } from './Baichuan';
|
|
5
|
+
export { default as Bedrock, type CompoundedIcon as BedrockProps } from './Bedrock';
|
|
4
6
|
export { default as ChatGLM, type CompoundedIcon as ChatGLMProps } from './ChatGLM';
|
|
5
7
|
export { default as Cohere, type CompoundedIcon as CohereProps } from './Cohere';
|
|
6
8
|
export { default as Dalle, type CompoundedIcon as DalleProps } from './Dalle';
|
|
@@ -11,6 +13,7 @@ export { default as Minimax, type CompoundedIcon as MinimaxProps } from './Minim
|
|
|
11
13
|
export { default as Mistral, type CompoundedIcon as MistralProps } from './Mistral';
|
|
12
14
|
export { default as Ollama, type CompoundedIcon as OllamaProps } from './Ollama';
|
|
13
15
|
export { default as OpenAI, type CompoundedIcon as OpenAIProps } from './OpenAI';
|
|
16
|
+
export { default as Qingyan, type CompoundedIcon as QingyanProps } from './Qingyan';
|
|
14
17
|
export { default as Spark, type CompoundedIcon as SparkProps } from './Spark';
|
|
15
18
|
export { default as Stability, type CompoundedIcon as StabilityProps } from './Stability';
|
|
16
19
|
export { default as Tongyi, type CompoundedIcon as TongyiProps } from './Tongyi';
|
package/es/index.js
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export { default as Anthropic } from "./Anthropic";
|
|
2
2
|
export { default as Automatic } from "./Automatic";
|
|
3
|
+
export { default as Aws } from "./Aws";
|
|
3
4
|
export { default as Baichuan } from "./Baichuan";
|
|
5
|
+
export { default as Bedrock } from "./Bedrock";
|
|
4
6
|
export { default as ChatGLM } from "./ChatGLM";
|
|
5
7
|
export { default as Cohere } from "./Cohere";
|
|
6
8
|
export { default as Dalle } from "./Dalle";
|
|
@@ -11,6 +13,7 @@ export { default as Minimax } from "./Minimax";
|
|
|
11
13
|
export { default as Mistral } from "./Mistral";
|
|
12
14
|
export { default as Ollama } from "./Ollama";
|
|
13
15
|
export { default as OpenAI } from "./OpenAI";
|
|
16
|
+
export { default as Qingyan } from "./Qingyan";
|
|
14
17
|
export { default as Spark } from "./Spark";
|
|
15
18
|
export { default as Stability } from "./Stability";
|
|
16
19
|
export { default as Tongyi } from "./Tongyi";
|