@instructure/ui-icons 7.21.0 → 7.22.1
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 +10 -0
- package/es/IconArrowNestLine.js +42 -0
- package/es/IconArrowNestSolid.js +42 -0
- package/es/font/Line/InstructureIcons-Line.css +345 -340
- package/es/font/Line/InstructureIcons-Line.eot +0 -0
- package/es/font/Line/InstructureIcons-Line.svg +343 -340
- 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 +342 -340
- package/es/font/Solid/InstructureIcons-Solid.css +345 -340
- package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/es/font/Solid/InstructureIcons-Solid.svg +343 -340
- 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 +342 -340
- package/es/font/index.js +700 -680
- package/es/index.js +105 -103
- package/es/svg/index.js +1 -1
- package/lib/IconArrowNestLine.js +58 -0
- package/lib/IconArrowNestSolid.js +58 -0
- package/lib/font/Line/InstructureIcons-Line.css +345 -340
- package/lib/font/Line/InstructureIcons-Line.eot +0 -0
- package/lib/font/Line/InstructureIcons-Line.svg +343 -340
- 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 +342 -340
- package/lib/font/Solid/InstructureIcons-Solid.css +345 -340
- package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.svg +343 -340
- 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 +342 -340
- package/lib/font/index.js +710 -688
- package/lib/index.js +328 -312
- 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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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
|
+
## [7.22.1](https://github.com/instructure/instructure-ui/compare/v7.22.0...v7.22.1) (2023-01-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @instructure/ui-icons
|
|
9
|
+
|
|
10
|
+
# [7.22.0](https://github.com/instructure/instructure-ui/compare/v7.21.0...v7.22.0) (2023-01-05)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- **ui-icons:** add `arrow-nest` icon ([ec2e19f](https://github.com/instructure/instructure-ui/commit/ec2e19f))
|
|
15
|
+
|
|
6
16
|
# [7.21.0](https://github.com/instructure/instructure-ui/compare/v7.20.2...v7.21.0) (2022-09-05)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
3
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
5
|
+
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
6
|
+
import React, { Component } from 'react';
|
|
7
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
8
|
+
|
|
9
|
+
var _ref = /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M224 0H106.667V1339.83H1700.04L1223.57 1835.48L1304.82 1920L1920 1280.06L1304.82 640L1223.57 724.52L1700.04 1220.29H224V0Z"
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
var IconArrowNestLine = /*#__PURE__*/function (_Component) {
|
|
14
|
+
_inherits(IconArrowNestLine, _Component);
|
|
15
|
+
|
|
16
|
+
var _super = _createSuper(IconArrowNestLine);
|
|
17
|
+
|
|
18
|
+
function IconArrowNestLine() {
|
|
19
|
+
_classCallCheck(this, IconArrowNestLine);
|
|
20
|
+
|
|
21
|
+
return _super.apply(this, arguments);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
_createClass(IconArrowNestLine, [{
|
|
25
|
+
key: "render",
|
|
26
|
+
value: function render() {
|
|
27
|
+
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
28
|
+
name: "IconArrowNest",
|
|
29
|
+
viewBox: "0 0 1920 1920"
|
|
30
|
+
}), _ref);
|
|
31
|
+
}
|
|
32
|
+
}]);
|
|
33
|
+
|
|
34
|
+
IconArrowNestLine.displayName = "IconArrowNestLine";
|
|
35
|
+
return IconArrowNestLine;
|
|
36
|
+
}(Component);
|
|
37
|
+
|
|
38
|
+
IconArrowNestLine.glyphName = 'arrow-nest';
|
|
39
|
+
IconArrowNestLine.variant = 'Line';
|
|
40
|
+
IconArrowNestLine.propTypes = _objectSpread({}, SVGIcon.propTypes);
|
|
41
|
+
export default IconArrowNestLine;
|
|
42
|
+
export { IconArrowNestLine };
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
2
|
+
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
3
|
+
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
4
|
+
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
5
|
+
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
6
|
+
import React, { Component } from 'react';
|
|
7
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
8
|
+
|
|
9
|
+
var _ref = /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M320 0H106.667L106.677 1392.14H1497.94L1134.87 1761.43L1290.77 1920L1920 1280L1290.77 640L1134.87 798.57L1497.94 1167.86H320V0Z"
|
|
11
|
+
});
|
|
12
|
+
|
|
13
|
+
var IconArrowNestSolid = /*#__PURE__*/function (_Component) {
|
|
14
|
+
_inherits(IconArrowNestSolid, _Component);
|
|
15
|
+
|
|
16
|
+
var _super = _createSuper(IconArrowNestSolid);
|
|
17
|
+
|
|
18
|
+
function IconArrowNestSolid() {
|
|
19
|
+
_classCallCheck(this, IconArrowNestSolid);
|
|
20
|
+
|
|
21
|
+
return _super.apply(this, arguments);
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
_createClass(IconArrowNestSolid, [{
|
|
25
|
+
key: "render",
|
|
26
|
+
value: function render() {
|
|
27
|
+
return /*#__PURE__*/React.createElement(SVGIcon, Object.assign({}, this.props, {
|
|
28
|
+
name: "IconArrowNest",
|
|
29
|
+
viewBox: "0 0 1920 1920"
|
|
30
|
+
}), _ref);
|
|
31
|
+
}
|
|
32
|
+
}]);
|
|
33
|
+
|
|
34
|
+
IconArrowNestSolid.displayName = "IconArrowNestSolid";
|
|
35
|
+
return IconArrowNestSolid;
|
|
36
|
+
}(Component);
|
|
37
|
+
|
|
38
|
+
IconArrowNestSolid.glyphName = 'arrow-nest';
|
|
39
|
+
IconArrowNestSolid.variant = 'Solid';
|
|
40
|
+
IconArrowNestSolid.propTypes = _objectSpread({}, SVGIcon.propTypes);
|
|
41
|
+
export default IconArrowNestSolid;
|
|
42
|
+
export { IconArrowNestSolid };
|