@dhis2/ui-icons 8.8.0 → 8.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/build/cjs/react/Subtract16.js +39 -0
- package/build/cjs/react/Subtract24.js +39 -0
- package/build/cjs/react/index.js +16 -0
- package/build/cjs/svg/subtract-16.svg +3 -0
- package/build/cjs/svg/subtract-24.svg +3 -0
- package/build/es/react/Subtract16.js +24 -0
- package/build/es/react/Subtract24.js +24 -0
- package/build/es/react/index.js +2 -0
- package/build/es/svg/subtract-16.svg +3 -0
- package/build/es/svg/subtract-24.svg +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
function SvgSubtract16(_ref) {
|
|
19
|
+
let {
|
|
20
|
+
color
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
23
|
+
width: 16,
|
|
24
|
+
height: 16,
|
|
25
|
+
viewBox: "0 0 16 16",
|
|
26
|
+
fill: "none",
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
color: color
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1z",
|
|
31
|
+
fill: "currentColor"
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
SvgSubtract16.propTypes = {
|
|
36
|
+
color: _propTypes.default.string
|
|
37
|
+
};
|
|
38
|
+
var _default = SvgSubtract16;
|
|
39
|
+
exports.default = _default;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var React = _interopRequireWildcard(require("react"));
|
|
9
|
+
|
|
10
|
+
var _propTypes = _interopRequireDefault(require("prop-types"));
|
|
11
|
+
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
|
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15
|
+
|
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
17
|
+
|
|
18
|
+
function SvgSubtract24(_ref) {
|
|
19
|
+
let {
|
|
20
|
+
color
|
|
21
|
+
} = _ref;
|
|
22
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
23
|
+
width: 24,
|
|
24
|
+
height: 24,
|
|
25
|
+
viewBox: "0 0 24 24",
|
|
26
|
+
fill: "none",
|
|
27
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28
|
+
color: color
|
|
29
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M3 12a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1z",
|
|
31
|
+
fill: "currentColor"
|
|
32
|
+
}));
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
SvgSubtract24.propTypes = {
|
|
36
|
+
color: _propTypes.default.string
|
|
37
|
+
};
|
|
38
|
+
var _default = SvgSubtract24;
|
|
39
|
+
exports.default = _default;
|
package/build/cjs/react/index.js
CHANGED
|
@@ -1077,6 +1077,18 @@ Object.defineProperty(exports, "IconSubscribeOff24", {
|
|
|
1077
1077
|
return _SubscribeOff2.default;
|
|
1078
1078
|
}
|
|
1079
1079
|
});
|
|
1080
|
+
Object.defineProperty(exports, "IconSubtract16", {
|
|
1081
|
+
enumerable: true,
|
|
1082
|
+
get: function () {
|
|
1083
|
+
return _Subtract.default;
|
|
1084
|
+
}
|
|
1085
|
+
});
|
|
1086
|
+
Object.defineProperty(exports, "IconSubtract24", {
|
|
1087
|
+
enumerable: true,
|
|
1088
|
+
get: function () {
|
|
1089
|
+
return _Subtract2.default;
|
|
1090
|
+
}
|
|
1091
|
+
});
|
|
1080
1092
|
Object.defineProperty(exports, "IconSubtractCircle16", {
|
|
1081
1093
|
enumerable: true,
|
|
1082
1094
|
get: function () {
|
|
@@ -1904,6 +1916,10 @@ var _SubscribeOff = _interopRequireDefault(require("./SubscribeOff16.js"));
|
|
|
1904
1916
|
|
|
1905
1917
|
var _SubscribeOff2 = _interopRequireDefault(require("./SubscribeOff24.js"));
|
|
1906
1918
|
|
|
1919
|
+
var _Subtract = _interopRequireDefault(require("./Subtract16.js"));
|
|
1920
|
+
|
|
1921
|
+
var _Subtract2 = _interopRequireDefault(require("./Subtract24.js"));
|
|
1922
|
+
|
|
1907
1923
|
var _SubtractCircle = _interopRequireDefault(require("./SubtractCircle16.js"));
|
|
1908
1924
|
|
|
1909
1925
|
var _SubtractCircle2 = _interopRequireDefault(require("./SubtractCircle24.js"));
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
|
|
4
|
+
function SvgSubtract16(_ref) {
|
|
5
|
+
let {
|
|
6
|
+
color
|
|
7
|
+
} = _ref;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
width: 16,
|
|
10
|
+
height: 16,
|
|
11
|
+
viewBox: "0 0 16 16",
|
|
12
|
+
fill: "none",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
color: color
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M2 8a1 1 0 011-1h10a1 1 0 110 2H3a1 1 0 01-1-1z",
|
|
17
|
+
fill: "currentColor"
|
|
18
|
+
}));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
SvgSubtract16.propTypes = {
|
|
22
|
+
color: PropTypes.string
|
|
23
|
+
};
|
|
24
|
+
export default SvgSubtract16;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import PropTypes from 'prop-types';
|
|
3
|
+
|
|
4
|
+
function SvgSubtract24(_ref) {
|
|
5
|
+
let {
|
|
6
|
+
color
|
|
7
|
+
} = _ref;
|
|
8
|
+
return /*#__PURE__*/React.createElement("svg", {
|
|
9
|
+
width: 24,
|
|
10
|
+
height: 24,
|
|
11
|
+
viewBox: "0 0 24 24",
|
|
12
|
+
fill: "none",
|
|
13
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
14
|
+
color: color
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M3 12a1 1 0 011-1h16a1 1 0 110 2H4a1 1 0 01-1-1z",
|
|
17
|
+
fill: "currentColor"
|
|
18
|
+
}));
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
SvgSubtract24.propTypes = {
|
|
22
|
+
color: PropTypes.string
|
|
23
|
+
};
|
|
24
|
+
export default SvgSubtract24;
|
package/build/es/react/index.js
CHANGED
|
@@ -177,6 +177,8 @@ export { default as IconSubscribe16 } from './Subscribe16.js';
|
|
|
177
177
|
export { default as IconSubscribe24 } from './Subscribe24.js';
|
|
178
178
|
export { default as IconSubscribeOff16 } from './SubscribeOff16.js';
|
|
179
179
|
export { default as IconSubscribeOff24 } from './SubscribeOff24.js';
|
|
180
|
+
export { default as IconSubtract16 } from './Subtract16.js';
|
|
181
|
+
export { default as IconSubtract24 } from './Subtract24.js';
|
|
180
182
|
export { default as IconSubtractCircle16 } from './SubtractCircle16.js';
|
|
181
183
|
export { default as IconSubtractCircle24 } from './SubtractCircle24.js';
|
|
182
184
|
export { default as IconSync16 } from './Sync16.js';
|