@instructure/ui-icons 8.32.2-snapshot-1 → 8.32.2-snapshot-3
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 +5 -2
- 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 +55 -53
- 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 +70 -54
- 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 +55 -53
- package/types/index.d.ts.map +1 -1
- package/types/svg/index.d.ts +704 -684
package/CHANGELOG.md
CHANGED
|
@@ -3,9 +3,12 @@
|
|
|
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
|
-
## [8.32.2-snapshot-
|
|
6
|
+
## [8.32.2-snapshot-3](https://github.com/instructure/instructure-ui/compare/v8.32.1...v8.32.2-snapshot-3) (2023-01-03)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ui-icons:** add `arrow-nest` icon ([cb17dff](https://github.com/instructure/instructure-ui/commit/cb17dff42b4533bfe735cc86e71884b428f0e69f))
|
|
9
12
|
|
|
10
13
|
|
|
11
14
|
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var _path;
|
|
2
|
+
|
|
3
|
+
import React, { Component } from 'react';
|
|
4
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
5
|
+
|
|
6
|
+
class IconArrowNestLine extends Component {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(...arguments);
|
|
9
|
+
this.ref = null;
|
|
10
|
+
|
|
11
|
+
this.handleRef = el => {
|
|
12
|
+
const elementRef = this.props.elementRef;
|
|
13
|
+
this.ref = el;
|
|
14
|
+
|
|
15
|
+
if (typeof elementRef === 'function') {
|
|
16
|
+
elementRef(el);
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
render() {
|
|
22
|
+
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
|
+
name: "IconArrowNest",
|
|
24
|
+
viewBox: "0 0 1920 1920",
|
|
25
|
+
elementRef: this.handleRef
|
|
26
|
+
}), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M224 0H106.667V1339.83H1700.04L1223.57 1835.48L1304.82 1920L1920 1280.06L1304.82 640L1223.57 724.52L1700.04 1220.29H224V0Z"
|
|
28
|
+
})));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
IconArrowNestLine.glyphName = 'arrow-nest';
|
|
34
|
+
IconArrowNestLine.variant = 'Line';
|
|
35
|
+
IconArrowNestLine.displayName = 'IconArrowNestLine';
|
|
36
|
+
IconArrowNestLine.propTypes = { ...SVGIcon.propTypes
|
|
37
|
+
};
|
|
38
|
+
IconArrowNestLine.allowedProps = [...SVGIcon.allowedProps];
|
|
39
|
+
export default IconArrowNestLine;
|
|
40
|
+
export { IconArrowNestLine };
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
var _path;
|
|
2
|
+
|
|
3
|
+
import React, { Component } from 'react';
|
|
4
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
5
|
+
|
|
6
|
+
class IconArrowNestSolid extends Component {
|
|
7
|
+
constructor() {
|
|
8
|
+
super(...arguments);
|
|
9
|
+
this.ref = null;
|
|
10
|
+
|
|
11
|
+
this.handleRef = el => {
|
|
12
|
+
const elementRef = this.props.elementRef;
|
|
13
|
+
this.ref = el;
|
|
14
|
+
|
|
15
|
+
if (typeof elementRef === 'function') {
|
|
16
|
+
elementRef(el);
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
render() {
|
|
22
|
+
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
23
|
+
name: "IconArrowNest",
|
|
24
|
+
viewBox: "0 0 1920 1920",
|
|
25
|
+
elementRef: this.handleRef
|
|
26
|
+
}), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M320 0H106.667L106.677 1392.14H1497.94L1134.87 1761.43L1290.77 1920L1920 1280L1290.77 640L1134.87 798.57L1497.94 1167.86H320V0Z"
|
|
28
|
+
})));
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
IconArrowNestSolid.glyphName = 'arrow-nest';
|
|
34
|
+
IconArrowNestSolid.variant = 'Solid';
|
|
35
|
+
IconArrowNestSolid.displayName = 'IconArrowNestSolid';
|
|
36
|
+
IconArrowNestSolid.propTypes = { ...SVGIcon.propTypes
|
|
37
|
+
};
|
|
38
|
+
IconArrowNestSolid.allowedProps = [...SVGIcon.allowedProps];
|
|
39
|
+
export default IconArrowNestSolid;
|
|
40
|
+
export { IconArrowNestSolid };
|