@aloudata/aloudata-design 1.9.16 → 1.10.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/dist/Button/style/type.less +1 -1
- package/dist/Checkbox/style/index.less +35 -9
- package/dist/ConfigProvider/getUserList.d.ts +13 -1
- package/dist/ConfigProvider/getUserList.js +5 -0
- package/dist/Icon/components/AlertTriangleDuotone.d.ts +3 -2
- package/dist/Icon/components/AlertTriangleDuotone.js +3 -3
- package/dist/Icon/components/CancelCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/CancelCircleDuotone.js +4 -4
- package/dist/Icon/components/CheckCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/CheckCircleDuotone.js +4 -4
- package/dist/Icon/components/ChevronDownLine.d.ts +3 -2
- package/dist/Icon/components/ChevronDownLine.js +3 -3
- package/dist/Icon/components/ChevronLeftLine.d.ts +3 -2
- package/dist/Icon/components/ChevronLeftLine.js +3 -3
- package/dist/Icon/components/ChevronRightLine.d.ts +3 -2
- package/dist/Icon/components/ChevronRightLine.js +3 -3
- package/dist/Icon/components/CloseLLine.d.ts +3 -2
- package/dist/Icon/components/CloseLLine.js +4 -4
- package/dist/Icon/components/CloseMLine.d.ts +3 -2
- package/dist/Icon/components/CloseMLine.js +3 -3
- package/dist/Icon/components/DragLine.d.ts +11 -0
- package/dist/Icon/components/DragLine.js +35 -0
- package/dist/Icon/components/EyeOffLine.d.ts +3 -2
- package/dist/Icon/components/EyeOffLine.js +3 -3
- package/dist/Icon/components/EyeOnLine.d.ts +3 -2
- package/dist/Icon/components/EyeOnLine.js +3 -3
- package/dist/Icon/components/FoldDownFill.d.ts +3 -2
- package/dist/Icon/components/FoldDownFill.js +4 -4
- package/dist/Icon/components/FoldUpFill.d.ts +3 -2
- package/dist/Icon/components/FoldUpFill.js +4 -4
- package/dist/Icon/components/InfoCircleDuotone.d.ts +3 -2
- package/dist/Icon/components/InfoCircleDuotone.js +3 -3
- package/dist/Icon/components/InfoCircleLine.d.ts +3 -2
- package/dist/Icon/components/InfoCircleLine.js +3 -3
- package/dist/Icon/components/LoadingLine.d.ts +3 -2
- package/dist/Icon/components/LoadingLine.js +3 -3
- package/dist/Icon/components/MoreVerticalLine.d.ts +3 -2
- package/dist/Icon/components/MoreVerticalLine.js +3 -3
- package/dist/Icon/components/SearchLine.d.ts +3 -2
- package/dist/Icon/components/SearchLine.js +3 -3
- package/dist/Icon/index.d.ts +1 -0
- package/dist/Icon/index.js +1 -0
- package/dist/Icon/svg/drag-line.svg +5 -0
- package/dist/MemberPicker/components/MemberSelection.d.ts +1 -1
- package/dist/MemberPicker/components/MemberSelection.js +8 -3
- package/dist/MemberPicker/components/MultipleOption.d.ts +5 -2
- package/dist/MemberPicker/components/MultipleOption.js +20 -5
- package/dist/MemberPicker/components/NickLabel.d.ts +3 -3
- package/dist/MemberPicker/components/NickLabel.js +6 -6
- package/dist/MemberPicker/components/Panel.d.ts +7 -4
- package/dist/MemberPicker/components/Panel.js +70 -20
- package/dist/MemberPicker/components/PanelWrapper.d.ts +14 -0
- package/dist/MemberPicker/components/PanelWrapper.js +126 -0
- package/dist/MemberPicker/components/SelectedMemberTags.d.ts +3 -2
- package/dist/MemberPicker/components/SelectedMemberTags.js +8 -5
- package/dist/MemberPicker/components/SelectorFooter.js +1 -1
- package/dist/MemberPicker/components/SingleOption.d.ts +3 -2
- package/dist/MemberPicker/components/SingleOption.js +7 -4
- package/dist/MemberPicker/components/UserGroupSelection.d.ts +14 -0
- package/dist/MemberPicker/components/UserGroupSelection.js +130 -0
- package/dist/MemberPicker/index.d.ts +2 -0
- package/dist/MemberPicker/index.js +28 -17
- package/dist/MemberPicker/interface.d.ts +11 -5
- package/dist/MemberPicker/interface.js +6 -1
- package/dist/MemberPicker/style/index.less +18 -3
- package/dist/MemberPicker/utils/getUsersWithUserId.d.ts +4 -0
- package/dist/MemberPicker/utils/getUsersWithUserId.js +23 -2
- package/dist/MemberPicker/utils/index.d.ts +6 -0
- package/dist/MemberPicker/utils/index.js +16 -0
- package/dist/Modal/index.js +1 -1
- package/dist/Radio/style/index.less +1 -1
- package/dist/ScrollArea/index.d.ts +1 -0
- package/dist/ScrollArea/index.js +6 -3
- package/dist/Table/components/Cell.d.ts +7 -0
- package/dist/Table/components/Cell.js +20 -0
- package/dist/Table/components/Header.d.ts +6 -0
- package/dist/Table/components/Header.js +19 -0
- package/dist/{AldTable → Table}/helper.d.ts +9 -2
- package/dist/Table/helper.js +121 -0
- package/dist/Table/hooks/useScroll.d.ts +26 -0
- package/dist/Table/hooks/useScroll.js +57 -0
- package/dist/Table/index.d.ts +3 -1
- package/dist/Table/index.js +176 -1
- package/dist/Table/style/index.less +106 -203
- package/dist/{AldTable → Table}/types.d.ts +5 -4
- package/dist/Tree/DirectoryTree.d.ts +20 -0
- package/dist/Tree/DirectoryTree.js +175 -0
- package/dist/Tree/Tree.d.ts +136 -0
- package/dist/Tree/Tree.js +130 -0
- package/dist/Tree/demo/basic/index.js +3 -2
- package/dist/Tree/demo/drag/index.d.ts +3 -0
- package/dist/Tree/demo/drag/index.js +52 -0
- package/dist/Tree/index.d.ts +19 -13
- package/dist/Tree/index.js +7 -17
- package/dist/Tree/style/checkbox.less +226 -0
- package/dist/Tree/style/directory.less +68 -0
- package/dist/Tree/style/index.less +68 -29
- package/dist/Tree/style/mixin.less +333 -0
- package/dist/Tree/style/reset.less +11 -0
- package/dist/Tree/style/rtl.less +68 -0
- package/dist/Tree/style/var.less +42 -0
- package/dist/Tree/utils/dictUtil.d.ts +9 -0
- package/dist/Tree/utils/dictUtil.js +74 -0
- package/dist/Tree/utils/dropIndicator.d.ts +9 -0
- package/dist/Tree/utils/dropIndicator.js +35 -0
- package/dist/Tree/utils/iconUtil.d.ts +5 -0
- package/dist/Tree/utils/iconUtil.js +63 -0
- package/dist/_utils/motion.d.ts +8 -0
- package/dist/_utils/motion.js +52 -0
- package/dist/_utils/reactNode.d.ts +8 -0
- package/dist/_utils/reactNode.js +15 -0
- package/dist/_utils/type.d.ts +9 -0
- package/dist/_utils/type.js +20 -0
- package/dist/index.d.ts +11 -13
- package/dist/index.js +6 -7
- package/dist/style/color/bezierEasing.less +110 -0
- package/dist/style/color/colorPalette.less +84 -0
- package/dist/style/color/colors.less +162 -0
- package/dist/style/color/tinyColor.less +1184 -0
- package/dist/style/core/index.less +2 -0
- package/dist/style/core/motion/fade.less +34 -0
- package/dist/style/core/motion/move.less +129 -0
- package/dist/style/core/motion/other.less +48 -0
- package/dist/style/core/motion/slide.less +131 -0
- package/dist/style/core/motion/zoom.less +179 -0
- package/dist/style/core/motion.less +22 -0
- package/dist/style/index.less +2 -0
- package/dist/style/mixins/index.less +1 -0
- package/dist/style/mixins/motion.less +33 -0
- package/dist/style/themes/default/default.less +24 -0
- package/dist/style/themes/default/index.less +1 -0
- package/package.json +2 -2
- package/dist/AldTable/helper.js +0 -109
- package/dist/AldTable/index.d.ts +0 -4
- package/dist/AldTable/index.js +0 -146
- package/dist/AldTable/style/index.d.ts +0 -2
- package/dist/AldTable/style/index.js +0 -2
- package/dist/AldTable/style/index.less +0 -135
- package/dist/Table/Table.d.ts +0 -6
- package/dist/Table/Table.js +0 -360
- package/dist/Table/components/Empty/index.d.ts +0 -3
- package/dist/Table/components/Empty/index.js +0 -14
- package/dist/Table/components/Loading/index.d.ts +0 -3
- package/dist/Table/components/Loading/index.js +0 -12
- package/dist/Table/components/TableBodyRowList/index.d.ts +0 -13
- package/dist/Table/components/TableBodyRowList/index.js +0 -75
- package/dist/Table/components/TableHead/index.d.ts +0 -23
- package/dist/Table/components/TableHead/index.js +0 -229
- package/dist/Table/constant.d.ts +0 -0
- package/dist/Table/constant.js +0 -0
- package/dist/Table/hooks/useFrame.d.ts +0 -7
- package/dist/Table/hooks/useFrame.js +0 -75
- package/dist/Table/interface.d.ts +0 -42
- package/dist/Table/interface.js +0 -1
- package/dist/Table/react-table-config.d.ts +0 -122
- package/dist/Table/style/variable.less +0 -4
- package/dist/Table/utils.d.ts +0 -15
- package/dist/Table/utils.js +0 -122
- /package/dist/{AldTable → Table}/types.js +0 -0
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
.ant-checkbox-inner {
|
|
5
5
|
border: 1px solid #dbdbdb !important;
|
|
6
6
|
background-color: #fff !important;
|
|
7
|
+
transform: scale(0.875);
|
|
7
8
|
}
|
|
8
9
|
// 此处同理
|
|
9
10
|
.ant-checkbox::after,
|
|
@@ -74,16 +75,26 @@
|
|
|
74
75
|
border-color: @B40;
|
|
75
76
|
|
|
76
77
|
&::after {
|
|
77
|
-
top: 3px;
|
|
78
|
-
left: 2px;
|
|
78
|
+
// top: 3px;
|
|
79
|
+
// left: 2px;
|
|
79
80
|
z-index: 10;
|
|
80
|
-
width: 10px;
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
81
|
+
// width: 10px;
|
|
82
|
+
// background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAQCAYAAAAS7Y8mAAAACXBIWXMAABYlAAAWJQFJUiTwAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADLSURBVHgBrdTPDcIgFAZwHo3O0RF6MdGbjuAI3aCjuAGj6E3jyRGYQwPIR2rT1mfDH79Lyct7vxRIIPGHbLtr/aJKrZxpb6edRk2KwgB9kjw74fb4brp7Uwx/UL+s+1JtyakimEERbZw9YkEiI79Q6+zh0Z9xMhyDDjB3qyVogGfNeu2bODwFRST+dNQchoGUoAE2fvtoGtUmeA6KhDNu/LBkhmUlW2usSkUHeAGfJwqdwBF4NPoFL+BJKAszeDKKsG8FEGAk6JKDIm/pQrazK2zB6QAAAABJRU5ErkJggg==')
|
|
83
|
+
// no-repeat;
|
|
84
|
+
// background-size: 100%, 100%;
|
|
85
|
+
// border-width: 0;
|
|
86
|
+
// transform: none;
|
|
87
|
+
position: absolute;
|
|
88
|
+
// top: 0;
|
|
89
|
+
// left: 0;
|
|
90
|
+
// width: 100%;
|
|
91
|
+
// height: 100%;
|
|
92
|
+
border: 2px solid #3271c9;
|
|
93
|
+
border-top: 0;
|
|
94
|
+
border-left: 0;
|
|
95
|
+
transform: rotate(45deg) scale(1) translate(-50%, -50%);
|
|
96
|
+
opacity: 1;
|
|
97
|
+
transition: all 0.2s cubic-bezier(0.12, 0.4, 0.29, 1.46) 0.1s;
|
|
87
98
|
}
|
|
88
99
|
}
|
|
89
100
|
}
|
|
@@ -195,6 +206,21 @@
|
|
|
195
206
|
cursor: default;
|
|
196
207
|
}
|
|
197
208
|
|
|
209
|
+
.ant-checkbox-wrapper[class]:hover .ant-checkbox::after {
|
|
210
|
+
visibility: hidden;
|
|
211
|
+
}
|
|
212
|
+
|
|
198
213
|
.ant-checkbox-checked:hover .ant-checkbox-inner[class] {
|
|
199
214
|
background-color: transparent;
|
|
200
215
|
}
|
|
216
|
+
@keyframes ald-checkbox-effect {
|
|
217
|
+
0% {
|
|
218
|
+
transform: scale(1);
|
|
219
|
+
opacity: 0.5;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
100% {
|
|
223
|
+
transform: scale(1.6);
|
|
224
|
+
opacity: 0;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
export declare enum EUserType {
|
|
3
|
+
USER = "USER",
|
|
4
|
+
USER_GROUP = "USER_GROUP"
|
|
5
|
+
}
|
|
2
6
|
export interface IUser {
|
|
7
|
+
type: EUserType.USER;
|
|
3
8
|
userId: string;
|
|
4
9
|
account?: string;
|
|
5
10
|
nickname?: string;
|
|
6
11
|
photo?: string;
|
|
7
12
|
[key: string]: unknown;
|
|
8
13
|
}
|
|
9
|
-
export
|
|
14
|
+
export interface IUserGroup {
|
|
15
|
+
type: EUserType.USER_GROUP;
|
|
16
|
+
groupId: string;
|
|
17
|
+
name: string;
|
|
18
|
+
parentId: string | null;
|
|
19
|
+
frontId: string | null;
|
|
20
|
+
}
|
|
21
|
+
export type TUser = Array<IUser | IUserGroup>;
|
|
10
22
|
export interface IGetUserListParams {
|
|
11
23
|
name?: string;
|
|
12
24
|
id?: string;
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
+
export var EUserType = /*#__PURE__*/function (EUserType) {
|
|
3
|
+
EUserType["USER"] = "USER";
|
|
4
|
+
EUserType["USER_GROUP"] = "USER_GROUP";
|
|
5
|
+
return EUserType;
|
|
6
|
+
}({});
|
|
2
7
|
var GetUserListContext = /*#__PURE__*/React.createContext({});
|
|
3
8
|
export var SizeContextProvider = function SizeContextProvider(_ref) {
|
|
4
9
|
var children = _ref.children,
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var AlertTriangleDuotone = function AlertTriangleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var AlertTriangleDuotone = function AlertTriangleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m12 2 10 18H2L12 2Zm-.5 12V8h1v6h-1Zm1.5 2a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CancelCircleDuotone = function CancelCircleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,10 +24,10 @@ var CancelCircleDuotone = function CancelCircleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
d: "M12 2C6.429 2 2 6.429 2 12s4.429 10 10 10 10-4.429 10-10S17.571 2 12 2Z"
|
|
29
29
|
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fill: props.fill ||
|
|
30
|
+
fill: props.fill || 'currentColor',
|
|
31
31
|
fillRule: "evenodd",
|
|
32
32
|
d: "m12 11.293 3.182-3.182.707.707L12.707 12l3.182 3.182-.707.707L12 12.707 8.818 15.89l-.707-.707L11.293 12 8.11 8.818l.707-.707L12 11.293Z",
|
|
33
33
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CheckCircleDuotone = function CheckCircleDuotone(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,10 +24,10 @@ var CheckCircleDuotone = function CheckCircleDuotone(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
d: "M12 2C6.429 2 2 6.429 2 12s4.429 10 10 10 10-4.429 10-10S17.571 2 12 2Z"
|
|
29
29
|
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
-
fill: props.fill ||
|
|
30
|
+
fill: props.fill || 'currentColor',
|
|
31
31
|
fillRule: "evenodd",
|
|
32
32
|
d: "m17.854 8.854-7 7a.5.5 0 0 1-.708 0l-4-4 .708-.708 3.646 3.647 6.646-6.647.708.708Z",
|
|
33
33
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronDownLine = function ChevronDownLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronDownLine = function ChevronDownLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M12 16a.5.5 0 0 0 .368-.162l5.5-6-.737-.676L12 14.76 6.869 9.162l-.738.676 5.5 6A.5.5 0 0 0 12 16Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronLeftLine = function ChevronLeftLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronLeftLine = function ChevronLeftLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M8 11.869a.5.5 0 0 0 .162.368l6 5.5.676-.737-5.598-5.131 5.598-5.132L14.162 6l-6 5.5a.5.5 0 0 0-.162.369Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var ChevronRightLine = function ChevronRightLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var ChevronRightLine = function ChevronRightLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M16 11.869a.5.5 0 0 1-.162.368l-6 5.5L9.162 17l5.598-5.131-5.598-5.132L9.838 6l6 5.5a.5.5 0 0 1 .162.369Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CloseLLine = function CloseLLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -26,14 +26,14 @@ var CloseLLine = function CloseLLine(_ref, ref) {
|
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
27
27
|
clipPath: "url(#a)"
|
|
28
28
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29
|
-
fill: props.color ||
|
|
29
|
+
fill: props.color || 'currentColor',
|
|
30
30
|
fillRule: "evenodd",
|
|
31
31
|
d: "m12 11.293 6.01-6.01.707.707-6.01 6.01 6.01 6.01-.707.707-6.01-6.01-6.01 6.01-.708-.707 6.01-6.01-6.01-6.01.708-.708 6.01 6.01Z",
|
|
32
32
|
clipRule: "evenodd"
|
|
33
33
|
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
34
34
|
id: "a"
|
|
35
35
|
}, /*#__PURE__*/React.createElement("path", {
|
|
36
|
-
fill: props.fill ||
|
|
36
|
+
fill: props.fill || 'currentColor',
|
|
37
37
|
d: "M0 0h24v24H0z"
|
|
38
38
|
}))));
|
|
39
39
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var CloseMLine = function CloseMLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var CloseMLine = function CloseMLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m12 11.293 3.182-3.182.707.707L12.707 12l3.182 3.182-.707.707L12 12.707 8.818 15.89l-.707-.707L11.293 12 8.11 8.818l.707-.707L12 11.293Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
interface SVGRProps {
|
|
4
|
+
size?: number;
|
|
5
|
+
title?: string;
|
|
6
|
+
titleId?: string;
|
|
7
|
+
desc?: string;
|
|
8
|
+
descId?: string;
|
|
9
|
+
}
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
11
|
+
export default Memo;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
var _excluded = ["title", "titleId", "desc", "descId"];
|
|
2
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
|
+
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; }
|
|
4
|
+
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; }
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
|
+
var DragLine = function DragLine(_ref, ref) {
|
|
8
|
+
var title = _ref.title,
|
|
9
|
+
titleId = _ref.titleId,
|
|
10
|
+
desc = _ref.desc,
|
|
11
|
+
descId = _ref.descId,
|
|
12
|
+
props = _objectWithoutProperties(_ref, _excluded);
|
|
13
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
14
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
15
|
+
width: props.width || props.size || 16,
|
|
16
|
+
height: props.height || props.size || 16,
|
|
17
|
+
fill: "none",
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
ref: ref,
|
|
20
|
+
"aria-labelledby": titleId,
|
|
21
|
+
"aria-describedby": descId
|
|
22
|
+
}, props), desc ? /*#__PURE__*/React.createElement("desc", {
|
|
23
|
+
id: descId
|
|
24
|
+
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
|
+
id: titleId
|
|
26
|
+
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
|
+
fillRule: "evenodd",
|
|
29
|
+
d: "M9 7a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1-7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm5-5a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm0 12a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm1-7a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z",
|
|
30
|
+
clipRule: "evenodd"
|
|
31
|
+
}));
|
|
32
|
+
};
|
|
33
|
+
var ForwardRef = /*#__PURE__*/forwardRef(DragLine);
|
|
34
|
+
var Memo = /*#__PURE__*/memo(ForwardRef);
|
|
35
|
+
export default Memo;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var EyeOffLine = function EyeOffLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var EyeOffLine = function EyeOffLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "M4.542 13.662A9.97 9.97 0 0 1 2.2 9h1.023a9.003 9.003 0 0 0 17.554 0H21.8a9.969 9.969 0 0 1-2.342 4.662l1.713 2.905-.861.508-1.58-2.679a9.993 9.993 0 0 1-3.414 2.04l.675 3.468-.982.191-.656-3.373C13.598 16.903 12.81 17 12 17c-.81 0-1.599-.096-2.353-.278l-.656 3.373-.982-.19.674-3.468a9.995 9.995 0 0 1-3.413-2.04l-1.596 2.705-.861-.508 1.729-2.932Z",
|
|
30
30
|
clipRule: "evenodd"
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var EyeOnLine = function EyeOnLine(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,7 +24,7 @@ var EyeOnLine = function EyeOnLine(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("g", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor'
|
|
28
28
|
}, /*#__PURE__*/React.createElement("path", {
|
|
29
29
|
fillRule: "evenodd",
|
|
30
30
|
d: "M17 12a5 5 0 1 1-10 0 5 5 0 0 1 10 0Zm-1 0a4 4 0 1 1-8 0 4 4 0 0 1 8 0Z",
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|
|
@@ -2,8 +2,8 @@ var _excluded = ["title", "titleId", "desc", "descId"];
|
|
|
2
2
|
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
3
|
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; }
|
|
4
4
|
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; }
|
|
5
|
-
import * as React from
|
|
6
|
-
import { forwardRef, memo } from
|
|
5
|
+
import * as React from 'react';
|
|
6
|
+
import { forwardRef, memo } from 'react';
|
|
7
7
|
var FoldDownFill = function FoldDownFill(_ref, ref) {
|
|
8
8
|
var title = _ref.title,
|
|
9
9
|
titleId = _ref.titleId,
|
|
@@ -24,12 +24,12 @@ var FoldDownFill = function FoldDownFill(_ref, ref) {
|
|
|
24
24
|
}, desc) : null, title ? /*#__PURE__*/React.createElement("title", {
|
|
25
25
|
id: titleId
|
|
26
26
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
27
|
-
fill: props.color ||
|
|
27
|
+
fill: props.color || 'currentColor',
|
|
28
28
|
fillRule: "evenodd",
|
|
29
29
|
d: "m17 9-5 7-5-7h10Z",
|
|
30
30
|
clipRule: "evenodd",
|
|
31
31
|
style: {
|
|
32
|
-
mixBlendMode:
|
|
32
|
+
mixBlendMode: 'luminosity'
|
|
33
33
|
}
|
|
34
34
|
}));
|
|
35
35
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { SVGProps } from 'react';
|
|
2
|
+
import * as React from 'react';
|
|
2
3
|
interface SVGRProps {
|
|
3
4
|
size?: number;
|
|
4
5
|
title?: string;
|
|
@@ -6,5 +7,5 @@ interface SVGRProps {
|
|
|
6
7
|
desc?: string;
|
|
7
8
|
descId?: string;
|
|
8
9
|
}
|
|
9
|
-
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<
|
|
10
|
+
declare const Memo: React.MemoExoticComponent<React.ForwardRefExoticComponent<Omit<SVGProps<SVGSVGElement> & SVGRProps, "ref"> & React.RefAttributes<SVGSVGElement>>>;
|
|
10
11
|
export default Memo;
|