@sensoro-design/icons 1.57.0 → 1.59.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/CHANGELOG.md +22 -0
- package/EditFilled.d.ts +2 -0
- package/EditFilled.js +15 -0
- package/FileSealFilled.d.ts +2 -0
- package/FileSealFilled.js +15 -0
- package/HomeIsolationOutlined.d.ts +2 -0
- package/HomeIsolationOutlined.js +15 -0
- package/UserPenFilled.d.ts +2 -0
- package/UserPenFilled.js +15 -0
- package/es/components/Icon.js +3 -3
- package/es/components/SensoroIcon.js +2 -2
- package/es/icons/EditFilled.d.ts +4 -0
- package/es/icons/EditFilled.js +56 -0
- package/es/icons/FileSealFilled.d.ts +4 -0
- package/es/icons/FileSealFilled.js +56 -0
- package/es/icons/HomeIsolationOutlined.d.ts +4 -0
- package/es/icons/HomeIsolationOutlined.js +56 -0
- package/es/icons/UserPenFilled.d.ts +4 -0
- package/es/icons/UserPenFilled.js +56 -0
- package/es/icons/index.d.ts +4 -0
- package/es/icons/index.js +38 -10
- package/lib/components/Icon.js +3 -3
- package/lib/components/SensoroIcon.js +2 -2
- package/lib/icons/EditFilled.d.ts +4 -0
- package/lib/icons/EditFilled.js +57 -0
- package/lib/icons/FileSealFilled.d.ts +4 -0
- package/lib/icons/FileSealFilled.js +57 -0
- package/lib/icons/HomeIsolationOutlined.d.ts +4 -0
- package/lib/icons/HomeIsolationOutlined.js +57 -0
- package/lib/icons/UserPenFilled.d.ts +4 -0
- package/lib/icons/UserPenFilled.js +57 -0
- package/lib/icons/index.d.ts +4 -0
- package/lib/icons/index.js +38 -10
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.59.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@1.58.0...@sensoro-design/icons@1.59.0) (2022-11-27)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* replace @pansy/classname ([aecb637](https://github.com/sensoro-design/sensoro-design-icons/commit/aecb637f5d64f48aca85b8fade5c9268b2ea594f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.58.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@1.57.0...@sensoro-design/icons@1.58.0) (2022-11-27)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* add icons ([072e3f3](https://github.com/sensoro-design/sensoro-design-icons/commit/072e3f35acfb530fa83b2102da04365b6fd96317))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
# [1.57.0](https://github.com/sensoro-design/sensoro-design-icons/compare/@sensoro-design/icons@1.56.0...@sensoro-design/icons@1.57.0) (2022-11-25)
|
|
7
29
|
|
|
8
30
|
|
package/EditFilled.d.ts
ADDED
package/EditFilled.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This index.ts file is generated automatically.
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
|
|
9
|
+
var _EditFilled = _interopRequireDefault(require('./lib/icons/EditFilled'));
|
|
10
|
+
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
12
|
+
|
|
13
|
+
var _default = _EditFilled;
|
|
14
|
+
exports.default = _default;
|
|
15
|
+
module.exports = _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This index.ts file is generated automatically.
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
|
|
9
|
+
var _FileSealFilled = _interopRequireDefault(require('./lib/icons/FileSealFilled'));
|
|
10
|
+
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
12
|
+
|
|
13
|
+
var _default = _FileSealFilled;
|
|
14
|
+
exports.default = _default;
|
|
15
|
+
module.exports = _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This index.ts file is generated automatically.
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
|
|
9
|
+
var _HomeIsolationOutlined = _interopRequireDefault(require('./lib/icons/HomeIsolationOutlined'));
|
|
10
|
+
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
12
|
+
|
|
13
|
+
var _default = _HomeIsolationOutlined;
|
|
14
|
+
exports.default = _default;
|
|
15
|
+
module.exports = _default;
|
package/UserPenFilled.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// This index.ts file is generated automatically.
|
|
2
|
+
'use strict';
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports.default = void 0;
|
|
8
|
+
|
|
9
|
+
var _UserPenFilled = _interopRequireDefault(require('./lib/icons/UserPenFilled'));
|
|
10
|
+
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
|
|
12
|
+
|
|
13
|
+
var _default = _UserPenFilled;
|
|
14
|
+
exports.default = _default;
|
|
15
|
+
module.exports = _default;
|
package/es/components/Icon.js
CHANGED
|
@@ -15,7 +15,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
15
15
|
value: true
|
|
16
16
|
});
|
|
17
17
|
var react_1 = __importDefault(require("react"));
|
|
18
|
-
var
|
|
18
|
+
var classNames_1 = require("@pansy/shared/utils/classNames");
|
|
19
19
|
var Context_1 = __importDefault(require("./Context"));
|
|
20
20
|
var utils_1 = require("../utils");
|
|
21
21
|
var useInsertStyles_1 = require("../hooks/useInsertStyles");
|
|
@@ -33,8 +33,8 @@ var Icon = react_1.default.forwardRef(function (_ref, ref) {
|
|
|
33
33
|
var _react_1$default$useC = react_1.default.useContext(Context_1.default),
|
|
34
34
|
_react_1$default$useC2 = _react_1$default$useC.prefixCls,
|
|
35
35
|
prefixCls = _react_1$default$useC2 === void 0 ? 's-icon' : _react_1$default$useC2;
|
|
36
|
-
var classString = (0,
|
|
37
|
-
var svgClassString = (0,
|
|
36
|
+
var classString = (0, classNames_1.classNames)(prefixCls, 'anticon', className);
|
|
37
|
+
var svgClassString = (0, classNames_1.classNames)(_defineProperty({}, "".concat(prefixCls, "-spin"), !!spin));
|
|
38
38
|
var svgStyle = rotate ? {
|
|
39
39
|
msTransform: "rotate(".concat(rotate, "deg)"),
|
|
40
40
|
transform: "rotate(".concat(rotate, "deg)")
|
|
@@ -15,7 +15,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
15
15
|
value: true
|
|
16
16
|
});
|
|
17
17
|
var react_1 = __importDefault(require("react"));
|
|
18
|
-
var
|
|
18
|
+
var classNames_1 = require("@pansy/shared/utils/classNames");
|
|
19
19
|
var IconBase_1 = __importDefault(require("./IconBase"));
|
|
20
20
|
var twoTonePrimaryColor_1 = require("./twoTonePrimaryColor");
|
|
21
21
|
var utils_1 = require("../utils");
|
|
@@ -36,7 +36,7 @@ var Icon = react_1.default.forwardRef(function (props, ref) {
|
|
|
36
36
|
var _react_1$default$useC = react_1.default.useContext(Context_1.default),
|
|
37
37
|
_react_1$default$useC2 = _react_1$default$useC.prefixCls,
|
|
38
38
|
prefixCls = _react_1$default$useC2 === void 0 ? 's-icon' : _react_1$default$useC2;
|
|
39
|
-
var classString = (0,
|
|
39
|
+
var classString = (0, classNames_1.classNames)(prefixCls, 'anticon', (_ref = {}, _defineProperty(_ref, "".concat(prefixCls, "-").concat(icon.name), !!icon.name), _defineProperty(_ref, "".concat(prefixCls, "-spin"), !!spin || icon.name === 'loading'), _ref), className);
|
|
40
40
|
var iconTabIndex = tabIndex;
|
|
41
41
|
if (iconTabIndex === undefined && onClick) {
|
|
42
42
|
iconTabIndex = -1;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SensoroIconProps } from '../components/SensoroIcon';
|
|
3
|
+
declare const EditFilled: React.ForwardRefExoticComponent<Pick<SensoroIconProps, "value" | "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "key" | "pattern" | "className" | "onClick" | "width" | "height" | "aria-hidden" | "spin" | "rotate" | "aria-label" | "tabIndex" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "twoToneColor"> & React.RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
export default EditFilled;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return m[k];
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
} : function (o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
});
|
|
20
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
value: v
|
|
24
|
+
});
|
|
25
|
+
} : function (o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) {
|
|
32
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
}
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
38
|
+
return mod && mod.__esModule ? mod : {
|
|
39
|
+
"default": mod
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
Object.defineProperty(exports, "__esModule", {
|
|
43
|
+
value: true
|
|
44
|
+
});
|
|
45
|
+
// This icon file is generated automatically.
|
|
46
|
+
var React = __importStar(require("react"));
|
|
47
|
+
var EditFilled_1 = __importDefault(require("@sensoro-design/icons-svg/lib/asn/EditFilled"));
|
|
48
|
+
var SensoroIcon_1 = __importDefault(require("../components/SensoroIcon"));
|
|
49
|
+
var EditFilled = React.forwardRef(function (props, ref) {
|
|
50
|
+
return /*#__PURE__*/React.createElement(SensoroIcon_1.default, _extends({}, props, {
|
|
51
|
+
ref: ref,
|
|
52
|
+
icon: EditFilled_1.default
|
|
53
|
+
}));
|
|
54
|
+
});
|
|
55
|
+
EditFilled.displayName = 'EditFilled';
|
|
56
|
+
exports.default = EditFilled;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SensoroIconProps } from '../components/SensoroIcon';
|
|
3
|
+
declare const FileSealFilled: React.ForwardRefExoticComponent<Pick<SensoroIconProps, "value" | "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "key" | "pattern" | "className" | "onClick" | "width" | "height" | "aria-hidden" | "spin" | "rotate" | "aria-label" | "tabIndex" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "twoToneColor"> & React.RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
export default FileSealFilled;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return m[k];
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
} : function (o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
});
|
|
20
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
value: v
|
|
24
|
+
});
|
|
25
|
+
} : function (o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) {
|
|
32
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
}
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
38
|
+
return mod && mod.__esModule ? mod : {
|
|
39
|
+
"default": mod
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
Object.defineProperty(exports, "__esModule", {
|
|
43
|
+
value: true
|
|
44
|
+
});
|
|
45
|
+
// This icon file is generated automatically.
|
|
46
|
+
var React = __importStar(require("react"));
|
|
47
|
+
var FileSealFilled_1 = __importDefault(require("@sensoro-design/icons-svg/lib/asn/FileSealFilled"));
|
|
48
|
+
var SensoroIcon_1 = __importDefault(require("../components/SensoroIcon"));
|
|
49
|
+
var FileSealFilled = React.forwardRef(function (props, ref) {
|
|
50
|
+
return /*#__PURE__*/React.createElement(SensoroIcon_1.default, _extends({}, props, {
|
|
51
|
+
ref: ref,
|
|
52
|
+
icon: FileSealFilled_1.default
|
|
53
|
+
}));
|
|
54
|
+
});
|
|
55
|
+
FileSealFilled.displayName = 'FileSealFilled';
|
|
56
|
+
exports.default = FileSealFilled;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SensoroIconProps } from '../components/SensoroIcon';
|
|
3
|
+
declare const HomeIsolationOutlined: React.ForwardRefExoticComponent<Pick<SensoroIconProps, "value" | "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "key" | "pattern" | "className" | "onClick" | "width" | "height" | "aria-hidden" | "spin" | "rotate" | "aria-label" | "tabIndex" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "twoToneColor"> & React.RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
export default HomeIsolationOutlined;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return m[k];
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
} : function (o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
});
|
|
20
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
value: v
|
|
24
|
+
});
|
|
25
|
+
} : function (o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) {
|
|
32
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
}
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
38
|
+
return mod && mod.__esModule ? mod : {
|
|
39
|
+
"default": mod
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
Object.defineProperty(exports, "__esModule", {
|
|
43
|
+
value: true
|
|
44
|
+
});
|
|
45
|
+
// This icon file is generated automatically.
|
|
46
|
+
var React = __importStar(require("react"));
|
|
47
|
+
var HomeIsolationOutlined_1 = __importDefault(require("@sensoro-design/icons-svg/lib/asn/HomeIsolationOutlined"));
|
|
48
|
+
var SensoroIcon_1 = __importDefault(require("../components/SensoroIcon"));
|
|
49
|
+
var HomeIsolationOutlined = React.forwardRef(function (props, ref) {
|
|
50
|
+
return /*#__PURE__*/React.createElement(SensoroIcon_1.default, _extends({}, props, {
|
|
51
|
+
ref: ref,
|
|
52
|
+
icon: HomeIsolationOutlined_1.default
|
|
53
|
+
}));
|
|
54
|
+
});
|
|
55
|
+
HomeIsolationOutlined.displayName = 'HomeIsolationOutlined';
|
|
56
|
+
exports.default = HomeIsolationOutlined;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SensoroIconProps } from '../components/SensoroIcon';
|
|
3
|
+
declare const UserPenFilled: React.ForwardRefExoticComponent<Pick<SensoroIconProps, "value" | "children" | "cite" | "data" | "form" | "label" | "slot" | "span" | "style" | "summary" | "title" | "key" | "pattern" | "className" | "onClick" | "width" | "height" | "aria-hidden" | "spin" | "rotate" | "aria-label" | "tabIndex" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "as" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "checked" | "classID" | "cols" | "colSpan" | "content" | "controls" | "coords" | "crossOrigin" | "dateTime" | "default" | "defer" | "disabled" | "download" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "list" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "multiple" | "muted" | "name" | "noValidate" | "open" | "optimum" | "placeholder" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "size" | "sizes" | "src" | "srcDoc" | "srcLang" | "srcSet" | "start" | "step" | "target" | "type" | "useMap" | "wmode" | "wrap" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "hidden" | "id" | "lang" | "nonce" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "color" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-invalid" | "aria-keyshortcuts" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "twoToneColor"> & React.RefAttributes<HTMLSpanElement>>;
|
|
4
|
+
export default UserPenFilled;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
+
var __createBinding = this && this.__createBinding || (Object.create ? function (o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function get() {
|
|
11
|
+
return m[k];
|
|
12
|
+
}
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
Object.defineProperty(o, k2, desc);
|
|
16
|
+
} : function (o, m, k, k2) {
|
|
17
|
+
if (k2 === undefined) k2 = k;
|
|
18
|
+
o[k2] = m[k];
|
|
19
|
+
});
|
|
20
|
+
var __setModuleDefault = this && this.__setModuleDefault || (Object.create ? function (o, v) {
|
|
21
|
+
Object.defineProperty(o, "default", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
value: v
|
|
24
|
+
});
|
|
25
|
+
} : function (o, v) {
|
|
26
|
+
o["default"] = v;
|
|
27
|
+
});
|
|
28
|
+
var __importStar = this && this.__importStar || function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k in mod) {
|
|
32
|
+
if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
33
|
+
}
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
var __importDefault = this && this.__importDefault || function (mod) {
|
|
38
|
+
return mod && mod.__esModule ? mod : {
|
|
39
|
+
"default": mod
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
Object.defineProperty(exports, "__esModule", {
|
|
43
|
+
value: true
|
|
44
|
+
});
|
|
45
|
+
// This icon file is generated automatically.
|
|
46
|
+
var React = __importStar(require("react"));
|
|
47
|
+
var UserPenFilled_1 = __importDefault(require("@sensoro-design/icons-svg/lib/asn/UserPenFilled"));
|
|
48
|
+
var SensoroIcon_1 = __importDefault(require("../components/SensoroIcon"));
|
|
49
|
+
var UserPenFilled = React.forwardRef(function (props, ref) {
|
|
50
|
+
return /*#__PURE__*/React.createElement(SensoroIcon_1.default, _extends({}, props, {
|
|
51
|
+
ref: ref,
|
|
52
|
+
icon: UserPenFilled_1.default
|
|
53
|
+
}));
|
|
54
|
+
});
|
|
55
|
+
UserPenFilled.displayName = 'UserPenFilled';
|
|
56
|
+
exports.default = UserPenFilled;
|
package/es/icons/index.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export { default as DrawRectangleOutlined } from './DrawRectangleOutlined';
|
|
|
130
130
|
export { default as DrawRoundOutlined } from './DrawRoundOutlined';
|
|
131
131
|
export { default as DroneOutlined } from './DroneOutlined';
|
|
132
132
|
export { default as DrowsyOutlined } from './DrowsyOutlined';
|
|
133
|
+
export { default as EditFilled } from './EditFilled';
|
|
133
134
|
export { default as EditOutlined } from './EditOutlined';
|
|
134
135
|
export { default as ElderFilled } from './ElderFilled';
|
|
135
136
|
export { default as ElderPurely } from './ElderPurely';
|
|
@@ -175,6 +176,7 @@ export { default as FilePenOutlined } from './FilePenOutlined';
|
|
|
175
176
|
export { default as FilePptOutlined } from './FilePptOutlined';
|
|
176
177
|
export { default as FileProOutlined } from './FileProOutlined';
|
|
177
178
|
export { default as FileProtectOutlined } from './FileProtectOutlined';
|
|
179
|
+
export { default as FileSealFilled } from './FileSealFilled';
|
|
178
180
|
export { default as FileSealOutlined } from './FileSealOutlined';
|
|
179
181
|
export { default as FileSearchFilled } from './FileSearchFilled';
|
|
180
182
|
export { default as FileSearchOutlined } from './FileSearchOutlined';
|
|
@@ -248,6 +250,7 @@ export { default as HelmetFilled } from './HelmetFilled';
|
|
|
248
250
|
export { default as HiddenDangerFilled } from './HiddenDangerFilled';
|
|
249
251
|
export { default as HolderOutlined } from './HolderOutlined';
|
|
250
252
|
export { default as HolderVerticalOutlined } from './HolderVerticalOutlined';
|
|
253
|
+
export { default as HomeIsolationOutlined } from './HomeIsolationOutlined';
|
|
251
254
|
export { default as HomeOutlined } from './HomeOutlined';
|
|
252
255
|
export { default as HumanTrafficVideoOutlined } from './HumanTrafficVideoOutlined';
|
|
253
256
|
export { default as HumanoidLeftFilled } from './HumanoidLeftFilled';
|
|
@@ -525,6 +528,7 @@ export { default as UserManageOutlined } from './UserManageOutlined';
|
|
|
525
528
|
export { default as UserMinusCircleFilled } from './UserMinusCircleFilled';
|
|
526
529
|
export { default as UserMinusCircleOutlined } from './UserMinusCircleOutlined';
|
|
527
530
|
export { default as UserOutlined } from './UserOutlined';
|
|
531
|
+
export { default as UserPenFilled } from './UserPenFilled';
|
|
528
532
|
export { default as UserPlusCircleFilled } from './UserPlusCircleFilled';
|
|
529
533
|
export { default as UserPurely } from './UserPurely';
|
|
530
534
|
export { default as UserReportFilled } from './UserReportFilled';
|