@primer/styled-octicons 15.2.0 → 16.2.0
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/dist/icons/AlertFillIcon.js +87 -0
- package/dist/icons/CheckCircleFillIcon.js +1 -1
- package/dist/icons/CodeOfConductIcon.js +87 -0
- package/dist/icons/{SelectSingleIcon.js → IterationsIcon.js} +6 -6
- package/dist/icons/NoEntryFillIcon.js +87 -0
- package/dist/icons/NoEntryIcon.js +1 -1
- package/dist/icons/SingleSelectIcon.js +1 -1
- package/dist/icons/XCircleFillIcon.js +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.esm.js +4 -1
- package/dist/index.umd.js +68 -20
- package/package.json +2 -2
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { compose, space, color } from 'styled-system';
|
|
3
|
+
import css from '@styled-system/css';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
|
|
6
|
+
var sizeMap = {
|
|
7
|
+
small: 16,
|
|
8
|
+
medium: 32,
|
|
9
|
+
large: 64
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function getSvgProps(_ref) {
|
|
13
|
+
var ariaLabel = _ref['aria-label'],
|
|
14
|
+
className = _ref.className,
|
|
15
|
+
_ref$fill = _ref.fill,
|
|
16
|
+
fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
|
|
17
|
+
size = _ref.size,
|
|
18
|
+
verticalAlign = _ref.verticalAlign,
|
|
19
|
+
svgDataByHeight = _ref.svgDataByHeight;
|
|
20
|
+
|
|
21
|
+
var height = sizeMap[size] || size;
|
|
22
|
+
var naturalHeight = closestNaturalHeight(Object.keys(svgDataByHeight), height);
|
|
23
|
+
var naturalWidth = svgDataByHeight[naturalHeight].width;
|
|
24
|
+
var width = height * (naturalWidth / naturalHeight);
|
|
25
|
+
var path = svgDataByHeight[naturalHeight].path;
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
'aria-hidden': ariaLabel ? 'false' : 'true',
|
|
29
|
+
'aria-label': ariaLabel,
|
|
30
|
+
role: 'img',
|
|
31
|
+
className: className,
|
|
32
|
+
viewBox: '0 0 ' + naturalWidth + ' ' + naturalHeight,
|
|
33
|
+
width: width,
|
|
34
|
+
height: height,
|
|
35
|
+
fill: fill,
|
|
36
|
+
style: {
|
|
37
|
+
display: 'inline-block',
|
|
38
|
+
userSelect: 'none',
|
|
39
|
+
verticalAlign: verticalAlign,
|
|
40
|
+
overflow: 'visible'
|
|
41
|
+
},
|
|
42
|
+
dangerouslySetInnerHTML: { __html: path }
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function closestNaturalHeight(naturalHeights, height) {
|
|
47
|
+
return naturalHeights.map(function (naturalHeight) {
|
|
48
|
+
return parseInt(naturalHeight, 10);
|
|
49
|
+
}).reduce(function (acc, naturalHeight) {
|
|
50
|
+
return naturalHeight <= height ? naturalHeight : acc;
|
|
51
|
+
}, naturalHeights[0]);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
var _extends = Object.assign || function (target) {
|
|
55
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
56
|
+
var source = arguments[i];for (var key in source) {
|
|
57
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
58
|
+
target[key] = source[key];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}return target;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
function AlertFillIcon(props) {
|
|
65
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 01-1.146 1.954H1.33A1.312 1.312 0 01.183 9.058L4.855.708zM7 7V3H5v4h2zm-1 3a1 1 0 100-2 1 1 0 000 2z\"></path>" } };
|
|
66
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
AlertFillIcon.defaultProps = {
|
|
70
|
+
className: 'octicon octicon-alert-fill',
|
|
71
|
+
size: 16,
|
|
72
|
+
verticalAlign: 'text-bottom'
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
// eslint-disable-next-line import/no-namespace
|
|
76
|
+
|
|
77
|
+
var COMMON = compose(space, color);
|
|
78
|
+
|
|
79
|
+
var sx = function sx(props) {
|
|
80
|
+
return css(props.sx);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
84
|
+
|
|
85
|
+
var StyledAlertFillIcon = styled(AlertFillIcon)(COMMON, sx);
|
|
86
|
+
|
|
87
|
+
export default StyledAlertFillIcon;
|
|
@@ -62,7 +62,7 @@ var _extends = Object.assign || function (target) {
|
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
function CheckCircleFillIcon(props) {
|
|
65
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm3.78-9.72a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm16.28-2.72a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z\"></path>" } };
|
|
65
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M6 0a6 6 0 100 12A6 6 0 006 0zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938z\"></path>" }, "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm3.78-9.72a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm16.28-2.72a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z\"></path>" } };
|
|
66
66
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { compose, space, color } from 'styled-system';
|
|
3
|
+
import css from '@styled-system/css';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
|
|
6
|
+
var sizeMap = {
|
|
7
|
+
small: 16,
|
|
8
|
+
medium: 32,
|
|
9
|
+
large: 64
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function getSvgProps(_ref) {
|
|
13
|
+
var ariaLabel = _ref['aria-label'],
|
|
14
|
+
className = _ref.className,
|
|
15
|
+
_ref$fill = _ref.fill,
|
|
16
|
+
fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
|
|
17
|
+
size = _ref.size,
|
|
18
|
+
verticalAlign = _ref.verticalAlign,
|
|
19
|
+
svgDataByHeight = _ref.svgDataByHeight;
|
|
20
|
+
|
|
21
|
+
var height = sizeMap[size] || size;
|
|
22
|
+
var naturalHeight = closestNaturalHeight(Object.keys(svgDataByHeight), height);
|
|
23
|
+
var naturalWidth = svgDataByHeight[naturalHeight].width;
|
|
24
|
+
var width = height * (naturalWidth / naturalHeight);
|
|
25
|
+
var path = svgDataByHeight[naturalHeight].path;
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
'aria-hidden': ariaLabel ? 'false' : 'true',
|
|
29
|
+
'aria-label': ariaLabel,
|
|
30
|
+
role: 'img',
|
|
31
|
+
className: className,
|
|
32
|
+
viewBox: '0 0 ' + naturalWidth + ' ' + naturalHeight,
|
|
33
|
+
width: width,
|
|
34
|
+
height: height,
|
|
35
|
+
fill: fill,
|
|
36
|
+
style: {
|
|
37
|
+
display: 'inline-block',
|
|
38
|
+
userSelect: 'none',
|
|
39
|
+
verticalAlign: verticalAlign,
|
|
40
|
+
overflow: 'visible'
|
|
41
|
+
},
|
|
42
|
+
dangerouslySetInnerHTML: { __html: path }
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function closestNaturalHeight(naturalHeights, height) {
|
|
47
|
+
return naturalHeights.map(function (naturalHeight) {
|
|
48
|
+
return parseInt(naturalHeight, 10);
|
|
49
|
+
}).reduce(function (acc, naturalHeight) {
|
|
50
|
+
return naturalHeight <= height ? naturalHeight : acc;
|
|
51
|
+
}, naturalHeights[0]);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
var _extends = Object.assign || function (target) {
|
|
55
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
56
|
+
var source = arguments[i];for (var key in source) {
|
|
57
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
58
|
+
target[key] = source[key];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}return target;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
function CodeOfConductIcon(props) {
|
|
65
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.613 4.613 0 013.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.75.75 0 01-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.614 4.614 0 011.353-3.407C3.123.585 6.223.537 8.048 2.24zm-1.153.983c-.81.78-1.546 1.669-2.166 2.417-.184.222-.358.432-.52.623a.75.75 0 00.04 1.016c.35.35.697.697 1.043 1.047.866.875 2.292.914 3.185.032.264-.26.534-.528.802-.797.694-.694 1.8-.701 2.474-.03L12.92 8.7l.283.284c-.244.334-.515.666-.81.995l-1.384-1.28A.75.75 0 109.99 9.802l1.357 1.252c-.325.31-.656.606-.984.887l-1.48-1.366a.75.75 0 10-1.018 1.102L9.191 12.9c-.433.34-.838.643-1.191.905-1.04-.773-2.537-1.907-3.846-3.242C2.611 8.99 1.502 7.306 1.502 5.75a3.114 3.114 0 01.913-2.335c1.159-1.158 3.23-1.224 4.48-.191zm7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.113 3.113 0 00-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.756.756 0 001.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173l.022.023z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M2.828 4.328C5.26 1.896 9.5 1.881 11.935 4.317c.024.024.046.05.067.076 1.391-1.078 2.993-1.886 4.777-1.89a6.216 6.216 0 014.424 1.825c.559.56 1.023 1.165 1.34 1.922.318.756.47 1.617.468 2.663 0 2.972-2.047 5.808-4.269 8.074-2.098 2.14-4.507 3.924-5.974 5.009l-.311.23a.752.752 0 01-.897 0l-.312-.23c-1.466-1.085-3.875-2.869-5.973-5.009-2.22-2.263-4.264-5.095-4.27-8.063v.012-.024.012a6.217 6.217 0 011.823-4.596zm8.033 1.042c-1.846-1.834-5.124-1.823-6.969.022a4.713 4.713 0 00-1.382 3.52c0 2.332 1.65 4.79 3.839 7.022 1.947 1.986 4.184 3.66 5.66 4.752a79.983 79.983 0 002.159-1.645l-2.14-1.974a.752.752 0 011.02-1.106l2.295 2.118c.616-.52 1.242-1.08 1.85-1.672l-2.16-1.992a.752.752 0 011.021-1.106l2.188 2.02a18.992 18.992 0 001.528-1.877l-.585-.586-1.651-1.652c-1.078-1.074-2.837-1.055-3.935.043-.379.38-.76.758-1.132 1.126-1.14 1.124-2.96 1.077-4.07-.043-.489-.495-.98-.988-1.475-1.482a.752.752 0 01-.04-1.019c.234-.276.483-.576.745-.893.928-1.12 2.023-2.442 3.234-3.576zm9.725 6.77c.579-1.08.92-2.167.92-3.228.002-.899-.128-1.552-.35-2.08-.22-.526-.551-.974-1.017-1.44a4.71 4.71 0 00-3.356-1.384c-1.66.004-3.25.951-4.77 2.346-1.18 1.084-2.233 2.353-3.188 3.506l-.351.423c.331.332.663.664.993.998a1.375 1.375 0 001.943.03c.37-.365.748-.74 1.125-1.118 1.662-1.663 4.373-1.726 6.06-.045.56.558 1.12 1.12 1.658 1.658l.333.334z\"></path>" } };
|
|
66
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
CodeOfConductIcon.defaultProps = {
|
|
70
|
+
className: 'octicon octicon-code-of-conduct',
|
|
71
|
+
size: 16,
|
|
72
|
+
verticalAlign: 'text-bottom'
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
// eslint-disable-next-line import/no-namespace
|
|
76
|
+
|
|
77
|
+
var COMMON = compose(space, color);
|
|
78
|
+
|
|
79
|
+
var sx = function sx(props) {
|
|
80
|
+
return css(props.sx);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
84
|
+
|
|
85
|
+
var StyledCodeOfConductIcon = styled(CodeOfConductIcon)(COMMON, sx);
|
|
86
|
+
|
|
87
|
+
export default StyledCodeOfConductIcon;
|
|
@@ -61,13 +61,13 @@ var _extends = Object.assign || function (target) {
|
|
|
61
61
|
}return target;
|
|
62
62
|
};
|
|
63
63
|
|
|
64
|
-
function
|
|
65
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"
|
|
64
|
+
function IterationsIcon(props) {
|
|
65
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M2.5 7.25a4.75 4.75 0 019.5 0 .75.75 0 001.5 0 6.25 6.25 0 10-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 000-.354l-2.896-2.896a.25.25 0 00-.427.177V12H7.25A4.75 4.75 0 012.5 7.25z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M2.5 10.5a8 8 0 1116 0 .75.75 0 001.5 0 9.5 9.5 0 10-9.5 9.5h10.94l-2.72 2.72a.75.75 0 101.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 00-1.06 1.06l2.72 2.72H10.5a8 8 0 01-8-8z\"></path>" } };
|
|
66
66
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
67
|
}
|
|
68
68
|
|
|
69
|
-
|
|
70
|
-
className: 'octicon octicon-
|
|
69
|
+
IterationsIcon.defaultProps = {
|
|
70
|
+
className: 'octicon octicon-iterations',
|
|
71
71
|
size: 16,
|
|
72
72
|
verticalAlign: 'text-bottom'
|
|
73
73
|
};
|
|
@@ -82,6 +82,6 @@ var sx = function sx(props) {
|
|
|
82
82
|
|
|
83
83
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
84
84
|
|
|
85
|
-
var
|
|
85
|
+
var StyledIterationsIcon = styled(IterationsIcon)(COMMON, sx);
|
|
86
86
|
|
|
87
|
-
export default
|
|
87
|
+
export default StyledIterationsIcon;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { compose, space, color } from 'styled-system';
|
|
3
|
+
import css from '@styled-system/css';
|
|
4
|
+
import styled from 'styled-components';
|
|
5
|
+
|
|
6
|
+
var sizeMap = {
|
|
7
|
+
small: 16,
|
|
8
|
+
medium: 32,
|
|
9
|
+
large: 64
|
|
10
|
+
};
|
|
11
|
+
|
|
12
|
+
function getSvgProps(_ref) {
|
|
13
|
+
var ariaLabel = _ref['aria-label'],
|
|
14
|
+
className = _ref.className,
|
|
15
|
+
_ref$fill = _ref.fill,
|
|
16
|
+
fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
|
|
17
|
+
size = _ref.size,
|
|
18
|
+
verticalAlign = _ref.verticalAlign,
|
|
19
|
+
svgDataByHeight = _ref.svgDataByHeight;
|
|
20
|
+
|
|
21
|
+
var height = sizeMap[size] || size;
|
|
22
|
+
var naturalHeight = closestNaturalHeight(Object.keys(svgDataByHeight), height);
|
|
23
|
+
var naturalWidth = svgDataByHeight[naturalHeight].width;
|
|
24
|
+
var width = height * (naturalWidth / naturalHeight);
|
|
25
|
+
var path = svgDataByHeight[naturalHeight].path;
|
|
26
|
+
|
|
27
|
+
return {
|
|
28
|
+
'aria-hidden': ariaLabel ? 'false' : 'true',
|
|
29
|
+
'aria-label': ariaLabel,
|
|
30
|
+
role: 'img',
|
|
31
|
+
className: className,
|
|
32
|
+
viewBox: '0 0 ' + naturalWidth + ' ' + naturalHeight,
|
|
33
|
+
width: width,
|
|
34
|
+
height: height,
|
|
35
|
+
fill: fill,
|
|
36
|
+
style: {
|
|
37
|
+
display: 'inline-block',
|
|
38
|
+
userSelect: 'none',
|
|
39
|
+
verticalAlign: verticalAlign,
|
|
40
|
+
overflow: 'visible'
|
|
41
|
+
},
|
|
42
|
+
dangerouslySetInnerHTML: { __html: path }
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
function closestNaturalHeight(naturalHeights, height) {
|
|
47
|
+
return naturalHeights.map(function (naturalHeight) {
|
|
48
|
+
return parseInt(naturalHeight, 10);
|
|
49
|
+
}).reduce(function (acc, naturalHeight) {
|
|
50
|
+
return naturalHeight <= height ? naturalHeight : acc;
|
|
51
|
+
}, naturalHeights[0]);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
var _extends = Object.assign || function (target) {
|
|
55
|
+
for (var i = 1; i < arguments.length; i++) {
|
|
56
|
+
var source = arguments[i];for (var key in source) {
|
|
57
|
+
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
|
58
|
+
target[key] = source[key];
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}return target;
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
function NoEntryFillIcon(props) {
|
|
65
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M6 0a6 6 0 100 12A6 6 0 006 0zm3 5H3v2h6V5z\"></path>" } };
|
|
66
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
NoEntryFillIcon.defaultProps = {
|
|
70
|
+
className: 'octicon octicon-no-entry-fill',
|
|
71
|
+
size: 16,
|
|
72
|
+
verticalAlign: 'text-bottom'
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
// eslint-disable-next-line import/no-namespace
|
|
76
|
+
|
|
77
|
+
var COMMON = compose(space, color);
|
|
78
|
+
|
|
79
|
+
var sx = function sx(props) {
|
|
80
|
+
return css(props.sx);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
84
|
+
|
|
85
|
+
var StyledNoEntryFillIcon = styled(NoEntryFillIcon)(COMMON, sx);
|
|
86
|
+
|
|
87
|
+
export default StyledNoEntryFillIcon;
|
|
@@ -62,7 +62,7 @@ var _extends = Object.assign || function (target) {
|
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
function NoEntryIcon(props) {
|
|
65
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path
|
|
65
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M4.25 7.25a.75.75 0 000 1.5h7.5a.75.75 0 000-1.5h-7.5z\"></path><path fill-rule=\"evenodd\" d=\"M16 8A8 8 0 110 8a8 8 0 0116 0zm-1.5 0a6.5 6.5 0 11-13 0 6.5 6.5 0 0113 0z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M2.5 12a9.5 9.5 0 1119 0 9.5 9.5 0 01-19 0zM12 1C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1zm6.25 11.75a.75.75 0 000-1.5H5.75a.75.75 0 000 1.5h12.5z\"></path>" } };
|
|
66
66
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -62,7 +62,7 @@ var _extends = Object.assign || function (target) {
|
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
function SingleSelectIcon(props) {
|
|
65
|
-
var svgDataByHeight = { "24": { "width": 24, "path": "<path d=\"M7.854 10.854l3.792 3.792a.5.5 0 00.708 0l3.793-3.792a.5.5 0 00-.354-.854H8.207a.5.5 0 00-.353.854z\"></path><path fill-rule=\"evenodd\" d=\"M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0120.25 22H3.75A1.75 1.75 0 012 20.25V3.75zm1.75-.25a.25.25 0 00-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 00.25-.25V3.75a.25.25 0 00-.25-.25H3.75z\"></path>" } };
|
|
65
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z\"></path><path fill-rule=\"evenodd\" d=\"M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 15H2.75A1.75 1.75 0 011 13.25V2.75zm1.75-.25a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V2.75a.25.25 0 00-.25-.25H2.75z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M7.854 10.854l3.792 3.792a.5.5 0 00.708 0l3.793-3.792a.5.5 0 00-.354-.854H8.207a.5.5 0 00-.353.854z\"></path><path fill-rule=\"evenodd\" d=\"M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0120.25 22H3.75A1.75 1.75 0 012 20.25V3.75zm1.75-.25a.25.25 0 00-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 00.25-.25V3.75a.25.25 0 00-.25-.25H3.75z\"></path>" } };
|
|
66
66
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
67
|
}
|
|
68
68
|
|
|
@@ -62,7 +62,7 @@ var _extends = Object.assign || function (target) {
|
|
|
62
62
|
};
|
|
63
63
|
|
|
64
64
|
function XCircleFillIcon(props) {
|
|
65
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M2.343 13.657A8 8 0 1113.657 2.343 8 8 0 012.343 13.657zM6.03 4.97a.75.75 0 00-1.06 1.06L6.94 8 4.97 9.97a.75.75 0 101.06 1.06L8 9.06l1.97 1.97a.75.75 0 101.06-1.06L9.06 8l1.97-1.97a.75.75 0 10-1.06-1.06L8 6.94 6.03 4.97z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm8.036-4.024a.75.75 0 00-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 101.06 1.06L12 13.06l2.963 2.964a.75.75 0 001.061-1.06L13.061 12l2.963-2.964a.75.75 0 10-1.06-1.06L12 10.939 9.036 7.976z\"></path>" } };
|
|
65
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M1.757 10.243a6 6 0 118.486-8.486 6 6 0 01-8.486 8.486zM6 4.763l-2-2L2.763 4l2 2-2 2L4 9.237l2-2 2 2L9.237 8l-2-2 2-2L8 2.763l-2 2z\"></path>" }, "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M2.343 13.657A8 8 0 1113.657 2.343 8 8 0 012.343 13.657zM6.03 4.97a.75.75 0 00-1.06 1.06L6.94 8 4.97 9.97a.75.75 0 101.06 1.06L8 9.06l1.97 1.97a.75.75 0 101.06-1.06L9.06 8l1.97-1.97a.75.75 0 10-1.06-1.06L8 6.94 6.03 4.97z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm8.036-4.024a.75.75 0 00-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 101.06 1.06L12 13.06l2.963 2.964a.75.75 0 001.061-1.06L13.061 12l2.963-2.964a.75.75 0 10-1.06-1.06L12 10.939 9.036 7.976z\"></path>" } };
|
|
66
66
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
67
67
|
}
|
|
68
68
|
|
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export interface IconProps extends StyledSystem.ColorProps, StyledSystem.SpacePr
|
|
|
15
15
|
|
|
16
16
|
export type Icon = React.FC<IconProps>
|
|
17
17
|
export const AlertIcon: Icon;
|
|
18
|
+
export const AlertFillIcon: Icon;
|
|
18
19
|
export const ArchiveIcon: Icon;
|
|
19
20
|
export const ArrowBothIcon: Icon;
|
|
20
21
|
export const ArrowDownIcon: Icon;
|
|
@@ -54,6 +55,7 @@ export const CircleIcon: Icon;
|
|
|
54
55
|
export const CircleSlashIcon: Icon;
|
|
55
56
|
export const ClockIcon: Icon;
|
|
56
57
|
export const CodeIcon: Icon;
|
|
58
|
+
export const CodeOfConductIcon: Icon;
|
|
57
59
|
export const CodeReviewIcon: Icon;
|
|
58
60
|
export const CodeSquareIcon: Icon;
|
|
59
61
|
export const CodescanIcon: Icon;
|
|
@@ -137,6 +139,7 @@ export const IssueDraftIcon: Icon;
|
|
|
137
139
|
export const IssueOpenedIcon: Icon;
|
|
138
140
|
export const IssueReopenedIcon: Icon;
|
|
139
141
|
export const ItalicIcon: Icon;
|
|
142
|
+
export const IterationsIcon: Icon;
|
|
140
143
|
export const KebabHorizontalIcon: Icon;
|
|
141
144
|
export const KeyIcon: Icon;
|
|
142
145
|
export const KeyAsteriskIcon: Icon;
|
|
@@ -163,6 +166,7 @@ export const MortarBoardIcon: Icon;
|
|
|
163
166
|
export const MultiSelectIcon: Icon;
|
|
164
167
|
export const MuteIcon: Icon;
|
|
165
168
|
export const NoEntryIcon: Icon;
|
|
169
|
+
export const NoEntryFillIcon: Icon;
|
|
166
170
|
export const NorthStarIcon: Icon;
|
|
167
171
|
export const NoteIcon: Icon;
|
|
168
172
|
export const NumberIcon: Icon;
|
|
@@ -202,7 +206,6 @@ export const RubyIcon: Icon;
|
|
|
202
206
|
export const ScreenFullIcon: Icon;
|
|
203
207
|
export const ScreenNormalIcon: Icon;
|
|
204
208
|
export const SearchIcon: Icon;
|
|
205
|
-
export const SelectSingleIcon: Icon;
|
|
206
209
|
export const ServerIcon: Icon;
|
|
207
210
|
export const ShareIcon: Icon;
|
|
208
211
|
export const ShareAndroidIcon: Icon;
|
package/dist/index.esm.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { default as AlertIcon } from './icons/AlertIcon';
|
|
2
|
+
export { default as AlertFillIcon } from './icons/AlertFillIcon';
|
|
2
3
|
export { default as ArchiveIcon } from './icons/ArchiveIcon';
|
|
3
4
|
export { default as ArrowBothIcon } from './icons/ArrowBothIcon';
|
|
4
5
|
export { default as ArrowDownIcon } from './icons/ArrowDownIcon';
|
|
@@ -38,6 +39,7 @@ export { default as CircleIcon } from './icons/CircleIcon';
|
|
|
38
39
|
export { default as CircleSlashIcon } from './icons/CircleSlashIcon';
|
|
39
40
|
export { default as ClockIcon } from './icons/ClockIcon';
|
|
40
41
|
export { default as CodeIcon } from './icons/CodeIcon';
|
|
42
|
+
export { default as CodeOfConductIcon } from './icons/CodeOfConductIcon';
|
|
41
43
|
export { default as CodeReviewIcon } from './icons/CodeReviewIcon';
|
|
42
44
|
export { default as CodeSquareIcon } from './icons/CodeSquareIcon';
|
|
43
45
|
export { default as CodescanIcon } from './icons/CodescanIcon';
|
|
@@ -121,6 +123,7 @@ export { default as IssueDraftIcon } from './icons/IssueDraftIcon';
|
|
|
121
123
|
export { default as IssueOpenedIcon } from './icons/IssueOpenedIcon';
|
|
122
124
|
export { default as IssueReopenedIcon } from './icons/IssueReopenedIcon';
|
|
123
125
|
export { default as ItalicIcon } from './icons/ItalicIcon';
|
|
126
|
+
export { default as IterationsIcon } from './icons/IterationsIcon';
|
|
124
127
|
export { default as KebabHorizontalIcon } from './icons/KebabHorizontalIcon';
|
|
125
128
|
export { default as KeyIcon } from './icons/KeyIcon';
|
|
126
129
|
export { default as KeyAsteriskIcon } from './icons/KeyAsteriskIcon';
|
|
@@ -147,6 +150,7 @@ export { default as MortarBoardIcon } from './icons/MortarBoardIcon';
|
|
|
147
150
|
export { default as MultiSelectIcon } from './icons/MultiSelectIcon';
|
|
148
151
|
export { default as MuteIcon } from './icons/MuteIcon';
|
|
149
152
|
export { default as NoEntryIcon } from './icons/NoEntryIcon';
|
|
153
|
+
export { default as NoEntryFillIcon } from './icons/NoEntryFillIcon';
|
|
150
154
|
export { default as NorthStarIcon } from './icons/NorthStarIcon';
|
|
151
155
|
export { default as NoteIcon } from './icons/NoteIcon';
|
|
152
156
|
export { default as NumberIcon } from './icons/NumberIcon';
|
|
@@ -186,7 +190,6 @@ export { default as RubyIcon } from './icons/RubyIcon';
|
|
|
186
190
|
export { default as ScreenFullIcon } from './icons/ScreenFullIcon';
|
|
187
191
|
export { default as ScreenNormalIcon } from './icons/ScreenNormalIcon';
|
|
188
192
|
export { default as SearchIcon } from './icons/SearchIcon';
|
|
189
|
-
export { default as SelectSingleIcon } from './icons/SelectSingleIcon';
|
|
190
193
|
export { default as ServerIcon } from './icons/ServerIcon';
|
|
191
194
|
export { default as ShareIcon } from './icons/ShareIcon';
|
|
192
195
|
export { default as ShareAndroidIcon } from './icons/ShareAndroidIcon';
|
package/dist/index.umd.js
CHANGED
|
@@ -77,6 +77,17 @@
|
|
|
77
77
|
verticalAlign: 'text-bottom'
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
+
function AlertFillIcon(props) {
|
|
81
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M4.855.708c.5-.896 1.79-.896 2.29 0l4.675 8.351a1.312 1.312 0 01-1.146 1.954H1.33A1.312 1.312 0 01.183 9.058L4.855.708zM7 7V3H5v4h2zm-1 3a1 1 0 100-2 1 1 0 000 2z\"></path>" } };
|
|
82
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
AlertFillIcon.defaultProps = {
|
|
86
|
+
className: 'octicon octicon-alert-fill',
|
|
87
|
+
size: 16,
|
|
88
|
+
verticalAlign: 'text-bottom'
|
|
89
|
+
};
|
|
90
|
+
|
|
80
91
|
function ArchiveIcon(props) {
|
|
81
92
|
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M1.75 2.5a.25.25 0 00-.25.25v1.5c0 .138.112.25.25.25h12.5a.25.25 0 00.25-.25v-1.5a.25.25 0 00-.25-.25H1.75zM0 2.75C0 1.784.784 1 1.75 1h12.5c.966 0 1.75.784 1.75 1.75v1.5A1.75 1.75 0 0114.25 6H1.75A1.75 1.75 0 010 4.25v-1.5zM1.75 7a.75.75 0 01.75.75v5.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25v-5.5a.75.75 0 111.5 0v5.5A1.75 1.75 0 0113.25 15H2.75A1.75 1.75 0 011 13.25v-5.5A.75.75 0 011.75 7zm4.5 1a.75.75 0 000 1.5h3.5a.75.75 0 100-1.5h-3.5z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M2.75 2A1.75 1.75 0 001 3.75v3.5C1 8.216 1.784 9 2.75 9h18.5A1.75 1.75 0 0023 7.25v-3.5A1.75 1.75 0 0021.25 2H2.75zm18.5 1.5H2.75a.25.25 0 00-.25.25v3.5c0 .138.112.25.25.25h18.5a.25.25 0 00.25-.25v-3.5a.25.25 0 00-.25-.25z\"></path><path d=\"M2.75 10a.75.75 0 01.75.75v9.5c0 .138.112.25.25.25h16.5a.25.25 0 00.25-.25v-9.5a.75.75 0 011.5 0v9.5A1.75 1.75 0 0120.25 22H3.75A1.75 1.75 0 012 20.25v-9.5a.75.75 0 01.75-.75z\"></path><path d=\"M9.75 11.5a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5z\"></path>" } };
|
|
82
93
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
@@ -397,7 +408,7 @@
|
|
|
397
408
|
};
|
|
398
409
|
|
|
399
410
|
function CheckCircleFillIcon(props) {
|
|
400
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm3.78-9.72a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm16.28-2.72a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z\"></path>" } };
|
|
411
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M6 0a6 6 0 100 12A6 6 0 006 0zm-.705 8.737L9.63 4.403 8.392 3.166 5.295 6.263l-1.7-1.702L2.356 5.8l2.938 2.938z\"></path>" }, "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8 16A8 8 0 108 0a8 8 0 000 16zm3.78-9.72a.75.75 0 00-1.06-1.06L6.75 9.19 5.28 7.72a.75.75 0 00-1.06 1.06l2 2a.75.75 0 001.06 0l4.5-4.5z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm16.28-2.72a.75.75 0 00-1.06-1.06l-5.97 5.97-2.47-2.47a.75.75 0 00-1.06 1.06l3 3a.75.75 0 001.06 0l6.5-6.5z\"></path>" } };
|
|
401
412
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
402
413
|
}
|
|
403
414
|
|
|
@@ -506,6 +517,17 @@
|
|
|
506
517
|
verticalAlign: 'text-bottom'
|
|
507
518
|
};
|
|
508
519
|
|
|
520
|
+
function CodeOfConductIcon(props) {
|
|
521
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M8.048 2.241c.964-.709 2.079-1.238 3.325-1.241a4.613 4.613 0 013.282 1.355c.41.408.757.86.996 1.428.238.568.348 1.206.347 1.968 0 2.193-1.505 4.254-3.081 5.862-1.496 1.526-3.213 2.796-4.249 3.563l-.22.163a.75.75 0 01-.895 0l-.221-.163c-1.036-.767-2.753-2.037-4.249-3.563C1.51 10.008.007 7.952.002 5.762a4.614 4.614 0 011.353-3.407C3.123.585 6.223.537 8.048 2.24zm-1.153.983c-.81.78-1.546 1.669-2.166 2.417-.184.222-.358.432-.52.623a.75.75 0 00.04 1.016c.35.35.697.697 1.043 1.047.866.875 2.292.914 3.185.032.264-.26.534-.528.802-.797.694-.694 1.8-.701 2.474-.03L12.92 8.7l.283.284c-.244.334-.515.666-.81.995l-1.384-1.28A.75.75 0 109.99 9.802l1.357 1.252c-.325.31-.656.606-.984.887l-1.48-1.366a.75.75 0 10-1.018 1.102L9.191 12.9c-.433.34-.838.643-1.191.905-1.04-.773-2.537-1.907-3.846-3.242C2.611 8.99 1.502 7.306 1.502 5.75a3.114 3.114 0 01.913-2.335c1.159-1.158 3.23-1.224 4.48-.191zm7.112 4.442c.313-.65.491-1.293.491-1.916v-.001c0-.614-.088-1.045-.23-1.385-.143-.339-.357-.633-.673-.949a3.113 3.113 0 00-2.218-.915c-1.092.003-2.165.627-3.226 1.602-.823.755-1.554 1.637-2.228 2.45l-.127.154.562.566a.756.756 0 001.066.02l.794-.79c1.258-1.258 3.312-1.31 4.594-.032.396.394.792.791 1.173 1.173l.022.023z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M2.828 4.328C5.26 1.896 9.5 1.881 11.935 4.317c.024.024.046.05.067.076 1.391-1.078 2.993-1.886 4.777-1.89a6.216 6.216 0 014.424 1.825c.559.56 1.023 1.165 1.34 1.922.318.756.47 1.617.468 2.663 0 2.972-2.047 5.808-4.269 8.074-2.098 2.14-4.507 3.924-5.974 5.009l-.311.23a.752.752 0 01-.897 0l-.312-.23c-1.466-1.085-3.875-2.869-5.973-5.009-2.22-2.263-4.264-5.095-4.27-8.063v.012-.024.012a6.217 6.217 0 011.823-4.596zm8.033 1.042c-1.846-1.834-5.124-1.823-6.969.022a4.713 4.713 0 00-1.382 3.52c0 2.332 1.65 4.79 3.839 7.022 1.947 1.986 4.184 3.66 5.66 4.752a79.983 79.983 0 002.159-1.645l-2.14-1.974a.752.752 0 011.02-1.106l2.295 2.118c.616-.52 1.242-1.08 1.85-1.672l-2.16-1.992a.752.752 0 011.021-1.106l2.188 2.02a18.992 18.992 0 001.528-1.877l-.585-.586-1.651-1.652c-1.078-1.074-2.837-1.055-3.935.043-.379.38-.76.758-1.132 1.126-1.14 1.124-2.96 1.077-4.07-.043-.489-.495-.98-.988-1.475-1.482a.752.752 0 01-.04-1.019c.234-.276.483-.576.745-.893.928-1.12 2.023-2.442 3.234-3.576zm9.725 6.77c.579-1.08.92-2.167.92-3.228.002-.899-.128-1.552-.35-2.08-.22-.526-.551-.974-1.017-1.44a4.71 4.71 0 00-3.356-1.384c-1.66.004-3.25.951-4.77 2.346-1.18 1.084-2.233 2.353-3.188 3.506l-.351.423c.331.332.663.664.993.998a1.375 1.375 0 001.943.03c.37-.365.748-.74 1.125-1.118 1.662-1.663 4.373-1.726 6.06-.045.56.558 1.12 1.12 1.658 1.658l.333.334z\"></path>" } };
|
|
522
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
CodeOfConductIcon.defaultProps = {
|
|
526
|
+
className: 'octicon octicon-code-of-conduct',
|
|
527
|
+
size: 16,
|
|
528
|
+
verticalAlign: 'text-bottom'
|
|
529
|
+
};
|
|
530
|
+
|
|
509
531
|
function CodeReviewIcon(props) {
|
|
510
532
|
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M1.5 2.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v8.5a.25.25 0 01-.25.25h-6.5a.75.75 0 00-.53.22L4.5 14.44v-2.19a.75.75 0 00-.75-.75h-2a.25.25 0 01-.25-.25v-8.5zM1.75 1A1.75 1.75 0 000 2.75v8.5C0 12.216.784 13 1.75 13H3v1.543a1.457 1.457 0 002.487 1.03L8.061 13h6.189A1.75 1.75 0 0016 11.25v-8.5A1.75 1.75 0 0014.25 1H1.75zm5.03 3.47a.75.75 0 010 1.06L5.31 7l1.47 1.47a.75.75 0 01-1.06 1.06l-2-2a.75.75 0 010-1.06l2-2a.75.75 0 011.06 0zm2.44 0a.75.75 0 000 1.06L10.69 7 9.22 8.47a.75.75 0 001.06 1.06l2-2a.75.75 0 000-1.06l-2-2a.75.75 0 00-1.06 0z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M10.3 6.74a.75.75 0 01-.04 1.06l-2.908 2.7 2.908 2.7a.75.75 0 11-1.02 1.1l-3.5-3.25a.75.75 0 010-1.1l3.5-3.25a.75.75 0 011.06.04zm3.44 1.06a.75.75 0 111.02-1.1l3.5 3.25a.75.75 0 010 1.1l-3.5 3.25a.75.75 0 11-1.02-1.1l2.908-2.7-2.908-2.7z\"></path><path fill-rule=\"evenodd\" d=\"M1.5 4.25c0-.966.784-1.75 1.75-1.75h17.5c.966 0 1.75.784 1.75 1.75v12.5a1.75 1.75 0 01-1.75 1.75h-9.69l-3.573 3.573A1.457 1.457 0 015 21.043V18.5H3.25a1.75 1.75 0 01-1.75-1.75V4.25zM3.25 4a.25.25 0 00-.25.25v12.5c0 .138.112.25.25.25h2.5a.75.75 0 01.75.75v3.19l3.72-3.72a.75.75 0 01.53-.22h10a.25.25 0 00.25-.25V4.25a.25.25 0 00-.25-.25H3.25z\"></path>" } };
|
|
511
533
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
@@ -1419,6 +1441,17 @@
|
|
|
1419
1441
|
verticalAlign: 'text-bottom'
|
|
1420
1442
|
};
|
|
1421
1443
|
|
|
1444
|
+
function IterationsIcon(props) {
|
|
1445
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M2.5 7.25a4.75 4.75 0 019.5 0 .75.75 0 001.5 0 6.25 6.25 0 10-6.25 6.25H12v2.146c0 .223.27.335.427.177l2.896-2.896a.25.25 0 000-.354l-2.896-2.896a.25.25 0 00-.427.177V12H7.25A4.75 4.75 0 012.5 7.25z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M2.5 10.5a8 8 0 1116 0 .75.75 0 001.5 0 9.5 9.5 0 10-9.5 9.5h10.94l-2.72 2.72a.75.75 0 101.06 1.06l3.735-3.735c.44-.439.44-1.151 0-1.59L19.78 14.72a.75.75 0 00-1.06 1.06l2.72 2.72H10.5a8 8 0 01-8-8z\"></path>" } };
|
|
1446
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
1447
|
+
}
|
|
1448
|
+
|
|
1449
|
+
IterationsIcon.defaultProps = {
|
|
1450
|
+
className: 'octicon octicon-iterations',
|
|
1451
|
+
size: 16,
|
|
1452
|
+
verticalAlign: 'text-bottom'
|
|
1453
|
+
};
|
|
1454
|
+
|
|
1422
1455
|
function KebabHorizontalIcon(props) {
|
|
1423
1456
|
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M8 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zM1.5 9a1.5 1.5 0 100-3 1.5 1.5 0 000 3zm13 0a1.5 1.5 0 100-3 1.5 1.5 0 000 3z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M6 12a2 2 0 11-4 0 2 2 0 014 0zm8 0a2 2 0 11-4 0 2 2 0 014 0zm6 2a2 2 0 100-4 2 2 0 000 4z\"></path>" } };
|
|
1424
1457
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
@@ -1695,7 +1728,7 @@
|
|
|
1695
1728
|
};
|
|
1696
1729
|
|
|
1697
1730
|
function NoEntryIcon(props) {
|
|
1698
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path
|
|
1731
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M4.25 7.25a.75.75 0 000 1.5h7.5a.75.75 0 000-1.5h-7.5z\"></path><path fill-rule=\"evenodd\" d=\"M16 8A8 8 0 110 8a8 8 0 0116 0zm-1.5 0a6.5 6.5 0 11-13 0 6.5 6.5 0 0113 0z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M2.5 12a9.5 9.5 0 1119 0 9.5 9.5 0 01-19 0zM12 1C5.925 1 1 5.925 1 12s4.925 11 11 11 11-4.925 11-11S18.075 1 12 1zm6.25 11.75a.75.75 0 000-1.5H5.75a.75.75 0 000 1.5h12.5z\"></path>" } };
|
|
1699
1732
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
1700
1733
|
}
|
|
1701
1734
|
|
|
@@ -1705,6 +1738,17 @@
|
|
|
1705
1738
|
verticalAlign: 'text-bottom'
|
|
1706
1739
|
};
|
|
1707
1740
|
|
|
1741
|
+
function NoEntryFillIcon(props) {
|
|
1742
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M6 0a6 6 0 100 12A6 6 0 006 0zm3 5H3v2h6V5z\"></path>" } };
|
|
1743
|
+
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
1744
|
+
}
|
|
1745
|
+
|
|
1746
|
+
NoEntryFillIcon.defaultProps = {
|
|
1747
|
+
className: 'octicon octicon-no-entry-fill',
|
|
1748
|
+
size: 16,
|
|
1749
|
+
verticalAlign: 'text-bottom'
|
|
1750
|
+
};
|
|
1751
|
+
|
|
1708
1752
|
function NorthStarIcon(props) {
|
|
1709
1753
|
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M8.5.75a.75.75 0 00-1.5 0v5.19L4.391 3.33a.75.75 0 10-1.06 1.061L5.939 7H.75a.75.75 0 000 1.5h5.19l-2.61 2.609a.75.75 0 101.061 1.06L7 9.561v5.189a.75.75 0 001.5 0V9.56l2.609 2.61a.75.75 0 101.06-1.061L9.561 8.5h5.189a.75.75 0 000-1.5H9.56l2.61-2.609a.75.75 0 00-1.061-1.06L8.5 5.939V.75z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M12.5 1.25a.75.75 0 00-1.5 0v8.69L6.447 5.385a.75.75 0 10-1.061 1.06L9.94 11H1.25a.75.75 0 000 1.5h8.69l-4.554 4.553a.75.75 0 001.06 1.061L11 13.561v8.689a.75.75 0 001.5 0v-8.69l4.553 4.554a.75.75 0 001.061-1.06L13.561 12.5h8.689a.75.75 0 000-1.5h-8.69l4.554-4.553a.75.75 0 10-1.06-1.061L12.5 9.939V1.25z\"></path>" } };
|
|
1710
1754
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
@@ -2134,17 +2178,6 @@
|
|
|
2134
2178
|
verticalAlign: 'text-bottom'
|
|
2135
2179
|
};
|
|
2136
2180
|
|
|
2137
|
-
function SelectSingleIcon(props) {
|
|
2138
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z\"></path><path fill-rule=\"evenodd\" d=\"M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 15H2.75A1.75 1.75 0 011 13.25V2.75zm1.75-.25a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V2.75a.25.25 0 00-.25-.25H2.75z\"></path>" } };
|
|
2139
|
-
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
2140
|
-
}
|
|
2141
|
-
|
|
2142
|
-
SelectSingleIcon.defaultProps = {
|
|
2143
|
-
className: 'octicon octicon-select-single',
|
|
2144
|
-
size: 16,
|
|
2145
|
-
verticalAlign: 'text-bottom'
|
|
2146
|
-
};
|
|
2147
|
-
|
|
2148
2181
|
function ServerIcon(props) {
|
|
2149
2182
|
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M1.75 1A1.75 1.75 0 000 2.75v4c0 .372.116.717.314 1a1.742 1.742 0 00-.314 1v4c0 .966.784 1.75 1.75 1.75h12.5A1.75 1.75 0 0016 12.75v-4c0-.372-.116-.717-.314-1 .198-.283.314-.628.314-1v-4A1.75 1.75 0 0014.25 1H1.75zm0 7.5a.25.25 0 00-.25.25v4c0 .138.112.25.25.25h12.5a.25.25 0 00.25-.25v-4a.25.25 0 00-.25-.25H1.75zM1.5 2.75a.25.25 0 01.25-.25h12.5a.25.25 0 01.25.25v4a.25.25 0 01-.25.25H1.75a.25.25 0 01-.25-.25v-4zm5.5 2A.75.75 0 017.75 4h4.5a.75.75 0 010 1.5h-4.5A.75.75 0 017 4.75zM7.75 10a.75.75 0 000 1.5h4.5a.75.75 0 000-1.5h-4.5zM3 4.75A.75.75 0 013.75 4h.5a.75.75 0 010 1.5h-.5A.75.75 0 013 4.75zM3.75 10a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M10.75 6.5a.75.75 0 000 1.5h6.5a.75.75 0 000-1.5h-6.5zM6 7.25a.75.75 0 01.75-.75h.5a.75.75 0 010 1.5h-.5A.75.75 0 016 7.25zm4 9a.75.75 0 01.75-.75h6.5a.75.75 0 010 1.5h-6.5a.75.75 0 01-.75-.75zm-3.25-.75a.75.75 0 000 1.5h.5a.75.75 0 000-1.5h-.5z\"></path><path fill-rule=\"evenodd\" d=\"M3.25 2A1.75 1.75 0 001.5 3.75v7c0 .372.116.716.314 1a1.742 1.742 0 00-.314 1v7c0 .966.784 1.75 1.75 1.75h17.5a1.75 1.75 0 001.75-1.75v-7c0-.372-.116-.716-.314-1 .198-.284.314-.628.314-1v-7A1.75 1.75 0 0020.75 2H3.25zm0 9h17.5a.25.25 0 00.25-.25v-7a.25.25 0 00-.25-.25H3.25a.25.25 0 00-.25.25v7c0 .138.112.25.25.25zm0 1.5a.25.25 0 00-.25.25v7c0 .138.112.25.25.25h17.5a.25.25 0 00.25-.25v-7a.25.25 0 00-.25-.25H3.25z\"></path>" } };
|
|
2150
2183
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
@@ -2267,7 +2300,7 @@
|
|
|
2267
2300
|
};
|
|
2268
2301
|
|
|
2269
2302
|
function SingleSelectIcon(props) {
|
|
2270
|
-
var svgDataByHeight = { "24": { "width": 24, "path": "<path d=\"M7.854 10.854l3.792 3.792a.5.5 0 00.708 0l3.793-3.792a.5.5 0 00-.354-.854H8.207a.5.5 0 00-.353.854z\"></path><path fill-rule=\"evenodd\" d=\"M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0120.25 22H3.75A1.75 1.75 0 012 20.25V3.75zm1.75-.25a.25.25 0 00-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 00.25-.25V3.75a.25.25 0 00-.25-.25H3.75z\"></path>" } };
|
|
2303
|
+
var svgDataByHeight = { "16": { "width": 16, "path": "<path d=\"M5.06 7.356l2.795 2.833c.08.081.21.081.29 0l2.794-2.833c.13-.131.038-.356-.145-.356H5.206c-.183 0-.275.225-.145.356z\"></path><path fill-rule=\"evenodd\" d=\"M1 2.75C1 1.784 1.784 1 2.75 1h10.5c.966 0 1.75.784 1.75 1.75v10.5A1.75 1.75 0 0113.25 15H2.75A1.75 1.75 0 011 13.25V2.75zm1.75-.25a.25.25 0 00-.25.25v10.5c0 .138.112.25.25.25h10.5a.25.25 0 00.25-.25V2.75a.25.25 0 00-.25-.25H2.75z\"></path>" }, "24": { "width": 24, "path": "<path d=\"M7.854 10.854l3.792 3.792a.5.5 0 00.708 0l3.793-3.792a.5.5 0 00-.354-.854H8.207a.5.5 0 00-.353.854z\"></path><path fill-rule=\"evenodd\" d=\"M2 3.75C2 2.784 2.784 2 3.75 2h16.5c.966 0 1.75.784 1.75 1.75v16.5A1.75 1.75 0 0120.25 22H3.75A1.75 1.75 0 012 20.25V3.75zm1.75-.25a.25.25 0 00-.25.25v16.5c0 .138.112.25.25.25h16.5a.25.25 0 00.25-.25V3.75a.25.25 0 00-.25-.25H3.75z\"></path>" } };
|
|
2271
2304
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
2272
2305
|
}
|
|
2273
2306
|
|
|
@@ -2751,7 +2784,7 @@
|
|
|
2751
2784
|
};
|
|
2752
2785
|
|
|
2753
2786
|
function XCircleFillIcon(props) {
|
|
2754
|
-
var svgDataByHeight = { "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M2.343 13.657A8 8 0 1113.657 2.343 8 8 0 012.343 13.657zM6.03 4.97a.75.75 0 00-1.06 1.06L6.94 8 4.97 9.97a.75.75 0 101.06 1.06L8 9.06l1.97 1.97a.75.75 0 101.06-1.06L9.06 8l1.97-1.97a.75.75 0 10-1.06-1.06L8 6.94 6.03 4.97z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm8.036-4.024a.75.75 0 00-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 101.06 1.06L12 13.06l2.963 2.964a.75.75 0 001.061-1.06L13.061 12l2.963-2.964a.75.75 0 10-1.06-1.06L12 10.939 9.036 7.976z\"></path>" } };
|
|
2787
|
+
var svgDataByHeight = { "12": { "width": 12, "path": "<path fill-rule=\"evenodd\" d=\"M1.757 10.243a6 6 0 118.486-8.486 6 6 0 01-8.486 8.486zM6 4.763l-2-2L2.763 4l2 2-2 2L4 9.237l2-2 2 2L9.237 8l-2-2 2-2L8 2.763l-2 2z\"></path>" }, "16": { "width": 16, "path": "<path fill-rule=\"evenodd\" d=\"M2.343 13.657A8 8 0 1113.657 2.343 8 8 0 012.343 13.657zM6.03 4.97a.75.75 0 00-1.06 1.06L6.94 8 4.97 9.97a.75.75 0 101.06 1.06L8 9.06l1.97 1.97a.75.75 0 101.06-1.06L9.06 8l1.97-1.97a.75.75 0 10-1.06-1.06L8 6.94 6.03 4.97z\"></path>" }, "24": { "width": 24, "path": "<path fill-rule=\"evenodd\" d=\"M1 12C1 5.925 5.925 1 12 1s11 4.925 11 11-4.925 11-11 11S1 18.075 1 12zm8.036-4.024a.75.75 0 00-1.06 1.06L10.939 12l-2.963 2.963a.75.75 0 101.06 1.06L12 13.06l2.963 2.964a.75.75 0 001.061-1.06L13.061 12l2.963-2.964a.75.75 0 10-1.06-1.06L12 10.939 9.036 7.976z\"></path>" } };
|
|
2755
2788
|
return React.createElement('svg', getSvgProps(_extends({}, props, { svgDataByHeight: svgDataByHeight })));
|
|
2756
2789
|
}
|
|
2757
2790
|
|
|
@@ -2786,6 +2819,10 @@
|
|
|
2786
2819
|
|
|
2787
2820
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
2788
2821
|
|
|
2822
|
+
var StyledAlertFillIcon = styled(AlertFillIcon)(COMMON, sx);
|
|
2823
|
+
|
|
2824
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
2825
|
+
|
|
2789
2826
|
var StyledArchiveIcon = styled(ArchiveIcon)(COMMON, sx);
|
|
2790
2827
|
|
|
2791
2828
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
@@ -2942,6 +2979,10 @@
|
|
|
2942
2979
|
|
|
2943
2980
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
2944
2981
|
|
|
2982
|
+
var StyledCodeOfConductIcon = styled(CodeOfConductIcon)(COMMON, sx);
|
|
2983
|
+
|
|
2984
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
2985
|
+
|
|
2945
2986
|
var StyledCodeReviewIcon = styled(CodeReviewIcon)(COMMON, sx);
|
|
2946
2987
|
|
|
2947
2988
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
@@ -3274,6 +3315,10 @@
|
|
|
3274
3315
|
|
|
3275
3316
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3276
3317
|
|
|
3318
|
+
var StyledIterationsIcon = styled(IterationsIcon)(COMMON, sx);
|
|
3319
|
+
|
|
3320
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3321
|
+
|
|
3277
3322
|
var StyledKebabHorizontalIcon = styled(KebabHorizontalIcon)(COMMON, sx);
|
|
3278
3323
|
|
|
3279
3324
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
@@ -3378,6 +3423,10 @@
|
|
|
3378
3423
|
|
|
3379
3424
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3380
3425
|
|
|
3426
|
+
var StyledNoEntryFillIcon = styled(NoEntryFillIcon)(COMMON, sx);
|
|
3427
|
+
|
|
3428
|
+
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3429
|
+
|
|
3381
3430
|
var StyledNorthStarIcon = styled(NorthStarIcon)(COMMON, sx);
|
|
3382
3431
|
|
|
3383
3432
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
@@ -3534,10 +3583,6 @@
|
|
|
3534
3583
|
|
|
3535
3584
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3536
3585
|
|
|
3537
|
-
var StyledSelectSingleIcon = styled(SelectSingleIcon)(COMMON, sx);
|
|
3538
|
-
|
|
3539
|
-
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
3540
|
-
|
|
3541
3586
|
var StyledServerIcon = styled(ServerIcon)(COMMON, sx);
|
|
3542
3587
|
|
|
3543
3588
|
/* THIS FILE IS GENERATED. DO NOT EDIT IT. */
|
|
@@ -3765,6 +3810,7 @@
|
|
|
3765
3810
|
var StyledZapIcon = styled(ZapIcon)(COMMON, sx);
|
|
3766
3811
|
|
|
3767
3812
|
exports.AlertIcon = StyledAlertIcon;
|
|
3813
|
+
exports.AlertFillIcon = StyledAlertFillIcon;
|
|
3768
3814
|
exports.ArchiveIcon = StyledArchiveIcon;
|
|
3769
3815
|
exports.ArrowBothIcon = StyledArrowBothIcon;
|
|
3770
3816
|
exports.ArrowDownIcon = StyledArrowDownIcon;
|
|
@@ -3804,6 +3850,7 @@
|
|
|
3804
3850
|
exports.CircleSlashIcon = StyledCircleSlashIcon;
|
|
3805
3851
|
exports.ClockIcon = StyledClockIcon;
|
|
3806
3852
|
exports.CodeIcon = StyledCodeIcon;
|
|
3853
|
+
exports.CodeOfConductIcon = StyledCodeOfConductIcon;
|
|
3807
3854
|
exports.CodeReviewIcon = StyledCodeReviewIcon;
|
|
3808
3855
|
exports.CodeSquareIcon = StyledCodeSquareIcon;
|
|
3809
3856
|
exports.CodescanIcon = StyledCodescanIcon;
|
|
@@ -3887,6 +3934,7 @@
|
|
|
3887
3934
|
exports.IssueOpenedIcon = StyledIssueOpenedIcon;
|
|
3888
3935
|
exports.IssueReopenedIcon = StyledIssueReopenedIcon;
|
|
3889
3936
|
exports.ItalicIcon = StyledItalicIcon;
|
|
3937
|
+
exports.IterationsIcon = StyledIterationsIcon;
|
|
3890
3938
|
exports.KebabHorizontalIcon = StyledKebabHorizontalIcon;
|
|
3891
3939
|
exports.KeyIcon = StyledKeyIcon;
|
|
3892
3940
|
exports.KeyAsteriskIcon = StyledKeyAsteriskIcon;
|
|
@@ -3913,6 +3961,7 @@
|
|
|
3913
3961
|
exports.MultiSelectIcon = StyledMultiSelectIcon;
|
|
3914
3962
|
exports.MuteIcon = StyledMuteIcon;
|
|
3915
3963
|
exports.NoEntryIcon = StyledNoEntryIcon;
|
|
3964
|
+
exports.NoEntryFillIcon = StyledNoEntryFillIcon;
|
|
3916
3965
|
exports.NorthStarIcon = StyledNorthStarIcon;
|
|
3917
3966
|
exports.NoteIcon = StyledNoteIcon;
|
|
3918
3967
|
exports.NumberIcon = StyledNumberIcon;
|
|
@@ -3952,7 +4001,6 @@
|
|
|
3952
4001
|
exports.ScreenFullIcon = StyledScreenFullIcon;
|
|
3953
4002
|
exports.ScreenNormalIcon = StyledScreenNormalIcon;
|
|
3954
4003
|
exports.SearchIcon = StyledSearchIcon;
|
|
3955
|
-
exports.SelectSingleIcon = StyledSelectSingleIcon;
|
|
3956
4004
|
exports.ServerIcon = StyledServerIcon;
|
|
3957
4005
|
exports.ShareIcon = StyledShareIcon;
|
|
3958
4006
|
exports.ShareAndroidIcon = StyledShareAndroidIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@primer/styled-octicons",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.2.0",
|
|
4
4
|
"description": "A scalable set of icons handcrafted with <3 by GitHub.",
|
|
5
5
|
"homepage": "https://primer.style/octicons",
|
|
6
6
|
"author": "GitHub, Inc.",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"fs-extra": "^6.0.1",
|
|
57
57
|
"jest": "^23.2.0",
|
|
58
58
|
"jest-styled-components": "^7.0.2",
|
|
59
|
-
"next": "^
|
|
59
|
+
"next": "^11.1.0",
|
|
60
60
|
"react": "^16.4.0",
|
|
61
61
|
"react-dom": "^16.4.1",
|
|
62
62
|
"rollup": "^0.62.0",
|