@instructure/ui-icons 8.24.5 → 8.24.6-snapshot.9
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/LICENSE.md +27 -0
- package/es/IconConfigureLine.js +41 -0
- package/es/IconConfigureSolid.js +41 -0
- package/es/font/Line/InstructureIcons-Line.css +281 -276
- package/es/font/Line/InstructureIcons-Line.eot +0 -0
- package/es/font/Line/InstructureIcons-Line.svg +279 -276
- 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 +278 -276
- package/es/font/Solid/InstructureIcons-Solid.css +281 -276
- package/es/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/es/font/Solid/InstructureIcons-Solid.svg +279 -276
- 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 +278 -276
- package/es/font/index.js +1932 -1912
- package/es/index.js +2 -0
- package/es/svg/index.js +1 -1
- package/lib/IconConfigureLine.js +52 -0
- package/lib/IconConfigureSolid.js +52 -0
- package/lib/font/Line/InstructureIcons-Line.css +281 -276
- package/lib/font/Line/InstructureIcons-Line.eot +0 -0
- package/lib/font/Line/InstructureIcons-Line.svg +279 -276
- 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 +278 -276
- package/lib/font/Solid/InstructureIcons-Solid.css +281 -276
- package/lib/font/Solid/InstructureIcons-Solid.eot +0 -0
- package/lib/font/Solid/InstructureIcons-Solid.svg +279 -276
- 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 +278 -276
- package/lib/font/index.js +2303 -2281
- package/lib/index.js +16 -0
- package/lib/svg/index.js +1 -1
- package/package.json +6 -5
- package/svg/Line/configure.svg +3 -0
- package/svg/Solid/configure.svg +3 -0
- package/tsconfig.build.tsbuildinfo +1 -1
- package/types/IconConfigureLine.d.ts +29 -0
- package/types/IconConfigureLine.d.ts.map +1 -0
- package/types/IconConfigureSolid.d.ts +29 -0
- package/types/IconConfigureSolid.d.ts.map +1 -0
- package/types/font/index.d.ts +752 -716
- package/types/index.d.ts +2 -0
- package/types/index.d.ts.map +1 -1
- package/types/svg/index.d.ts +572 -552
package/LICENSE.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: The MIT License (MIT)
|
|
3
|
+
category: Getting Started
|
|
4
|
+
order: 9
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# The MIT License (MIT)
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2015 Instructure, Inc.
|
|
10
|
+
|
|
11
|
+
**Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions.**
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
var _path;
|
|
2
|
+
|
|
3
|
+
import React, { Component } from 'react';
|
|
4
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
5
|
+
|
|
6
|
+
class IconConfigureLine 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: "IconConfigure",
|
|
24
|
+
viewBox: "0 0 1920 1920",
|
|
25
|
+
elementRef: this.handleRef
|
|
26
|
+
}), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M262.749 410.667H.000648499V282.667H262.749C292.139 145.504 414.06 42.6667 560 42.6667 705.94 42.6667 827.861 145.504 857.251 282.667H1920V410.667H857.251C827.861 547.829 705.94 650.667 560 650.667 414.06 650.667 292.139 547.829 262.749 410.667ZM384 346.667C384 249.465 462.798 170.667 560 170.667 657.202 170.667 736 249.465 736 346.667 736 443.869 657.202 522.667 560 522.667 462.798 522.667 384 443.869 384 346.667ZM.000648499 896H1009.42C1038.81 758.837 1160.73 656 1306.67 656 1452.61 656 1574.53 758.837 1603.92 896H1920V1024H1603.92C1574.53 1161.16 1452.61 1264 1306.67 1264 1160.73 1264 1038.81 1161.16 1009.42 1024H.000648499V896ZM1306.67 784C1209.46 784 1130.67 862.798 1130.67 960 1130.67 1057.2 1209.46 1136 1306.67 1136 1403.87 1136 1482.67 1057.2 1482.67 960 1482.67 862.798 1403.87 784 1306.67 784ZM857.251 1637.33C827.861 1774.5 705.94 1877.33 560 1877.33 414.06 1877.33 292.139 1774.5 262.749 1637.33H.000648499V1509.33H262.749C292.139 1372.17 414.06 1269.33 560 1269.33 705.94 1269.33 827.861 1372.17 857.251 1509.33H1920V1637.33H857.251ZM384 1573.33C384 1476.13 462.798 1397.33 560 1397.33 657.202 1397.33 736 1476.13 736 1573.33 736 1670.54 657.202 1749.33 560 1749.33 462.798 1749.33 384 1670.54 384 1573.33Z",
|
|
28
|
+
fillRule: "evenodd"
|
|
29
|
+
})));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
IconConfigureLine.glyphName = 'configure';
|
|
35
|
+
IconConfigureLine.variant = 'Line';
|
|
36
|
+
IconConfigureLine.displayName = 'IconConfigureLine';
|
|
37
|
+
IconConfigureLine.propTypes = { ...SVGIcon.propTypes
|
|
38
|
+
};
|
|
39
|
+
IconConfigureLine.allowedProps = [...SVGIcon.allowedProps];
|
|
40
|
+
export default IconConfigureLine;
|
|
41
|
+
export { IconConfigureLine };
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
var _path;
|
|
2
|
+
|
|
3
|
+
import React, { Component } from 'react';
|
|
4
|
+
import { SVGIcon } from '@instructure/ui-svg-images';
|
|
5
|
+
|
|
6
|
+
class IconConfigureSolid 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: "IconConfigure",
|
|
24
|
+
viewBox: "0 0 1920 1920",
|
|
25
|
+
elementRef: this.handleRef
|
|
26
|
+
}), _path || (_path = /*#__PURE__*/React.createElement("path", {
|
|
27
|
+
d: "M230.053 453.333H0V240H230.053C275.043 100.733 405.758 0 560 0 714.242 0 844.957 100.733 889.947 240H1920V453.333H889.947C844.957 592.601 714.242 693.333 560 693.333 405.758 693.333 275.043 592.601 230.053 453.333ZM426.667 346.667C426.667 273.029 486.362 213.333 560 213.333 633.638 213.333 693.333 273.029 693.333 346.667 693.333 420.305 633.638 480 560 480 486.362 480 426.667 420.305 426.667 346.667ZM0 853.333H976.72C1021.71 714.066 1152.42 613.333 1306.67 613.333 1460.91 613.333 1591.62 714.066 1636.61 853.333H1920V1066.67H1636.61C1591.62 1205.93 1460.91 1306.67 1306.67 1306.67 1152.42 1306.67 1021.71 1205.93 976.72 1066.67H0V853.333ZM1306.67 826.667C1233.03 826.667 1173.33 886.362 1173.33 960 1173.33 1033.64 1233.03 1093.33 1306.67 1093.33 1380.3 1093.33 1440 1033.64 1440 960 1440 886.362 1380.3 826.667 1306.67 826.667ZM889.947 1680C844.957 1819.27 714.242 1920 560 1920 405.758 1920 275.043 1819.27 230.053 1680H0V1466.67H230.053C275.043 1327.4 405.758 1226.67 560 1226.67 714.242 1226.67 844.957 1327.4 889.947 1466.67H1920V1680H889.947ZM426.667 1573.33C426.667 1499.7 486.362 1440 560 1440 633.638 1440 693.333 1499.7 693.333 1573.33 693.333 1646.97 633.638 1706.67 560 1706.67 486.362 1706.67 426.667 1646.97 426.667 1573.33Z",
|
|
28
|
+
fillRule: "evenodd"
|
|
29
|
+
})));
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
IconConfigureSolid.glyphName = 'configure';
|
|
35
|
+
IconConfigureSolid.variant = 'Solid';
|
|
36
|
+
IconConfigureSolid.displayName = 'IconConfigureSolid';
|
|
37
|
+
IconConfigureSolid.propTypes = { ...SVGIcon.propTypes
|
|
38
|
+
};
|
|
39
|
+
IconConfigureSolid.allowedProps = [...SVGIcon.allowedProps];
|
|
40
|
+
export default IconConfigureSolid;
|
|
41
|
+
export { IconConfigureSolid };
|