@instructure/ui-icons 8.32.1 → 8.32.2-snapshot-2
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 +11 -0
- package/es/IconArrowNestLine.js +40 -0
- package/es/IconArrowNestSolid.js +40 -0
- package/es/font/Line/InstructureIcons-Line.css +347 -342
- package/es/font/Line/InstructureIcons-Line.eot +0 -0
- package/es/font/Line/InstructureIcons-Line.svg +345 -342
- package/es/font/Line/InstructureIcons-Line.ttf +0 -0
- package/es/font/Line/InstructureIcons-Line.woff +0 -0
- package/es/font/Line/InstructureIcons-Line.woff2 +0 -0
- package/es/font/Line/InstructureIcons-Line_icon-map.scss +344 -342
- package/es/font/Solid/InstructureIcons-Solid.css +347 -342
- package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/es/font/Solid/InstructureIcons-Solid.svg +345 -342
- package/es/font/Solid/InstructureIcons-Solid.ttf +0 -0
- package/es/font/Solid/InstructureIcons-Solid.woff +0 -0
- package/es/font/Solid/InstructureIcons-Solid.woff2 +0 -0
- package/es/font/Solid/InstructureIcons-Solid_icon-map.scss +344 -342
- package/es/font/index.js +704 -684
- package/es/index.js +179 -177
- package/es/svg/index.js +1 -1
- package/lib/IconArrowNestLine.js +51 -0
- package/lib/IconArrowNestSolid.js +51 -0
- package/lib/font/Line/InstructureIcons-Line.css +347 -342
- package/lib/font/Line/InstructureIcons-Line.eot +0 -0
- package/lib/font/Line/InstructureIcons-Line.svg +345 -342
- package/lib/font/Line/InstructureIcons-Line.ttf +0 -0
- package/lib/font/Line/InstructureIcons-Line.woff +0 -0
- package/lib/font/Line/InstructureIcons-Line.woff2 +0 -0
- package/lib/font/Line/InstructureIcons-Line_icon-map.scss +344 -342
- package/lib/font/Solid/InstructureIcons-Solid.css +347 -342
- package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.svg +345 -342
- package/lib/font/Solid/InstructureIcons-Solid.ttf +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.woff +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.woff2 +0 -0
- package/lib/font/Solid/InstructureIcons-Solid_icon-map.scss +344 -342
- package/lib/font/index.js +714 -692
- package/lib/index.js +194 -178
- package/lib/svg/index.js +1 -1
- package/package.json +4 -4
- package/svg/Line/arrow-nest.svg +3 -0
- package/svg/Solid/arrow-nest.svg +3 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/IconArrowNestLine.d.ts +29 -0
- package/types/IconArrowNestLine.d.ts.map +1 -0
- package/types/IconArrowNestSolid.d.ts +29 -0
- package/types/IconArrowNestSolid.d.ts.map +1 -0
- package/types/font/index.d.ts +720 -684
- package/types/index.d.ts +179 -177
- package/types/index.d.ts.map +1 -1
- package/types/svg/index.d.ts +704 -684
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = exports.IconArrowNestLine = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _SVGIcon = require("@instructure/ui-svg-images/lib/SVGIcon");
|
|
13
|
+
|
|
14
|
+
var _path;
|
|
15
|
+
|
|
16
|
+
class IconArrowNestLine extends _react.Component {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.ref = null;
|
|
20
|
+
|
|
21
|
+
this.handleRef = el => {
|
|
22
|
+
const elementRef = this.props.elementRef;
|
|
23
|
+
this.ref = el;
|
|
24
|
+
|
|
25
|
+
if (typeof elementRef === 'function') {
|
|
26
|
+
elementRef(el);
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
render() {
|
|
32
|
+
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
|
+
name: "IconArrowNest",
|
|
34
|
+
viewBox: "0 0 1920 1920",
|
|
35
|
+
elementRef: this.handleRef
|
|
36
|
+
}), _path || (_path = /*#__PURE__*/_react.default.createElement("path", {
|
|
37
|
+
d: "M224 0H106.667V1339.83H1700.04L1223.57 1835.48L1304.82 1920L1920 1280.06L1304.82 640L1223.57 724.52L1700.04 1220.29H224V0Z"
|
|
38
|
+
})));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
exports.IconArrowNestLine = IconArrowNestLine;
|
|
44
|
+
IconArrowNestLine.glyphName = 'arrow-nest';
|
|
45
|
+
IconArrowNestLine.variant = 'Line';
|
|
46
|
+
IconArrowNestLine.displayName = 'IconArrowNestLine';
|
|
47
|
+
IconArrowNestLine.propTypes = { ..._SVGIcon.SVGIcon.propTypes
|
|
48
|
+
};
|
|
49
|
+
IconArrowNestLine.allowedProps = [..._SVGIcon.SVGIcon.allowedProps];
|
|
50
|
+
var _default = IconArrowNestLine;
|
|
51
|
+
exports.default = _default;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
|
+
|
|
5
|
+
Object.defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.default = exports.IconArrowNestSolid = void 0;
|
|
9
|
+
|
|
10
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
11
|
+
|
|
12
|
+
var _SVGIcon = require("@instructure/ui-svg-images/lib/SVGIcon");
|
|
13
|
+
|
|
14
|
+
var _path;
|
|
15
|
+
|
|
16
|
+
class IconArrowNestSolid extends _react.Component {
|
|
17
|
+
constructor() {
|
|
18
|
+
super(...arguments);
|
|
19
|
+
this.ref = null;
|
|
20
|
+
|
|
21
|
+
this.handleRef = el => {
|
|
22
|
+
const elementRef = this.props.elementRef;
|
|
23
|
+
this.ref = el;
|
|
24
|
+
|
|
25
|
+
if (typeof elementRef === 'function') {
|
|
26
|
+
elementRef(el);
|
|
27
|
+
}
|
|
28
|
+
};
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
render() {
|
|
32
|
+
return /*#__PURE__*/_react.default.createElement(_SVGIcon.SVGIcon, Object.assign({}, this.props, {
|
|
33
|
+
name: "IconArrowNest",
|
|
34
|
+
viewBox: "0 0 1920 1920",
|
|
35
|
+
elementRef: this.handleRef
|
|
36
|
+
}), _path || (_path = /*#__PURE__*/_react.default.createElement("path", {
|
|
37
|
+
d: "M320 0H106.667L106.677 1392.14H1497.94L1134.87 1761.43L1290.77 1920L1920 1280L1290.77 640L1134.87 798.57L1497.94 1167.86H320V0Z"
|
|
38
|
+
})));
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
exports.IconArrowNestSolid = IconArrowNestSolid;
|
|
44
|
+
IconArrowNestSolid.glyphName = 'arrow-nest';
|
|
45
|
+
IconArrowNestSolid.variant = 'Solid';
|
|
46
|
+
IconArrowNestSolid.displayName = 'IconArrowNestSolid';
|
|
47
|
+
IconArrowNestSolid.propTypes = { ..._SVGIcon.SVGIcon.propTypes
|
|
48
|
+
};
|
|
49
|
+
IconArrowNestSolid.allowedProps = [..._SVGIcon.SVGIcon.allowedProps];
|
|
50
|
+
var _default = IconArrowNestSolid;
|
|
51
|
+
exports.default = _default;
|