@lobehub/icons 1.82.0 → 1.84.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -44
- package/es/CommandA/components/Avatar.d.ts +5 -0
- package/es/CommandA/components/Avatar.js +26 -0
- package/es/CommandA/components/Color.d.ts +1 -0
- package/es/CommandA/components/Color.js +3 -0
- package/es/CommandA/components/Combine.d.ts +7 -0
- package/es/CommandA/components/Combine.js +32 -0
- package/es/CommandA/components/Mono.d.ts +1 -0
- package/es/CommandA/components/Mono.js +3 -0
- package/es/CommandA/components/Text.d.ts +3 -0
- package/es/CommandA/components/Text.js +42 -0
- package/es/CommandA/index.d.ts +15 -0
- package/es/CommandA/index.js +16 -0
- package/es/CommandA/style.d.ts +4 -0
- package/es/CommandA/style.js +4 -0
- package/es/LangChain/components/Color.js +2 -2
- package/es/LangChain/components/Mono.js +2 -2
- package/es/LangGraph/components/Avatar.d.ts +5 -0
- package/es/LangGraph/components/Avatar.js +26 -0
- package/es/LangGraph/components/Color.d.ts +3 -0
- package/es/LangGraph/components/Color.js +42 -0
- package/es/LangGraph/components/Combine.d.ts +7 -0
- package/es/LangGraph/components/Combine.js +32 -0
- package/es/LangGraph/components/Mono.d.ts +3 -0
- package/es/LangGraph/components/Mono.js +42 -0
- package/es/LangGraph/components/Text.d.ts +3 -0
- package/es/LangGraph/components/Text.js +40 -0
- package/es/LangGraph/index.d.ts +15 -0
- package/es/LangGraph/index.js +16 -0
- package/es/LangGraph/style.d.ts +4 -0
- package/es/LangGraph/style.js +4 -0
- package/es/LangSmith/components/Avatar.d.ts +5 -0
- package/es/LangSmith/components/Avatar.js +26 -0
- package/es/LangSmith/components/Color.d.ts +3 -0
- package/es/LangSmith/components/Color.js +40 -0
- package/es/LangSmith/components/Combine.d.ts +7 -0
- package/es/LangSmith/components/Combine.js +32 -0
- package/es/LangSmith/components/Mono.d.ts +3 -0
- package/es/LangSmith/components/Mono.js +41 -0
- package/es/LangSmith/components/Text.d.ts +3 -0
- package/es/LangSmith/components/Text.js +40 -0
- package/es/LangSmith/index.d.ts +15 -0
- package/es/LangSmith/index.js +16 -0
- package/es/LangSmith/style.d.ts +4 -0
- package/es/LangSmith/style.js +4 -0
- package/es/LlamaIndex/components/Avatar.d.ts +5 -0
- package/es/LlamaIndex/components/Avatar.js +27 -0
- package/es/LlamaIndex/components/Color.d.ts +3 -0
- package/es/LlamaIndex/components/Color.js +66 -0
- package/es/LlamaIndex/components/Combine.d.ts +7 -0
- package/es/LlamaIndex/components/Combine.js +29 -0
- package/es/LlamaIndex/components/Mono.d.ts +3 -0
- package/es/LlamaIndex/components/Mono.js +41 -0
- package/es/LlamaIndex/components/Text.d.ts +3 -0
- package/es/LlamaIndex/components/Text.js +55 -0
- package/es/LlamaIndex/index.d.ts +15 -0
- package/es/LlamaIndex/index.js +16 -0
- package/es/LlamaIndex/style.d.ts +4 -0
- package/es/LlamaIndex/style.js +4 -0
- package/es/icons.d.ts +4 -0
- package/es/icons.js +4 -0
- package/es/toc.js +74 -2
- package/package.json +1 -1
@@ -0,0 +1,42 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
height: size,
|
25
|
+
ref: ref,
|
26
|
+
style: _objectSpread({
|
27
|
+
flex: 'none',
|
28
|
+
lineHeight: 1
|
29
|
+
}, style),
|
30
|
+
viewBox: "0 0 168 24",
|
31
|
+
xmlns: "http://www.w3.org/2000/svg"
|
32
|
+
}, rest), {}, {
|
33
|
+
children: [/*#__PURE__*/_jsx("title", {
|
34
|
+
children: TITLE
|
35
|
+
}), /*#__PURE__*/_jsx("path", {
|
36
|
+
d: "M145.375 21.333L153.511 0h4.354L166 21.333h-3.655l-2.065-5.558h-9.216l-2.034 5.558h-3.655zm6.769-8.503h7.087l-3.559-9.735-3.528 9.735zM107.12 21.667a.666.666 0 01-.666-.667V6.686c0-.368.298-.666.666-.666h1.351c.362 0 .657.289.665.651l.048 2.084c.432-1.079 1.425-1.863 2.312-2.353.886-.49 1.896-.735 3.03-.735 1.217 0 2.237.264 3.062.794a4.757 4.757 0 011.856 2.117c.433.883.649 1.893.649 3.03V21a.666.666 0 01-.665.667h-1.615a.666.666 0 01-.665-.667v-8.451c0-1.372-.248-2.421-.743-3.147-.474-.745-1.621-1.118-2.776-1.118-1.175 0-2.123.373-2.845 1.118-.701.726-1.384 1.775-1.384 3.147V21a.666.666 0 01-.665.667h-1.615zM94.754 22c-1.601 0-2.883-.372-3.848-1.116-.945-.744-1.417-1.792-1.417-3.144 0-1.331.395-2.38 1.186-3.143.81-.764 2.054-1.312 3.731-1.645l5.294-1.028c0-2.409-1.109-3.613-3.327-3.613-.983 0-1.755.225-2.314.675-.435.351-.766.821-.99 1.41-.116.3-.4.514-.72.493l-1.853-.12c-.397-.027-.686-.396-.574-.78.357-1.224 1.013-2.215 1.968-2.971 1.157-.9 2.651-1.351 4.483-1.351 2.083 0 3.664.568 4.744 1.704 1.1 1.116 1.649 2.692 1.649 4.73v6.08c0 .372.058.636.174.793.135.137.347.206.636.206h.882c.368 0 .666.298.666.666v1.264c0 .314-.221.569-.534.585a38.04 38.04 0 01-1.592.04c-.868 0-1.562-.185-2.083-.558-.521-.372-.839-1.018-.955-1.938-.385.822-1.05 1.488-1.996 1.997-.945.51-2.015.764-3.21.764zm.491-2.468c1.389 0 2.478-.401 3.269-1.204.79-.803 1.186-1.821 1.186-3.055v-.999l-4.513.881c-.925.177-1.58.46-1.967.852-.366.372-.55.852-.55 1.44 0 .666.222 1.184.666 1.557.463.352 1.1.528 1.91.528zM38.592 21.667a.666.666 0 01-.665-.667V6.686c0-.368.298-.666.665-.666h1.386c.361 0 .656.289.665.65l.047 2.026c.417-.941 1.365-1.676 2.178-2.206.813-.549 1.74-.823 2.783-.823 1.23 0 2.262.284 3.096.853.855.568 1.46 1.362 1.814 2.382.375-1.04.97-1.833 1.782-2.382.834-.569 1.845-.853 3.033-.853 1.752 0 3.107.52 4.066 1.558.959 1.02 1.438 2.48 1.438 4.383V21a.666.666 0 01-.665.667h-1.319a.666.666 0 01-.665-.667v-8.627c0-2.726-1.053-4.089-3.824-4.089-1.042 0-1.876.373-2.502 1.118-.625.745-.938 1.775-.938 3.088V21a.666.666 0 01-.665.667h-1.828A.666.666 0 0147.81 21v-8.51c0-1.313-.24-2.343-.72-3.088-.458-.745-1.25-1.118-2.376-1.118-1.063 0-2.24.373-2.866 1.118-.625.745-.938 1.775-.938 3.088V21a.666.666 0 01-.665.667h-1.652zM27.78 22c-1.57 0-2.946-.333-4.125-.999a7.025 7.025 0 01-2.73-2.85c-.641-1.214-.962-2.653-.962-4.318 0-1.664.321-3.104.962-4.318a6.832 6.832 0 012.73-2.82c1.179-.686 2.554-1.028 4.126-1.028 1.572 0 2.947.342 4.126 1.028a6.833 6.833 0 012.73 2.82c.64 1.214.961 2.654.961 4.318 0 1.665-.32 3.104-.961 4.319a7.025 7.025 0 01-2.73 2.85c-1.179.665-2.554.998-4.126.998zm0-2.703c1.407 0 2.826-.48 3.59-1.44.766-.959 1.149-2.3 1.149-4.024 0-1.704-.383-3.035-1.148-3.995-.765-.98-2.184-1.469-3.59-1.469-1.386 0-2.804.49-3.59 1.47-.765.959-1.148 2.29-1.148 3.994 0 1.724.383 3.065 1.148 4.025.786.96 2.204 1.44 3.59 1.44zM10.316 21.314c0 .375-.308.678-.68.641-1.316-.131-2.497-.551-3.544-1.26-1.285-.89-2.288-2.154-3.01-3.795C2.361 15.26 2 13.303 2 11.03c0-2.254.352-4.2 1.056-5.841.15-.346.313-.675.488-.988.204-.365.697-.413.992-.116L5.77 5.32a.708.708 0 01.124.806 8.837 8.837 0 00-.25.575c-.457 1.206-.686 2.649-.686 4.329 0 1.68.229 3.123.686 4.329.476 1.205 1.136 2.124 1.98 2.757a4.653 4.653 0 002.059.88c.352.057.634.346.634.703v1.615zM11.268 21.264c0 .386.326.693.707.639 1.65-.237 3.007-.906 4.07-2.008 1.233-1.278 2.055-2.947 2.464-5.006a.642.642 0 00-.6-.76l-1.65-.098a.698.698 0 00-.715.567c-.267 1.298-.76 2.342-1.479 3.132-.57.615-1.306 1.017-2.205 1.207-.333.07-.592.352-.592.694v1.633zM6.066 1.364a7.74 7.74 0 00-1.105.93.63.63 0 00.019.887l1.147 1.15c.283.283.748.25 1.034-.032.14-.137.285-.266.436-.385.845-.653 1.84-.979 2.983-.979 1.426 0 2.544.415 3.353 1.246.696.713 1.184 1.645 1.464 2.796.08.33.376.568.714.548l1.65-.098a.642.642 0 00.598-.774c-.432-1.948-1.22-3.504-2.366-4.666C14.708.662 12.903 0 10.58 0 8.856 0 7.35.455 6.066 1.364zM81.656 5.667c1.329 0 2.43.299 3.302.897.31.212.315.65.05.917l-1.16 1.161c-.247.248-.64.254-.95.09-.564-.298-1.293-.448-2.211-.448-1.042 0-1.876.373-2.502 1.118-.625.745-.938 1.775-.938 3.088v2.482c0 .408-.362.72-.765.659l-1.828-.278a.666.666 0 01-.565-.66V12.49c0-1.313-.24-2.343-.72-3.088-.458-.745-1.25-1.118-2.376-1.118-1.063 0-2.24.373-2.866 1.118-.625.745-.938 1.775-.938 3.088V21a.666.666 0 01-.665.667h-1.652a.666.666 0 01-.665-.667V6.686c0-.368.298-.666.665-.666h1.386c.361 0 .656.289.665.65l.047 2.026c.417-.941 1.365-1.676 2.178-2.206.813-.549 1.74-.823 2.783-.823 1.23 0 2.262.284 3.096.853.855.568 1.46 1.362 1.814 2.382.375-1.04.969-1.833 1.782-2.382.834-.569 1.845-.853 3.033-.853z"
|
37
|
+
}), /*#__PURE__*/_jsx("path", {
|
38
|
+
d: "M74.854 16.347a.666.666 0 00-.765.66V21c0 .368.298.667.665.667h1.828a.666.666 0 00.665-.667v-3.716c0-.33-.24-.61-.565-.659l-1.828-.278zM84.51 12.373c0-.819-.094-1.514-.302-2.087-.1-.277-.06-.597.149-.806l1.206-1.208c.291-.292.777-.25.958.12.426.876.64 1.948.64 3.216V21a.666.666 0 01-.666.667h-1.319a.666.666 0 01-.665-.667v-8.627zM129.341 22c-1.413 0-2.639-.335-3.678-1.005-1.039-.67-1.839-1.615-2.4-2.836-.561-1.241-.841-2.699-.841-4.373 0-1.675.28-3.122.841-4.344.078-.17.159-.336.245-.496.207-.383.726-.406 1.007-.073l.988 1.171c.169.2.202.479.116.726-.289.834-.434 1.978-.434 3.016 0 1.674.395 3.014 1.184 4.018.79.985 2.515 1.478 3.844 1.478 1.351 0 2.722-.483 3.449-1.448.728-.965 1.091-2.315 1.091-4.048 0-1.753-.363-3.103-1.091-4.048-.727-.965-2.098-1.448-3.449-1.448-1.104 0-2.688.34-3.419 1.02-.276.255-.725.251-.945-.054l-.955-1.327c-.188-.262-.166-.624.078-.834.217-.189.447-.362.691-.519 1.039-.67 2.265-1.004 3.678-1.004 1.142 0 2.16.226 3.054.68.893.452 1.901 1.083 2.358 1.89V4.843c0-.408.363-.72.765-.659l1.641.25c.325.049.565.329.565.659v15.886a.666.666 0 01-.665.666h-1.448a.666.666 0 01-.665-.64l-.068-1.723c-.457.866-1.486 1.536-2.421 2.009-.914.473-1.953.709-3.116.709zM137.724 2.78c0 .408-.362.72-.765.66l-1.64-.25a.667.667 0 01-.566-.66V.668c0-.369.298-.667.666-.667h1.64c.367 0 .665.298.665.667V2.78z"
|
39
|
+
})]
|
40
|
+
}));
|
41
|
+
});
|
42
|
+
export default Icon;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import Avatar from './components/Avatar';
|
2
|
+
import Color from './components/Color';
|
3
|
+
import Combine from './components/Combine';
|
4
|
+
import Mono from './components/Mono';
|
5
|
+
import Text from './components/Text';
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
7
|
+
Avatar: typeof Avatar;
|
8
|
+
Color: typeof Color;
|
9
|
+
Combine: typeof Combine;
|
10
|
+
Text: typeof Text;
|
11
|
+
colorPrimary: string;
|
12
|
+
title: string;
|
13
|
+
};
|
14
|
+
declare const Icons: CompoundedIcon;
|
15
|
+
export default Icons;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
5
|
+
import Combine from "./components/Combine";
|
6
|
+
import Mono from "./components/Mono";
|
7
|
+
import Text from "./components/Text";
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
|
+
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
11
|
+
Icons.Text = Text;
|
12
|
+
Icons.Combine = Combine;
|
13
|
+
Icons.Avatar = Avatar;
|
14
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
15
|
+
Icons.title = TITLE;
|
16
|
+
export default Icons;
|
@@ -32,11 +32,11 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
32
32
|
children: [/*#__PURE__*/_jsx("title", {
|
33
33
|
children: TITLE
|
34
34
|
}), /*#__PURE__*/_jsx("path", {
|
35
|
-
d: "M8.373 14.
|
35
|
+
d: "M8.373 14.502c.013-.06.024-.118.038-.17l.061.145c.115.28.229.557.506.714-.012.254-.334.357-.552.326-.048-.114-.115-.228-.255-.164-.143.056-.3-.01-.266-.185.333-.012.407-.371.468-.666zM18.385 9.245c-.318 0-.616.122-.839.342l-.902.887c-.243.24-.368.572-.343.913l.006.056c.032.262.149.498.337.682.13.128.273.21.447.266a.866.866 0 01-.247.777l-.056.055a2.022 2.022 0 01-1.355-1.555l-.01-.057-.046.037c-.03.024-.06.05-.088.078l-.902.887a1.156 1.156 0 000 1.65c.231.228.535.342.84.342.304 0 .607-.114.838-.341l.902-.888a1.156 1.156 0 00-.436-1.921.953.953 0 01.276-.842 2.062 2.062 0 011.371 1.57l.01.057.047-.037c.03-.024.06-.05.088-.078l.902-.888a1.155 1.155 0 000-1.65 1.188 1.188 0 00-.84-.342z",
|
36
36
|
fill: "#1C3C3C"
|
37
37
|
}), /*#__PURE__*/_jsx("path", {
|
38
38
|
clipRule: "evenodd",
|
39
|
-
d: "M17.901
|
39
|
+
d: "M17.901 6H6.1C2.736 6 0 8.692 0 12s2.736 6 6.099 6H17.9C21.264 18 24 15.308 24 12s-2.736-6-6.099-6zm-5.821 9.407c-.195.04-.414.047-.562-.106-.045.1-.136.077-.221.056a.797.797 0 00-.061-.014c-.01.025-.017.048-.026.073-.329.021-.575-.309-.732-.558a4.991 4.991 0 00-.473-.21c-.172-.07-.345-.14-.509-.23a2.218 2.218 0 00-.004.173c-.002.244-.004.503-.227.651-.007.295.236.292.476.29.207-.003.41-.005.447.184a.485.485 0 01-.05.003c-.046 0-.092 0-.127.034-.117.111-.242.063-.372.013-.12-.046-.243-.094-.367-.02a2.318 2.318 0 00-.262.154.97.97 0 01-.548.194c-.024-.036-.014-.059.006-.08a.562.562 0 00.043-.056c.019-.028.035-.057.051-.084.054-.095.103-.18.242-.22-.185-.029-.344.055-.5.137l-.004.002a4.21 4.21 0 01-.065.034c-.097.04-.154.009-.212-.023-.082-.045-.168-.092-.376.04-.04-.032-.02-.061.002-.086.091-.109.21-.125.345-.119-.351-.193-.604-.056-.81.055-.182.098-.327.176-.471-.012-.065.017-.102.063-.138.108-.015.02-.03.038-.047.055-.035-.039-.027-.083-.018-.128l.005-.026a.242.242 0 00.003-.03l-.027-.01c-.053-.022-.105-.044-.09-.124-.117-.04-.2.03-.286.094-.054-.041-.01-.095.032-.145a.279.279 0 00.045-.065c.038-.065.103-.067.166-.069.054-.001.108-.003.145-.042.133-.075.297-.036.462.003.121.028.242.057.354.042.203.025.454-.18.352-.385-.186-.233-.184-.528-.183-.813v-.143c-.016-.108-.172-.233-.328-.358-.12-.095-.24-.191-.298-.28-.16-.177-.285-.382-.409-.585l-.015-.024c-.212-.404-.297-.86-.382-1.315-.103-.546-.205-1.09-.526-1.54-.266.144-.612.075-.841-.118-.12.107-.13.247-.138.396l-.001.014c-.297-.292-.26-.844-.023-1.17.097-.128.213-.233.342-.326.03-.021.04-.042.039-.074.235-1.04 1.836-.839 2.342-.103.167.206.281.442.395.678.137.283.273.566.5.795.22.237.452.463.684.689.359.35.718.699 1.032 1.089.49.587.839 1.276 1.144 1.97.05.092.08.193.11.293.044.15.089.299.2.417.026.035.084.088.149.148.156.143.357.328.289.409.009.019.027.04.05.06.032.028.074.058.116.088.122.087.25.178.16.25zm7.778-3.545l-.902.887c-.24.237-.537.413-.859.51l-.017.005-.006.015A2.021 2.021 0 0117.6 14l-.902.888c-.393.387-.916.6-1.474.6-.557 0-1.08-.213-1.474-.6a2.03 2.03 0 010-2.9l.902-.888c.242-.238.531-.409.859-.508l.016-.004.006-.016c.105-.272.265-.516.475-.724l.902-.887c.393-.387.917-.6 1.474-.6.558 0 1.08.213 1.474.6.394.387.61.902.61 1.45 0 .549-.216 1.064-.61 1.45v.001z",
|
40
40
|
fill: "#1C3C3C",
|
41
41
|
fillRule: "evenodd"
|
42
42
|
})]
|
@@ -34,10 +34,10 @@ var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
|
34
34
|
children: [/*#__PURE__*/_jsx("title", {
|
35
35
|
children: TITLE
|
36
36
|
}), /*#__PURE__*/_jsx("path", {
|
37
|
-
d: "M8.373 14.
|
37
|
+
d: "M8.373 14.502c.013-.06.024-.118.038-.17l.061.145c.115.28.229.557.506.714-.012.254-.334.357-.552.326-.048-.114-.115-.228-.255-.164-.143.056-.3-.01-.266-.185.333-.012.407-.371.468-.666zM18.385 9.245c-.318 0-.616.122-.839.342l-.902.887c-.243.24-.368.572-.343.913l.006.056c.032.262.149.498.337.682.13.128.273.21.447.266a.866.866 0 01-.247.777l-.056.055a2.022 2.022 0 01-1.355-1.555l-.01-.057-.046.037c-.03.024-.06.05-.088.078l-.902.887a1.156 1.156 0 000 1.65c.231.228.535.342.84.342.304 0 .607-.114.838-.341l.902-.888a1.156 1.156 0 00-.436-1.921.953.953 0 01.276-.842 2.062 2.062 0 011.371 1.57l.01.057.047-.037c.03-.024.06-.05.088-.078l.902-.888a1.155 1.155 0 000-1.65 1.188 1.188 0 00-.84-.342z"
|
38
38
|
}), /*#__PURE__*/_jsx("path", {
|
39
39
|
clipRule: "evenodd",
|
40
|
-
d: "M17.901
|
40
|
+
d: "M17.901 6H6.1C2.736 6 0 8.692 0 12s2.736 6 6.099 6H17.9C21.264 18 24 15.308 24 12s-2.736-6-6.099-6zm-5.821 9.407c-.195.04-.414.047-.562-.106-.045.1-.136.077-.221.056a.797.797 0 00-.061-.014c-.01.025-.017.048-.026.073-.329.021-.575-.309-.732-.558a4.991 4.991 0 00-.473-.21c-.172-.07-.345-.14-.509-.23a2.218 2.218 0 00-.004.173c-.002.244-.004.503-.227.651-.007.295.236.292.476.29.207-.003.41-.005.447.184a.485.485 0 01-.05.003c-.046 0-.092 0-.127.034-.117.111-.242.063-.372.013-.12-.046-.243-.094-.367-.02a2.318 2.318 0 00-.262.154.97.97 0 01-.548.194c-.024-.036-.014-.059.006-.08a.562.562 0 00.043-.056c.019-.028.035-.057.051-.084.054-.095.103-.18.242-.22-.185-.029-.344.055-.5.137l-.004.002a4.21 4.21 0 01-.065.034c-.097.04-.154.009-.212-.023-.082-.045-.168-.092-.376.04-.04-.032-.02-.061.002-.086.091-.109.21-.125.345-.119-.351-.193-.604-.056-.81.055-.182.098-.327.176-.471-.012-.065.017-.102.063-.138.108-.015.02-.03.038-.047.055-.035-.039-.027-.083-.018-.128l.005-.026a.242.242 0 00.003-.03l-.027-.01c-.053-.022-.105-.044-.09-.124-.117-.04-.2.03-.286.094-.054-.041-.01-.095.032-.145a.279.279 0 00.045-.065c.038-.065.103-.067.166-.069.054-.001.108-.003.145-.042.133-.075.297-.036.462.003.121.028.242.057.354.042.203.025.454-.18.352-.385-.186-.233-.184-.528-.183-.813v-.143c-.016-.108-.172-.233-.328-.358-.12-.095-.24-.191-.298-.28-.16-.177-.285-.382-.409-.585l-.015-.024c-.212-.404-.297-.86-.382-1.315-.103-.546-.205-1.09-.526-1.54-.266.144-.612.075-.841-.118-.12.107-.13.247-.138.396l-.001.014c-.297-.292-.26-.844-.023-1.17.097-.128.213-.233.342-.326.03-.021.04-.042.039-.074.235-1.04 1.836-.839 2.342-.103.167.206.281.442.395.678.137.283.273.566.5.795.22.237.452.463.684.689.359.35.718.699 1.032 1.089.49.587.839 1.276 1.144 1.97.05.092.08.193.11.293.044.15.089.299.2.417.026.035.084.088.149.148.156.143.357.328.289.409.009.019.027.04.05.06.032.028.074.058.116.088.122.087.25.178.16.25zm7.778-3.545l-.902.887c-.24.237-.537.413-.859.51l-.017.005-.006.015A2.021 2.021 0 0117.6 14l-.902.888c-.393.387-.916.6-1.474.6-.557 0-1.08-.213-1.474-.6a2.03 2.03 0 010-2.9l.902-.888c.242-.238.531-.409.859-.508l.016-.004.006-.016c.105-.272.265-.516.475-.724l.902-.887c.393-.387.917-.6 1.474-.6.558 0 1.08.213 1.474.6.394.387.61.902.61 1.45 0 .549-.216 1.064-.61 1.45v.001z"
|
41
41
|
})]
|
42
42
|
}));
|
43
43
|
});
|
@@ -0,0 +1,26 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["background"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { memo } from 'react';
|
13
|
+
import IconAvatar from "../../features/IconAvatar";
|
14
|
+
import { COLOR_PRIMARY, TITLE } from "../style";
|
15
|
+
import Mono from "./Mono";
|
16
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
17
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
18
|
+
var background = _ref.background,
|
19
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
20
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
21
|
+
Icon: Mono,
|
22
|
+
"aria-label": TITLE,
|
23
|
+
background: background || COLOR_PRIMARY
|
24
|
+
}, rest));
|
25
|
+
});
|
26
|
+
export default Avatar;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
height: size,
|
23
|
+
ref: ref,
|
24
|
+
style: _objectSpread({
|
25
|
+
flex: 'none',
|
26
|
+
lineHeight: 1
|
27
|
+
}, style),
|
28
|
+
viewBox: "0 0 24 24",
|
29
|
+
width: size,
|
30
|
+
xmlns: "http://www.w3.org/2000/svg"
|
31
|
+
}, rest), {}, {
|
32
|
+
children: [/*#__PURE__*/_jsx("title", {
|
33
|
+
children: TITLE
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
35
|
+
clipRule: "evenodd",
|
36
|
+
d: "M6.099 6H17.9C21.264 6 24 8.692 24 12s-2.736 6-6.099 6H6.1C2.736 18 0 15.308 0 12s2.736-6 6.099-6zm5.419 9.3c.148.154.367.146.561.106l.002.001c.09-.072-.038-.163-.16-.25-.074-.052-.145-.102-.166-.147.068-.08-.133-.265-.289-.408a1.52 1.52 0 01-.15-.148c-.11-.119-.155-.268-.2-.418-.03-.1-.06-.2-.11-.292-.304-.694-.653-1.383-1.143-1.97-.315-.39-.674-.74-1.033-1.09a19.384 19.384 0 01-.683-.688c-.226-.229-.362-.511-.499-.794-.114-.236-.228-.473-.396-.68-.507-.735-2.107-.936-2.342.104 0 .032-.01.052-.039.073-.13.094-.245.2-.342.327-.238.326-.274.877.022 1.17l.001-.019c.01-.147.02-.286.139-.391.228.193.576.262.841.117.32.45.422.995.525 1.54.085.456.17.912.382 1.316l.014.022c.124.203.25.41.41.587.059.089.178.184.297.279.157.125.314.25.329.359v.143c-.001.285-.002.58.184.813.103.205-.15.41-.352.385-.112.015-.233-.014-.354-.042-.165-.04-.329-.078-.462-.003-.038.04-.091.04-.145.042-.064.002-.129.004-.167.07-.008.019-.026.04-.045.063-.042.05-.087.105-.033.146l.015-.01c.082-.062.16-.12.27-.084-.014.08.039.102.092.123l.027.012a.344.344 0 01-.008.056c-.009.045-.017.088.018.127a.598.598 0 00.046-.054c.037-.046.073-.092.139-.11.144.19.289.111.471.013.206-.111.459-.248.81-.055-.135-.006-.255.01-.345.12-.023.024-.042.052-.002.084.207-.132.294-.085.375-.04.06.032.115.063.212.024l.07-.036c.155-.083.314-.166.499-.137-.139.039-.188.125-.242.218-.026.047-.054.095-.094.14-.021.021-.03.046-.007.08.29-.023.4-.095.548-.192.07-.046.15-.099.261-.154.124-.075.248-.027.368.02.13.05.255.098.371-.014.037-.033.083-.034.129-.034.016 0 .033 0 .05-.002-.037-.19-.24-.188-.448-.186-.24.003-.483.006-.475-.289.222-.149.224-.407.226-.651 0-.06 0-.117.005-.173.163.09.336.16.508.229.162.065.323.13.474.21.158.25.404.58.732.558.008-.026.016-.047.026-.073.019.004.039.008.059.014.086.02.178.044.223-.056zm6.429-2.829c.19.186.447.29.716.29.269 0 .526-.104.716-.29a.98.98 0 00.297-.7.98.98 0 00-.297-.7 1.024 1.024 0 00-1.08-.224l-.58-.831-.405.272.583.835a.978.978 0 00.05 1.348zm-1.817-2.69a1.03 1.03 0 001.056-.095.991.991 0 00.363-.507.97.97 0 00-.016-.62.994.994 0 00-.39-.488 1.028 1.028 0 00-1.298.14.987.987 0 00-.263.856.98.98 0 00.187.42c.095.125.218.225.36.294zm0 5.752a1.032 1.032 0 001.056-.095.991.991 0 00.363-.507.97.97 0 00-.016-.62.994.994 0 00-.39-.488 1.027 1.027 0 00-1.298.14.986.986 0 00-.263.856.98.98 0 00.187.42c.095.125.218.225.36.294zm.93-3.516v-.492h-1.55a.977.977 0 00-.217-.404l.584-.847-.425-.276-.583.847a1.023 1.023 0 00-1.047.23.973.973 0 00-.296.696c0 .261.107.512.296.696a1.023 1.023 0 001.047.23l.583.847.42-.276-.579-.847a.977.977 0 00.217-.404h1.55z",
|
37
|
+
fill: "#1C3C3C",
|
38
|
+
fillRule: "evenodd"
|
39
|
+
})]
|
40
|
+
}));
|
41
|
+
});
|
42
|
+
export default Icon;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { type IconCombineProps } from "../../features/IconCombine";
|
3
|
+
export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
|
4
|
+
type?: 'color' | 'mono';
|
5
|
+
}
|
6
|
+
declare const Combine: import("react").NamedExoticComponent<CombineProps>;
|
7
|
+
export default Combine;
|
@@ -0,0 +1,32 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["type"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { memo } from 'react';
|
13
|
+
import IconCombine from "../../features/IconCombine";
|
14
|
+
import { SPACE_MULTIPLE, TEXT_MULTIPLE, TITLE } from "../style";
|
15
|
+
import Color from "./Color";
|
16
|
+
import Mono from "./Mono";
|
17
|
+
import Text from "./Text";
|
18
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
19
|
+
var Combine = /*#__PURE__*/memo(function (_ref) {
|
20
|
+
var _ref$type = _ref.type,
|
21
|
+
type = _ref$type === void 0 ? 'mono' : _ref$type,
|
22
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
23
|
+
var Icon = type === 'color' ? Color : Mono;
|
24
|
+
return /*#__PURE__*/_jsx(IconCombine, _objectSpread({
|
25
|
+
Icon: Icon,
|
26
|
+
Text: Text,
|
27
|
+
"aria-label": TITLE,
|
28
|
+
spaceMultiple: SPACE_MULTIPLE,
|
29
|
+
textMultiple: TEXT_MULTIPLE
|
30
|
+
}, rest));
|
31
|
+
});
|
32
|
+
export default Combine;
|
@@ -0,0 +1,42 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
height: size,
|
25
|
+
ref: ref,
|
26
|
+
style: _objectSpread({
|
27
|
+
flex: 'none',
|
28
|
+
lineHeight: 1
|
29
|
+
}, style),
|
30
|
+
viewBox: "0 0 24 24",
|
31
|
+
width: size,
|
32
|
+
xmlns: "http://www.w3.org/2000/svg"
|
33
|
+
}, rest), {}, {
|
34
|
+
children: [/*#__PURE__*/_jsx("title", {
|
35
|
+
children: TITLE
|
36
|
+
}), /*#__PURE__*/_jsx("path", {
|
37
|
+
clipRule: "evenodd",
|
38
|
+
d: "M6.099 6H17.9C21.264 6 24 8.692 24 12s-2.736 6-6.099 6H6.1C2.736 18 0 15.308 0 12s2.736-6 6.099-6zm5.419 9.3c.148.154.367.146.561.106l.002.001c.09-.072-.038-.163-.16-.25-.074-.052-.145-.102-.166-.147.068-.08-.133-.265-.289-.408a1.52 1.52 0 01-.15-.148c-.11-.119-.155-.268-.2-.418-.03-.1-.06-.2-.11-.292-.304-.694-.653-1.383-1.143-1.97-.315-.39-.674-.74-1.033-1.09a19.384 19.384 0 01-.683-.688c-.226-.229-.362-.511-.499-.794-.114-.236-.228-.473-.396-.68-.507-.735-2.107-.936-2.342.104 0 .032-.01.052-.039.073-.13.094-.245.2-.342.327-.238.326-.274.877.022 1.17l.001-.019c.01-.147.02-.286.139-.391.228.193.576.262.841.117.32.45.422.995.525 1.54.085.456.17.912.382 1.316l.014.022c.124.203.25.41.41.587.059.089.178.184.297.279.157.125.314.25.329.359v.143c-.001.285-.002.58.184.813.103.205-.15.41-.352.385-.112.015-.233-.014-.354-.042-.165-.04-.329-.078-.462-.003-.038.04-.091.04-.145.042-.064.002-.129.004-.167.07-.008.019-.026.04-.045.063-.042.05-.087.105-.033.146l.015-.01c.082-.062.16-.12.27-.084-.014.08.039.102.092.123l.027.012a.344.344 0 01-.008.056c-.009.045-.017.088.018.127a.598.598 0 00.046-.054c.037-.046.073-.092.139-.11.144.19.289.111.471.013.206-.111.459-.248.81-.055-.135-.006-.255.01-.345.12-.023.024-.042.052-.002.084.207-.132.294-.085.375-.04.06.032.115.063.212.024l.07-.036c.155-.083.314-.166.499-.137-.139.039-.188.125-.242.218-.026.047-.054.095-.094.14-.021.021-.03.046-.007.08.29-.023.4-.095.548-.192.07-.046.15-.099.261-.154.124-.075.248-.027.368.02.13.05.255.098.371-.014.037-.033.083-.034.129-.034.016 0 .033 0 .05-.002-.037-.19-.24-.188-.448-.186-.24.003-.483.006-.475-.289.222-.149.224-.407.226-.651 0-.06 0-.117.005-.173.163.09.336.16.508.229.162.065.323.13.474.21.158.25.404.58.732.558.008-.026.016-.047.026-.073.019.004.039.008.059.014.086.02.178.044.223-.056zm6.429-2.829c.19.186.447.29.716.29.269 0 .526-.104.716-.29a.98.98 0 00.297-.7.98.98 0 00-.297-.7 1.024 1.024 0 00-1.08-.224l-.58-.831-.405.272.583.835a.978.978 0 00.05 1.348zm-1.817-2.69a1.03 1.03 0 001.056-.095.991.991 0 00.363-.507.97.97 0 00-.016-.62.994.994 0 00-.39-.488 1.028 1.028 0 00-1.298.14.987.987 0 00-.263.856.98.98 0 00.187.42c.095.125.218.225.36.294zm0 5.752a1.032 1.032 0 001.056-.095.991.991 0 00.363-.507.97.97 0 00-.016-.62.994.994 0 00-.39-.488 1.027 1.027 0 00-1.298.14.986.986 0 00-.263.856.98.98 0 00.187.42c.095.125.218.225.36.294zm.93-3.516v-.492h-1.55a.977.977 0 00-.217-.404l.584-.847-.425-.276-.583.847a1.023 1.023 0 00-1.047.23.973.973 0 00-.296.696c0 .261.107.512.296.696a1.023 1.023 0 001.047.23l.583.847.42-.276-.579-.847a.977.977 0 00.217-.404h1.55z"
|
39
|
+
})]
|
40
|
+
}));
|
41
|
+
});
|
42
|
+
export default Icon;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
fill: "currentColor",
|
23
|
+
fillRule: "evenodd",
|
24
|
+
height: size,
|
25
|
+
ref: ref,
|
26
|
+
style: _objectSpread({
|
27
|
+
flex: 'none',
|
28
|
+
lineHeight: 1
|
29
|
+
}, style),
|
30
|
+
viewBox: "0 0 137 24",
|
31
|
+
xmlns: "http://www.w3.org/2000/svg"
|
32
|
+
}, rest), {}, {
|
33
|
+
children: [/*#__PURE__*/_jsx("title", {
|
34
|
+
children: TITLE
|
35
|
+
}), /*#__PURE__*/_jsx("path", {
|
36
|
+
d: "M75.843 1.506C74.48.506 72.598 0 70.254 0c-1.69 0-3.229.368-4.573 1.092a7.992 7.992 0 00-3.192 3.142c-.776 1.361-1.168 3.024-1.168 4.944 0 1.465.232 2.783.691 3.917.457 1.131 1.103 2.1 1.915 2.879a8.292 8.292 0 002.848 1.778 9.92 9.92 0 003.482.604c1.84 0 3.441-.37 4.76-1.099a7.645 7.645 0 003.053-3.036c.708-1.287 1.067-2.78 1.067-4.438 0-.048-.005-.2-.013-.455a8.398 8.398 0 00-.029-.497h-6.654v2.162h3.417l-.015.099c-.162 1.027-.482 1.897-.95 2.585a4.413 4.413 0 01-1.833 1.55c-.743.338-1.626.505-2.6.496-1.308-.016-2.415-.299-3.288-.841a5.053 5.053 0 01-1.97-2.282c-.432-.966-.65-2.118-.65-3.424s.221-2.465.655-3.443c.44-.982 1.1-1.757 1.97-2.3.87-.542 1.977-.809 3.282-.793 1.301 0 2.39.324 3.232.964.823.623 1.426 1.462 1.8 2.495l3.115-.455c-.49-1.764-1.419-3.158-2.763-4.142v.004zM116.276 5.28c-1.005-.614-2.189-.92-3.556-.92-1.366 0-2.528.306-3.461.92a5.715 5.715 0 00-.541.407v-.956h-2.853V24h3.254v-6.607c.058.041.115.083.175.122.955.618 2.137.927 3.548.927 1.33 0 2.492-.309 3.482-.927a6.314 6.314 0 002.304-2.52c.544-1.063.818-2.261.818-3.595s-.277-2.555-.83-3.613a6.308 6.308 0 00-2.337-2.507h-.003zm-.643 8.34c-.264.661-.668 1.188-1.212 1.574-.544.387-1.237.58-2.077.58-.841 0-1.566-.184-2.098-.55-.531-.365-.92-.878-1.164-1.538-.247-.658-.369-1.421-.369-2.286s.122-1.638.369-2.29c.244-.656.628-1.167 1.145-1.532.518-.366 1.187-.55 2.009-.55.866 0 1.582.195 2.143.586.563.391.977.918 1.247 1.583.266.662.401 1.398.401 2.205 0 .807-.132 1.555-.394 2.217zM134.421 9.369a7.715 7.715 0 00-.381-1.638 5.383 5.383 0 00-.911-1.63c-.411-.51-.965-.931-1.66-1.26-.696-.33-1.582-.495-2.651-.495-1.357 0-2.502.274-3.429.821-.499.295-.93.644-1.3 1.047V.283h-2.88v17.786h3.27v-6.856c0-.814.097-1.483.294-2.007.197-.522.456-.934.783-1.235a2.836 2.836 0 011.092-.637 4.11 4.11 0 011.22-.187c.768 0 1.376.152 1.827.458.452.306.791.695 1.018 1.168.227.474.371.966.436 1.477.063.51.095.975.095 1.396v6.423h3.269V10.62c0-.322-.03-.738-.087-1.253l-.005.002zM88.703 4.848c-.444.027-.88.106-1.302.23a4.746 4.746 0 00-1.154.51 3.712 3.712 0 00-1.05.883 4.545 4.545 0 00-.359.511l-.12.195V4.903h-2.69v13.058h3.074v-6.64c0-.505.067-.986.2-1.425.134-.44.344-.84.625-1.185.282-.347.651-.634 1.1-.857a3.662 3.662 0 011.514-.435c.521-.04.992-.007 1.404.092V4.894a6.017 6.017 0 00-1.242-.046zM2 .25v17.747h13.254v-2.681H5.01V.25H2zM22.322 4.462c-2.888 0-5.05 1.248-5.928 3.426l-.225.559 2.477 1.476.336-.81c.574-1.379 1.636-2.02 3.34-2.02 1.703 0 2.678.76 2.66 2.262 0 .062-.005.246-.005.246s-2.254.338-3.182.518c-3.962.773-5.623 2.166-5.623 4.45 0 1.216.733 2.532 2.07 3.27.803.444 1.85.61 3.005.61.76 0 1.498-.104 2.184-.297 1.556-.476 1.988-1.412 1.988-1.412v1.223h2.576V9.21c0-2.975-2.12-4.75-5.67-4.75l-.003.002zm2.668 9.341c0 .92-1.087 2.215-3.619 2.215-.713 0-1.221-.175-1.558-.435a1.367 1.367 0 01-.539-1.288c.028-.19.152-.605.619-.963.476-.368 1.316-.628 2.616-.89a98.96 98.96 0 012.48-.451v1.812zM97.718 4.462c-2.888 0-5.05 1.248-5.928 3.426l-.224.559 2.476 1.476.337-.81c.573-1.379 1.636-2.02 3.34-2.02 1.702 0 2.677.76 2.66 2.262 0 .062-.005.246-.005.246s-2.255.338-3.182.518c-3.963.773-5.624 2.166-5.624 4.45 0 1.216.733 2.532 2.07 3.27.803.444 1.85.61 3.005.61.761 0 1.5-.104 2.184-.297 1.557-.476 1.988-1.412 1.988-1.412v1.223h2.576V9.21c0-2.975-2.12-4.75-5.67-4.75l-.003.002zm2.668 9.341c0 .92-1.087 2.215-3.618 2.215-.714 0-1.222-.175-1.559-.435a1.368 1.368 0 01-.539-1.288c.028-.19.153-.605.62-.963.475-.368 1.316-.628 2.615-.89 1.07-.214 2.481-.451 2.481-.451v1.812zM37.511 4.462c-.359 0-.708.022-1.045.066-2.307.32-2.982 1.4-2.982 1.4v-1.08h-2.886V17.97h3.01v-7.278c0-2.473 1.955-3.6 3.773-3.6 1.965 0 2.921.975 2.921 2.978v7.898h3.01v-8.28c0-3.226-2.222-5.229-5.8-5.229v.003zM55.87 4.839V6.19s-.738-1.73-4.092-1.73c-4.167 0-6.758 2.654-6.758 6.923 0 2.41.835 4.307 2.31 5.505 1.144.932 2.675 1.41 4.5 1.442 1.267.023 2.09-.297 2.601-.598.985-.577 1.35-1.127 1.35-1.127s-.043.43-.118 1.012c-.055.421-.157.718-.157.718-.459 1.504-1.798 2.373-3.753 2.373s-3.14-.593-3.374-1.762l-2.925.805c.506 2.247 2.793 3.59 6.117 3.59 2.26 0 4.032-.566 5.267-1.685 1.244-1.127 1.877-2.753 1.877-4.832V4.839H55.87zm-.189 6.666c0 2.627-1.392 4.195-3.72 4.195-2.497 0-3.929-1.573-3.929-4.314s1.432-4.291 3.928-4.291c2.274 0 3.701 1.561 3.721 4.075v.335z"
|
37
|
+
})]
|
38
|
+
}));
|
39
|
+
});
|
40
|
+
export default Icon;
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import Avatar from './components/Avatar';
|
2
|
+
import Color from './components/Color';
|
3
|
+
import Combine from './components/Combine';
|
4
|
+
import Mono from './components/Mono';
|
5
|
+
import Text from './components/Text';
|
6
|
+
export type CompoundedIcon = typeof Mono & {
|
7
|
+
Avatar: typeof Avatar;
|
8
|
+
Color: typeof Color;
|
9
|
+
Combine: typeof Combine;
|
10
|
+
Text: typeof Text;
|
11
|
+
colorPrimary: string;
|
12
|
+
title: string;
|
13
|
+
};
|
14
|
+
declare const Icons: CompoundedIcon;
|
15
|
+
export default Icons;
|
@@ -0,0 +1,16 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
import Avatar from "./components/Avatar";
|
4
|
+
import Color from "./components/Color";
|
5
|
+
import Combine from "./components/Combine";
|
6
|
+
import Mono from "./components/Mono";
|
7
|
+
import Text from "./components/Text";
|
8
|
+
import { COLOR_PRIMARY, TITLE } from "./style";
|
9
|
+
var Icons = Mono;
|
10
|
+
Icons.Color = Color;
|
11
|
+
Icons.Text = Text;
|
12
|
+
Icons.Combine = Combine;
|
13
|
+
Icons.Avatar = Avatar;
|
14
|
+
Icons.colorPrimary = COLOR_PRIMARY;
|
15
|
+
Icons.title = TITLE;
|
16
|
+
export default Icons;
|
@@ -0,0 +1,26 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["background"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { memo } from 'react';
|
13
|
+
import IconAvatar from "../../features/IconAvatar";
|
14
|
+
import { COLOR_PRIMARY, TITLE } from "../style";
|
15
|
+
import Mono from "./Mono";
|
16
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
17
|
+
var Avatar = /*#__PURE__*/memo(function (_ref) {
|
18
|
+
var background = _ref.background,
|
19
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
20
|
+
return /*#__PURE__*/_jsx(IconAvatar, _objectSpread({
|
21
|
+
Icon: Mono,
|
22
|
+
"aria-label": TITLE,
|
23
|
+
background: background || COLOR_PRIMARY
|
24
|
+
}, rest));
|
25
|
+
});
|
26
|
+
export default Avatar;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
'use client';
|
2
|
+
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
4
|
+
var _excluded = ["size", "style"];
|
5
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
6
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
7
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
|
+
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
|
+
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
11
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
12
|
+
import { forwardRef } from 'react';
|
13
|
+
import { TITLE } from "../style";
|
14
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
15
|
+
import { jsxs as _jsxs } from "react/jsx-runtime";
|
16
|
+
var Icon = /*#__PURE__*/forwardRef(function (_ref, ref) {
|
17
|
+
var _ref$size = _ref.size,
|
18
|
+
size = _ref$size === void 0 ? '1em' : _ref$size,
|
19
|
+
style = _ref.style,
|
20
|
+
rest = _objectWithoutProperties(_ref, _excluded);
|
21
|
+
return /*#__PURE__*/_jsxs("svg", _objectSpread(_objectSpread({
|
22
|
+
height: size,
|
23
|
+
ref: ref,
|
24
|
+
style: _objectSpread({
|
25
|
+
flex: 'none',
|
26
|
+
lineHeight: 1
|
27
|
+
}, style),
|
28
|
+
viewBox: "0 0 24 24",
|
29
|
+
width: size,
|
30
|
+
xmlns: "http://www.w3.org/2000/svg"
|
31
|
+
}, rest), {}, {
|
32
|
+
children: [/*#__PURE__*/_jsx("title", {
|
33
|
+
children: TITLE
|
34
|
+
}), /*#__PURE__*/_jsx("path", {
|
35
|
+
d: "M14.09 15.207c-.067.11-.268.116-.44.015a.466.466 0 01-.19-.2c-.032-.071-.033-.138-.002-.189.035-.057.108-.086.194-.086.077 0 .165.023.246.071.17.101.259.28.192.389zM24 12c0 3.308-2.736 6-6.099 6H6.1C2.736 18 0 15.309 0 12s2.736-6 6.099-6H17.9C21.264 6 24 8.692 24 12zm-12.246 3.01c.096-.116-.348-.439-.439-.557-.184-.197-.185-.48-.31-.71-.304-.694-.654-1.383-1.143-1.97-.518-.643-1.156-1.175-1.716-1.778-.417-.421-.528-1.02-.895-1.474-.507-.735-2.108-.936-2.343.103.001.033-.009.053-.038.074-.13.093-.245.199-.342.327-.238.325-.274.877.022 1.17.01-.154.015-.3.14-.41.229.194.575.262.84.117.588.825.442 1.967.908 2.856.13.21.259.425.424.609.135.205.598.448.625.638.005.326-.034.683.184.956.102.205-.15.41-.352.385-.264.035-.585-.175-.816-.046-.082.087-.241-.009-.312.112-.024.062-.156.15-.077.21.087-.065.168-.133.286-.095-.018.095.058.108.118.135-.002.064-.04.13.01.184.058-.058.092-.14.185-.163.306.401.618-.407 1.28-.043-.134-.006-.253.01-.344.119-.023.024-.042.053-.002.085.358-.227.356.078.588-.016.178-.092.356-.206.568-.174-.206.059-.214.222-.335.36-.02.02-.03.045-.007.08.429-.036.464-.176.81-.348.258-.155.515.221.738.007.05-.046.117-.03.178-.037-.078-.41-.936.075-.923-.474.276-.185.213-.539.232-.824.317.173.67.274.982.44.157.249.403.579.732.557l.025-.072c.1.017.228.081.283-.043.148.154.367.146.561.107.144-.116-.27-.28-.326-.398zm4.452-1.936l-.653-.867c-.57.642-.95.954-.957.96-.004.003-.367.351-.698.65-.325.293-.582.524-.713.778a.763.763 0 00-.004.586c.085.2.258.342.515.423.077.024.15.034.221.034.463 0 .767-.457.769-.46.004-.006.398-.56.877-1.258.16-.232.342-.478.643-.846zm3.07 1.997a.518.518 0 00-.134-.347l-.081-.09-2.235-2.491a37.665 37.665 0 01-1.357-1.628l-.082-.168v-.296a.8.8 0 00-.065-.314l-.174-.408c-.003-.006-.004-.013-.003-.019l.007-.057c0-.009.005-.017.013-.023a2.079 2.079 0 011.426-.469c.103.004.12-.05.124-.074.014-.114-.25-.247-.494-.297-.337-.067-1.232-.247-1.947.215l-.006.004c-.462.38-.834.67-.838.674l-.008.008a.476.476 0 00-.105.357c.02.127-.046.173-.05.175-.004.003-.096.06-.19-.005-.115-.084-.314.06-.355.093l-.3.254-.006.006c-.006.006-.135.154.038.392.149.206.201.275.33.433.132.16.368.364.381.374.006.005.15.113.35-.037.163-.124.294-.235.294-.235.01-.009.106-.085.11-.199v-.086c-.003-.08-.003-.104.058-.142.03 0 .119.032.196.07a.83.83 0 00.376.104c.11.014.232.138.274.188.004.004.377.39.902 1.064.1.129.468.61.568.744l.695.931c.474.634 1.004 1.345 1.245 1.665.08.106.197.178.329.203l.09.017a.524.524 0 00.51-.18l.004-.007a.512.512 0 00.11-.32v-.08zm.42-5.694l-.105-.102a.155.155 0 00-.227.01l-.653.76a.111.111 0 01-.074.038l-.232.023a.113.113 0 01-.083-.025l-.371-.31a.109.109 0 01-.04-.079l-.005-.183a.107.107 0 01.025-.073l.636-.753a.15.15 0 000-.196l-.065-.074a.156.156 0 00-.171-.044 7.53 7.53 0 00-.803.348c-.387.205-.656.531-.702.85-.034.234-.02.62-.008.828a.443.443 0 01-.055.238c-.05.091-.138.237-.271.413-.069.092-.112.127-.17.195l.719.832c.173-.199.325-.35.457-.495.241-.264.316-.267.517-.273.124-.005.294-.01.563-.076.734-.18.966-.962.976-.997l.182-.71a.151.151 0 00-.04-.144zM8.41 14.333c-.08.303-.105.82-.506.835-.033.175.123.241.265.185.141-.064.208.05.256.164.217.031.54-.072.551-.325-.325-.184-.425-.535-.567-.86h.001z",
|
36
|
+
fill: "#1C3C3C"
|
37
|
+
})]
|
38
|
+
}));
|
39
|
+
});
|
40
|
+
export default Icon;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import { type IconCombineProps } from "../../features/IconCombine";
|
3
|
+
export interface CombineProps extends Omit<IconCombineProps, 'Icon' | 'Text'> {
|
4
|
+
type?: 'color' | 'mono';
|
5
|
+
}
|
6
|
+
declare const Combine: import("react").NamedExoticComponent<CombineProps>;
|
7
|
+
export default Combine;
|