@trionesdev/antd-mobile-icons-react 0.0.2-beta.14 → 0.0.2-beta.16

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.
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "../Icon";
2
+ import { FC } from "react";
3
+ export declare const BoxOutline: FC<IconProps>;
@@ -0,0 +1,16 @@
1
+ var _excluded = ["className", "style"];
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 { Icon, IconClsPrefix } from "../Icon";
6
+ import React from "react";
7
+ import classNames from "classnames";
8
+ export var BoxOutline = function BoxOutline(_ref) {
9
+ var className = _ref.className,
10
+ style = _ref.style,
11
+ rest = _objectWithoutProperties(_ref, _excluded);
12
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, rest, {
13
+ className: classNames(["".concat(IconClsPrefix, "BoxOutline"), className]),
14
+ style: style
15
+ }));
16
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "../Icon";
2
+ import { FC } from "react";
3
+ export declare const LogoutOutline: FC<IconProps>;
@@ -0,0 +1,16 @@
1
+ var _excluded = ["className", "style"];
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 { Icon, IconClsPrefix } from "../Icon";
6
+ import React from "react";
7
+ import classNames from "classnames";
8
+ export var LogoutOutline = function LogoutOutline(_ref) {
9
+ var className = _ref.className,
10
+ style = _ref.style,
11
+ rest = _objectWithoutProperties(_ref, _excluded);
12
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, rest, {
13
+ className: classNames(["".concat(IconClsPrefix, "LogoutOutline"), className]),
14
+ style: style
15
+ }));
16
+ };
@@ -0,0 +1,3 @@
1
+ import { IconProps } from "../Icon";
2
+ import { FC } from "react";
3
+ export declare const SwapOutline: FC<IconProps>;
@@ -0,0 +1,16 @@
1
+ var _excluded = ["className", "style"];
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 { Icon, IconClsPrefix } from "../Icon";
6
+ import React from "react";
7
+ import classNames from "classnames";
8
+ export var SwapOutline = function SwapOutline(_ref) {
9
+ var className = _ref.className,
10
+ style = _ref.style,
11
+ rest = _objectWithoutProperties(_ref, _excluded);
12
+ return /*#__PURE__*/React.createElement(Icon, _extends({}, rest, {
13
+ className: classNames(["".concat(IconClsPrefix, "SwapOutline"), className]),
14
+ style: style
15
+ }));
16
+ };
@@ -81,6 +81,7 @@ export * from "./KouBeiOutline";
81
81
  export * from "./LoopOutline";
82
82
  export * from "./LocationOutline";
83
83
  export * from "./LockOutline";
84
+ export * from "./LogoutOutline";
84
85
  export * from "./MailOpenOutline";
85
86
  export * from "./PicturesOutline";
86
87
  export * from "./ReceiptOutline";
@@ -81,6 +81,7 @@ export * from "./KouBeiOutline";
81
81
  export * from "./LoopOutline";
82
82
  export * from "./LocationOutline";
83
83
  export * from "./LockOutline";
84
+ export * from "./LogoutOutline";
84
85
  export * from "./MailOpenOutline";
85
86
  export * from "./PicturesOutline";
86
87
  export * from "./ReceiptOutline";
@@ -14,6 +14,18 @@
14
14
  -moz-osx-font-smoothing: grayscale;
15
15
  }
16
16
 
17
+ .antm-icon-BoxOutline:before {
18
+ content: "\e609";
19
+ }
20
+
21
+ .antm-icon-SwapOutline:before {
22
+ content: "\e608";
23
+ }
24
+
25
+ .antm-icon-LogoutOutline:before {
26
+ content: "\e63e";
27
+ }
28
+
17
29
  .antm-icon-HomeFill:before {
18
30
  content: "\e74d";
19
31
  }
@@ -5,6 +5,27 @@
5
5
  "css_prefix_text": "antm-icon-",
6
6
  "description": "",
7
7
  "glyphs": [
8
+ {
9
+ "icon_id": "47227043",
10
+ "name": "BoxOutline",
11
+ "font_class": "BoxOutline",
12
+ "unicode": "e609",
13
+ "unicode_decimal": 58889
14
+ },
15
+ {
16
+ "icon_id": "47226900",
17
+ "name": "SwapOutline",
18
+ "font_class": "SwapOutline",
19
+ "unicode": "e608",
20
+ "unicode_decimal": 58888
21
+ },
22
+ {
23
+ "icon_id": "46936837",
24
+ "name": "LogoutOutline",
25
+ "font_class": "LogoutOutline",
26
+ "unicode": "e63e",
27
+ "unicode_decimal": 58942
28
+ },
8
29
  {
9
30
  "icon_id": "45635533",
10
31
  "name": "HomeFill",
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trionesdev/antd-mobile-icons-react",
3
- "version": "0.0.2-beta.14",
3
+ "version": "0.0.2-beta.16",
4
4
  "description": "AntdMobileIconReact",
5
5
  "module": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -35,5 +35,5 @@
35
35
  "father": "^4.6.9",
36
36
  "react": "^18.0.0"
37
37
  },
38
- "gitHead": "5d9e7dbf380ca19c5e35509f0a31865ec5bdcc06"
38
+ "gitHead": "c43752ae341cc478de96784586fbf3b36251f4a0"
39
39
  }