@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.
Files changed (42) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/es/IconArrowNestLine.js +42 -0
  3. package/es/IconArrowNestSolid.js +42 -0
  4. package/es/font/Line/InstructureIcons-Line.css +345 -340
  5. package/es/font/Line/InstructureIcons-Line.eot +0 -0
  6. package/es/font/Line/InstructureIcons-Line.svg +343 -340
  7. package/es/font/Line/InstructureIcons-Line.ttf +0 -0
  8. package/es/font/Line/InstructureIcons-Line.woff +0 -0
  9. package/es/font/Line/InstructureIcons-Line.woff2 +0 -0
  10. package/es/font/Line/InstructureIcons-Line_icon-map.scss +342 -340
  11. package/es/font/Solid/InstructureIcons-Solid.css +345 -340
  12. package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
  13. package/es/font/Solid/InstructureIcons-Solid.svg +343 -340
  14. package/es/font/Solid/InstructureIcons-Solid.ttf +0 -0
  15. package/es/font/Solid/InstructureIcons-Solid.woff +0 -0
  16. package/es/font/Solid/InstructureIcons-Solid.woff2 +0 -0
  17. package/es/font/Solid/InstructureIcons-Solid_icon-map.scss +342 -340
  18. package/es/font/index.js +700 -680
  19. package/es/index.js +105 -103
  20. package/es/svg/index.js +1 -1
  21. package/lib/IconArrowNestLine.js +58 -0
  22. package/lib/IconArrowNestSolid.js +58 -0
  23. package/lib/font/Line/InstructureIcons-Line.css +345 -340
  24. package/lib/font/Line/InstructureIcons-Line.eot +0 -0
  25. package/lib/font/Line/InstructureIcons-Line.svg +343 -340
  26. package/lib/font/Line/InstructureIcons-Line.ttf +0 -0
  27. package/lib/font/Line/InstructureIcons-Line.woff +0 -0
  28. package/lib/font/Line/InstructureIcons-Line.woff2 +0 -0
  29. package/lib/font/Line/InstructureIcons-Line_icon-map.scss +342 -340
  30. package/lib/font/Solid/InstructureIcons-Solid.css +345 -340
  31. package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
  32. package/lib/font/Solid/InstructureIcons-Solid.svg +343 -340
  33. package/lib/font/Solid/InstructureIcons-Solid.ttf +0 -0
  34. package/lib/font/Solid/InstructureIcons-Solid.woff +0 -0
  35. package/lib/font/Solid/InstructureIcons-Solid.woff2 +0 -0
  36. package/lib/font/Solid/InstructureIcons-Solid_icon-map.scss +342 -340
  37. package/lib/font/index.js +710 -688
  38. package/lib/index.js +328 -312
  39. package/lib/svg/index.js +1 -1
  40. package/package.json +4 -4
  41. package/svg/Line/arrow-nest.svg +3 -0
  42. 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 };