@codecademy/gamut-patterns 0.8.12-alpha.4d61d4.0 → 0.8.12-alpha.7557c8.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/patterns/CheckerDense.js +30 -60
- package/dist/patterns/CheckerLoose.js +30 -60
- package/dist/patterns/CheckerRegular.js +30 -60
- package/dist/patterns/DiagonalADense.js +64 -118
- package/dist/patterns/DiagonalALoose.js +208 -358
- package/dist/patterns/DiagonalARegular.js +112 -198
- package/dist/patterns/DiagonalBDense.js +46 -88
- package/dist/patterns/DiagonalBLoose.js +114 -200
- package/dist/patterns/DiagonalBRegular.js +70 -128
- package/dist/patterns/DotDense.js +25 -51
- package/dist/patterns/DotLoose.js +68 -126
- package/dist/patterns/DotRegular.js +25 -51
- package/dist/patterns/ExDense.js +47 -89
- package/dist/patterns/ExLoose.js +47 -89
- package/dist/patterns/ExRegular.js +47 -89
- package/dist/patterns/FlowerDense.js +41 -79
- package/dist/patterns/FlowerLoose.js +41 -79
- package/dist/patterns/FlowerRegular.js +41 -79
- package/dist/patterns/GridDense.js +40 -78
- package/dist/patterns/GridLoose.js +40 -78
- package/dist/patterns/GridRegular.js +40 -78
- package/dist/patterns/Herringbone.js +58 -108
- package/dist/patterns/RainDense.js +30 -60
- package/dist/patterns/RainLoose.js +30 -60
- package/dist/patterns/RainRegular.js +30 -60
- package/dist/patterns/StripeDense.js +62 -116
- package/dist/patterns/StripeLoose.js +194 -344
- package/dist/patterns/StripeRegular.js +106 -192
- package/dist/props.d.ts +3 -3
- package/dist/types.js +0 -1
- package/dist/usePatternId.js +2 -2
- package/package.json +7 -4
- package/.svgo.yml +0 -11
- package/CHANGELOG.md +0 -420
- package/babel.config.js +0 -12
- package/emotion-plugin.js +0 -46
- package/index-template.js +0 -10
- package/pattern-template.js +0 -30
- package/project.json +0 -33
- package/svgr.config.js +0 -29
- package/tsconfig.json +0 -15
|
@@ -1,77 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
var _excluded = ["title", "titleId"];
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
2
|
|
|
4
|
-
var
|
|
5
|
-
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import "core-js/modules/es.object.assign.js";
|
|
8
7
|
import * as React from 'react';
|
|
9
8
|
import { Svg } from '../props';
|
|
10
9
|
import { usePatternId } from '../usePatternId';
|
|
11
|
-
import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
|
|
12
10
|
export var CheckerDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
13
11
|
var _ref$title = _ref.title,
|
|
14
12
|
title = _ref$title === void 0 ? 'Checker Dense' : _ref$title,
|
|
15
13
|
titleId = _ref.titleId,
|
|
16
|
-
props =
|
|
14
|
+
props = _objectWithoutProperties(_ref, ["title", "titleId"]);
|
|
17
15
|
|
|
18
16
|
var patternId = usePatternId('CheckerDense');
|
|
19
|
-
return /*#__PURE__*/
|
|
17
|
+
return /*#__PURE__*/React.createElement(Svg, _extends({
|
|
20
18
|
fill: "currentColor",
|
|
21
19
|
role: "img",
|
|
22
20
|
"aria-hidden": "true",
|
|
23
21
|
ref: svgRef,
|
|
24
22
|
"aria-labelledby": titleId
|
|
25
|
-
}, props, {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
x: 2,
|
|
50
|
-
y: 2,
|
|
51
|
-
width: 1,
|
|
52
|
-
height: 1,
|
|
53
|
-
fill: "currentColor"
|
|
54
|
-
}, void 0, false, {
|
|
55
|
-
fileName: _jsxFileName,
|
|
56
|
-
lineNumber: 26,
|
|
57
|
-
columnNumber: 11
|
|
58
|
-
}, _this)]
|
|
59
|
-
}, void 0, true, {
|
|
60
|
-
fileName: _jsxFileName,
|
|
61
|
-
lineNumber: 17,
|
|
62
|
-
columnNumber: 9
|
|
63
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
64
|
-
width: "100%",
|
|
65
|
-
height: "100%",
|
|
66
|
-
fill: "url(#" + patternId + ")"
|
|
67
|
-
}, void 0, false, {
|
|
68
|
-
fileName: _jsxFileName,
|
|
69
|
-
lineNumber: 28,
|
|
70
|
-
columnNumber: 9
|
|
71
|
-
}, _this)]
|
|
72
|
-
}), void 0, true, {
|
|
73
|
-
fileName: _jsxFileName,
|
|
74
|
-
lineNumber: 8,
|
|
75
|
-
columnNumber: 7
|
|
76
|
-
}, _this);
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("pattern", {
|
|
26
|
+
id: patternId,
|
|
27
|
+
x: 0,
|
|
28
|
+
y: 0,
|
|
29
|
+
width: 4,
|
|
30
|
+
height: 4,
|
|
31
|
+
patternUnits: "userSpaceOnUse"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
33
|
+
width: 1,
|
|
34
|
+
height: 1,
|
|
35
|
+
fill: "currentColor"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
37
|
+
x: 2,
|
|
38
|
+
y: 2,
|
|
39
|
+
width: 1,
|
|
40
|
+
height: 1,
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
43
|
+
width: "100%",
|
|
44
|
+
height: "100%",
|
|
45
|
+
fill: "url(#".concat(patternId, ")")
|
|
46
|
+
}));
|
|
77
47
|
});
|
|
@@ -1,77 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
var _excluded = ["title", "titleId"];
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
2
|
|
|
4
|
-
var
|
|
5
|
-
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import "core-js/modules/es.object.assign.js";
|
|
8
7
|
import * as React from 'react';
|
|
9
8
|
import { Svg } from '../props';
|
|
10
9
|
import { usePatternId } from '../usePatternId';
|
|
11
|
-
import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
|
|
12
10
|
export var CheckerLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
13
11
|
var _ref$title = _ref.title,
|
|
14
12
|
title = _ref$title === void 0 ? 'Checker Loose' : _ref$title,
|
|
15
13
|
titleId = _ref.titleId,
|
|
16
|
-
props =
|
|
14
|
+
props = _objectWithoutProperties(_ref, ["title", "titleId"]);
|
|
17
15
|
|
|
18
16
|
var patternId = usePatternId('CheckerLoose');
|
|
19
|
-
return /*#__PURE__*/
|
|
17
|
+
return /*#__PURE__*/React.createElement(Svg, _extends({
|
|
20
18
|
fill: "currentColor",
|
|
21
19
|
role: "img",
|
|
22
20
|
"aria-hidden": "true",
|
|
23
21
|
ref: svgRef,
|
|
24
22
|
"aria-labelledby": titleId
|
|
25
|
-
}, props, {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
x: 8,
|
|
50
|
-
y: 8,
|
|
51
|
-
width: 1,
|
|
52
|
-
height: 1,
|
|
53
|
-
fill: "currentColor"
|
|
54
|
-
}, void 0, false, {
|
|
55
|
-
fileName: _jsxFileName,
|
|
56
|
-
lineNumber: 26,
|
|
57
|
-
columnNumber: 11
|
|
58
|
-
}, _this)]
|
|
59
|
-
}, void 0, true, {
|
|
60
|
-
fileName: _jsxFileName,
|
|
61
|
-
lineNumber: 17,
|
|
62
|
-
columnNumber: 9
|
|
63
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
64
|
-
width: "100%",
|
|
65
|
-
height: "100%",
|
|
66
|
-
fill: "url(#" + patternId + ")"
|
|
67
|
-
}, void 0, false, {
|
|
68
|
-
fileName: _jsxFileName,
|
|
69
|
-
lineNumber: 28,
|
|
70
|
-
columnNumber: 9
|
|
71
|
-
}, _this)]
|
|
72
|
-
}), void 0, true, {
|
|
73
|
-
fileName: _jsxFileName,
|
|
74
|
-
lineNumber: 8,
|
|
75
|
-
columnNumber: 7
|
|
76
|
-
}, _this);
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("pattern", {
|
|
26
|
+
id: patternId,
|
|
27
|
+
x: 0,
|
|
28
|
+
y: 0,
|
|
29
|
+
width: 16,
|
|
30
|
+
height: 16,
|
|
31
|
+
patternUnits: "userSpaceOnUse"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
33
|
+
width: 1,
|
|
34
|
+
height: 1,
|
|
35
|
+
fill: "currentColor"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
37
|
+
x: 8,
|
|
38
|
+
y: 8,
|
|
39
|
+
width: 1,
|
|
40
|
+
height: 1,
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
43
|
+
width: "100%",
|
|
44
|
+
height: "100%",
|
|
45
|
+
fill: "url(#".concat(patternId, ")")
|
|
46
|
+
}));
|
|
77
47
|
});
|
|
@@ -1,77 +1,47 @@
|
|
|
1
|
-
|
|
2
|
-
var _excluded = ["title", "titleId"];
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
2
|
|
|
4
|
-
var
|
|
5
|
-
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import "core-js/modules/es.object.assign.js";
|
|
8
7
|
import * as React from 'react';
|
|
9
8
|
import { Svg } from '../props';
|
|
10
9
|
import { usePatternId } from '../usePatternId';
|
|
11
|
-
import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
|
|
12
10
|
export var CheckerRegular = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
13
11
|
var _ref$title = _ref.title,
|
|
14
12
|
title = _ref$title === void 0 ? 'Checker Regular' : _ref$title,
|
|
15
13
|
titleId = _ref.titleId,
|
|
16
|
-
props =
|
|
14
|
+
props = _objectWithoutProperties(_ref, ["title", "titleId"]);
|
|
17
15
|
|
|
18
16
|
var patternId = usePatternId('CheckerRegular');
|
|
19
|
-
return /*#__PURE__*/
|
|
17
|
+
return /*#__PURE__*/React.createElement(Svg, _extends({
|
|
20
18
|
fill: "currentColor",
|
|
21
19
|
role: "img",
|
|
22
20
|
"aria-hidden": "true",
|
|
23
21
|
ref: svgRef,
|
|
24
22
|
"aria-labelledby": titleId
|
|
25
|
-
}, props, {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
x: 4,
|
|
50
|
-
y: 4,
|
|
51
|
-
width: 1,
|
|
52
|
-
height: 1,
|
|
53
|
-
fill: "currentColor"
|
|
54
|
-
}, void 0, false, {
|
|
55
|
-
fileName: _jsxFileName,
|
|
56
|
-
lineNumber: 26,
|
|
57
|
-
columnNumber: 11
|
|
58
|
-
}, _this)]
|
|
59
|
-
}, void 0, true, {
|
|
60
|
-
fileName: _jsxFileName,
|
|
61
|
-
lineNumber: 17,
|
|
62
|
-
columnNumber: 9
|
|
63
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
64
|
-
width: "100%",
|
|
65
|
-
height: "100%",
|
|
66
|
-
fill: "url(#" + patternId + ")"
|
|
67
|
-
}, void 0, false, {
|
|
68
|
-
fileName: _jsxFileName,
|
|
69
|
-
lineNumber: 28,
|
|
70
|
-
columnNumber: 9
|
|
71
|
-
}, _this)]
|
|
72
|
-
}), void 0, true, {
|
|
73
|
-
fileName: _jsxFileName,
|
|
74
|
-
lineNumber: 8,
|
|
75
|
-
columnNumber: 7
|
|
76
|
-
}, _this);
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("pattern", {
|
|
26
|
+
id: patternId,
|
|
27
|
+
x: 0,
|
|
28
|
+
y: 0,
|
|
29
|
+
width: 8,
|
|
30
|
+
height: 8,
|
|
31
|
+
patternUnits: "userSpaceOnUse"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
33
|
+
width: 1,
|
|
34
|
+
height: 1,
|
|
35
|
+
fill: "currentColor"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
37
|
+
x: 4,
|
|
38
|
+
y: 4,
|
|
39
|
+
width: 1,
|
|
40
|
+
height: 1,
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
43
|
+
width: "100%",
|
|
44
|
+
height: "100%",
|
|
45
|
+
fill: "url(#".concat(patternId, ")")
|
|
46
|
+
}));
|
|
77
47
|
});
|
|
@@ -1,135 +1,81 @@
|
|
|
1
|
-
|
|
2
|
-
var _excluded = ["title", "titleId"];
|
|
1
|
+
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
3
2
|
|
|
4
|
-
var
|
|
5
|
-
|
|
3
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
4
|
+
|
|
5
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
6
6
|
|
|
7
|
-
import "core-js/modules/es.object.assign.js";
|
|
8
7
|
import * as React from 'react';
|
|
9
8
|
import { Svg } from '../props';
|
|
10
9
|
import { usePatternId } from '../usePatternId';
|
|
11
|
-
import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
|
|
12
10
|
export var DiagonalADense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
13
11
|
var _ref$title = _ref.title,
|
|
14
12
|
title = _ref$title === void 0 ? 'Diagonal A Dense' : _ref$title,
|
|
15
13
|
titleId = _ref.titleId,
|
|
16
|
-
props =
|
|
14
|
+
props = _objectWithoutProperties(_ref, ["title", "titleId"]);
|
|
17
15
|
|
|
18
16
|
var patternId = usePatternId('DiagonalADense');
|
|
19
|
-
return /*#__PURE__*/
|
|
17
|
+
return /*#__PURE__*/React.createElement(Svg, _extends({
|
|
20
18
|
fill: "currentColor",
|
|
21
19
|
role: "img",
|
|
22
20
|
"aria-hidden": "true",
|
|
23
21
|
ref: svgRef,
|
|
24
22
|
"aria-labelledby": titleId
|
|
25
|
-
}, props, {
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
}, void 0, false, {
|
|
84
|
-
fileName: _jsxFileName,
|
|
85
|
-
lineNumber: 29,
|
|
86
|
-
columnNumber: 11
|
|
87
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
88
|
-
x: 3,
|
|
89
|
-
width: 1,
|
|
90
|
-
height: 1,
|
|
91
|
-
fill: "currentColor"
|
|
92
|
-
}, void 0, false, {
|
|
93
|
-
fileName: _jsxFileName,
|
|
94
|
-
lineNumber: 30,
|
|
95
|
-
columnNumber: 11
|
|
96
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
97
|
-
x: 3,
|
|
98
|
-
y: 1,
|
|
99
|
-
width: 1,
|
|
100
|
-
height: 1,
|
|
101
|
-
fill: "currentColor"
|
|
102
|
-
}, void 0, false, {
|
|
103
|
-
fileName: _jsxFileName,
|
|
104
|
-
lineNumber: 31,
|
|
105
|
-
columnNumber: 11
|
|
106
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
107
|
-
x: 2,
|
|
108
|
-
y: 1,
|
|
109
|
-
width: 1,
|
|
110
|
-
height: 1,
|
|
111
|
-
fill: "currentColor"
|
|
112
|
-
}, void 0, false, {
|
|
113
|
-
fileName: _jsxFileName,
|
|
114
|
-
lineNumber: 32,
|
|
115
|
-
columnNumber: 11
|
|
116
|
-
}, _this)]
|
|
117
|
-
}, void 0, true, {
|
|
118
|
-
fileName: _jsxFileName,
|
|
119
|
-
lineNumber: 17,
|
|
120
|
-
columnNumber: 9
|
|
121
|
-
}, _this), /*#__PURE__*/_jsxDEV("rect", {
|
|
122
|
-
width: "100%",
|
|
123
|
-
height: "100%",
|
|
124
|
-
fill: "url(#" + patternId + ")"
|
|
125
|
-
}, void 0, false, {
|
|
126
|
-
fileName: _jsxFileName,
|
|
127
|
-
lineNumber: 34,
|
|
128
|
-
columnNumber: 9
|
|
129
|
-
}, _this)]
|
|
130
|
-
}), void 0, true, {
|
|
131
|
-
fileName: _jsxFileName,
|
|
132
|
-
lineNumber: 8,
|
|
133
|
-
columnNumber: 7
|
|
134
|
-
}, _this);
|
|
23
|
+
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
24
|
+
id: titleId
|
|
25
|
+
}, title) : null, /*#__PURE__*/React.createElement("pattern", {
|
|
26
|
+
id: patternId,
|
|
27
|
+
x: 0,
|
|
28
|
+
y: 0,
|
|
29
|
+
width: 4,
|
|
30
|
+
height: 4,
|
|
31
|
+
patternUnits: "userSpaceOnUse"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
33
|
+
width: 1,
|
|
34
|
+
height: 1,
|
|
35
|
+
fill: "currentColor"
|
|
36
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
37
|
+
x: 2,
|
|
38
|
+
y: 2,
|
|
39
|
+
width: 1,
|
|
40
|
+
height: 1,
|
|
41
|
+
fill: "currentColor"
|
|
42
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
43
|
+
x: 1,
|
|
44
|
+
y: 2,
|
|
45
|
+
width: 1,
|
|
46
|
+
height: 1,
|
|
47
|
+
fill: "currentColor"
|
|
48
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
49
|
+
x: 1,
|
|
50
|
+
y: 3,
|
|
51
|
+
width: 1,
|
|
52
|
+
height: 1,
|
|
53
|
+
fill: "currentColor"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
55
|
+
y: 3,
|
|
56
|
+
width: 1,
|
|
57
|
+
height: 1,
|
|
58
|
+
fill: "currentColor"
|
|
59
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
60
|
+
x: 3,
|
|
61
|
+
width: 1,
|
|
62
|
+
height: 1,
|
|
63
|
+
fill: "currentColor"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
65
|
+
x: 3,
|
|
66
|
+
y: 1,
|
|
67
|
+
width: 1,
|
|
68
|
+
height: 1,
|
|
69
|
+
fill: "currentColor"
|
|
70
|
+
}), /*#__PURE__*/React.createElement("rect", {
|
|
71
|
+
x: 2,
|
|
72
|
+
y: 1,
|
|
73
|
+
width: 1,
|
|
74
|
+
height: 1,
|
|
75
|
+
fill: "currentColor"
|
|
76
|
+
})), /*#__PURE__*/React.createElement("rect", {
|
|
77
|
+
width: "100%",
|
|
78
|
+
height: "100%",
|
|
79
|
+
fill: "url(#".concat(patternId, ")")
|
|
80
|
+
}));
|
|
135
81
|
});
|