@codecademy/gamut-patterns 1.0.0-alpha.c1f572.0 → 1.0.0-alpha.c56b1c.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.
Files changed (175) hide show
  1. package/LICENSE +1 -1
  2. package/dist/index.d.ts +1 -10
  3. package/dist/index.js +1 -10
  4. package/dist/patterns/CheckerDense.d.ts +3 -0
  5. package/dist/patterns/CheckerDense.js +54 -0
  6. package/dist/patterns/CheckerLoose.d.ts +3 -0
  7. package/dist/patterns/CheckerLoose.js +54 -0
  8. package/dist/patterns/CheckerRegular.d.ts +3 -0
  9. package/dist/patterns/CheckerRegular.js +54 -0
  10. package/dist/patterns/DiagonalADense.d.ts +3 -0
  11. package/dist/patterns/DiagonalADense.js +88 -0
  12. package/dist/patterns/DiagonalALoose.d.ts +3 -0
  13. package/dist/patterns/DiagonalALoose.js +232 -0
  14. package/dist/patterns/DiagonalARegular.d.ts +3 -0
  15. package/dist/patterns/DiagonalARegular.js +136 -0
  16. package/dist/patterns/DiagonalBDense.d.ts +3 -0
  17. package/dist/patterns/DiagonalBDense.js +70 -0
  18. package/dist/patterns/DiagonalBLoose.d.ts +3 -0
  19. package/dist/patterns/DiagonalBLoose.js +138 -0
  20. package/dist/patterns/DiagonalBRegular.d.ts +3 -0
  21. package/dist/patterns/DiagonalBRegular.js +94 -0
  22. package/dist/patterns/DotDense.d.ts +3 -0
  23. package/dist/patterns/DotDense.js +49 -0
  24. package/dist/patterns/DotLoose.d.ts +3 -0
  25. package/dist/patterns/DotLoose.js +92 -0
  26. package/dist/patterns/DotRegular.d.ts +3 -0
  27. package/dist/patterns/DotRegular.js +49 -0
  28. package/dist/patterns/ExDense.d.ts +3 -0
  29. package/dist/patterns/ExDense.js +71 -0
  30. package/dist/patterns/ExLoose.d.ts +3 -0
  31. package/dist/patterns/ExLoose.js +71 -0
  32. package/dist/patterns/ExRegular.d.ts +3 -0
  33. package/dist/patterns/ExRegular.js +71 -0
  34. package/dist/patterns/FlowerDense.d.ts +3 -0
  35. package/dist/patterns/FlowerDense.js +65 -0
  36. package/dist/patterns/FlowerLoose.d.ts +3 -0
  37. package/dist/patterns/FlowerLoose.js +65 -0
  38. package/dist/patterns/FlowerRegular.d.ts +3 -0
  39. package/dist/patterns/FlowerRegular.js +65 -0
  40. package/dist/patterns/GridDense.d.ts +3 -0
  41. package/dist/patterns/GridDense.js +64 -0
  42. package/dist/patterns/GridLoose.d.ts +3 -0
  43. package/dist/patterns/GridLoose.js +64 -0
  44. package/dist/patterns/GridRegular.d.ts +3 -0
  45. package/dist/patterns/GridRegular.js +64 -0
  46. package/dist/patterns/Herringbone.d.ts +3 -0
  47. package/dist/patterns/Herringbone.js +82 -0
  48. package/dist/patterns/RainDense.d.ts +3 -0
  49. package/dist/patterns/RainDense.js +54 -0
  50. package/dist/patterns/RainLoose.d.ts +3 -0
  51. package/dist/patterns/RainLoose.js +54 -0
  52. package/dist/patterns/RainRegular.d.ts +3 -0
  53. package/dist/patterns/RainRegular.js +54 -0
  54. package/dist/patterns/StripeDense.d.ts +3 -0
  55. package/dist/patterns/StripeDense.js +86 -0
  56. package/dist/patterns/StripeLoose.d.ts +3 -0
  57. package/dist/patterns/StripeLoose.js +218 -0
  58. package/dist/patterns/StripeRegular.d.ts +3 -0
  59. package/dist/patterns/StripeRegular.js +130 -0
  60. package/dist/patterns/index.d.ts +28 -0
  61. package/dist/patterns/index.js +28 -0
  62. package/dist/props.d.ts +193 -0
  63. package/dist/props.js +9 -0
  64. package/dist/svg/CheckerDense.svg +14 -0
  65. package/dist/svg/CheckerLoose.svg +14 -0
  66. package/dist/svg/CheckerRegular.svg +14 -0
  67. package/dist/svg/DiagonalADense.svg +20 -0
  68. package/dist/svg/DiagonalALoose.svg +44 -0
  69. package/dist/svg/DiagonalARegular.svg +28 -0
  70. package/dist/svg/DiagonalBDense.svg +24 -0
  71. package/dist/svg/DiagonalBLoose.svg +28 -0
  72. package/dist/svg/DiagonalBRegular.svg +28 -0
  73. package/dist/svg/DotDense.svg +13 -0
  74. package/dist/svg/DotLoose.svg +40 -0
  75. package/dist/svg/DotRegular.svg +13 -0
  76. package/dist/svg/ExDense.svg +17 -0
  77. package/dist/svg/ExLoose.svg +17 -0
  78. package/dist/svg/ExRegular.svg +17 -0
  79. package/dist/svg/FlowerDense.svg +16 -0
  80. package/dist/svg/FlowerLoose.svg +16 -0
  81. package/dist/svg/FlowerRegular.svg +16 -0
  82. package/dist/svg/GridDense.svg +16 -0
  83. package/dist/svg/GridLoose.svg +16 -0
  84. package/dist/svg/GridRegular.svg +16 -0
  85. package/dist/svg/Herringbone.svg +19 -0
  86. package/dist/svg/RainDense.svg +14 -0
  87. package/dist/svg/RainLoose.svg +14 -0
  88. package/dist/svg/RainRegular.svg +14 -0
  89. package/dist/svg/StripeDense.svg +20 -0
  90. package/dist/svg/StripeLoose.svg +44 -0
  91. package/dist/svg/StripeRegular.svg +28 -0
  92. package/dist/types.d.ts +1 -141
  93. package/dist/types.js +1 -3
  94. package/dist/usePatternId.d.ts +1 -0
  95. package/dist/usePatternId.js +10 -0
  96. package/package.json +22 -18
  97. package/CHANGELOG.md +0 -15
  98. package/babel.config.js +0 -15
  99. package/dist/patterns/checker/CheckerDense.d.ts +0 -3
  100. package/dist/patterns/checker/CheckerDense.js +0 -36
  101. package/dist/patterns/checker/CheckerLoose.d.ts +0 -3
  102. package/dist/patterns/checker/CheckerLoose.js +0 -36
  103. package/dist/patterns/checker/CheckerRegular.d.ts +0 -3
  104. package/dist/patterns/checker/CheckerRegular.js +0 -36
  105. package/dist/patterns/checker/index.d.ts +0 -3
  106. package/dist/patterns/checker/index.js +0 -3
  107. package/dist/patterns/diagonalA/DiagonalADense.d.ts +0 -3
  108. package/dist/patterns/diagonalA/DiagonalADense.js +0 -70
  109. package/dist/patterns/diagonalA/DiagonalALoose.d.ts +0 -3
  110. package/dist/patterns/diagonalA/DiagonalALoose.js +0 -214
  111. package/dist/patterns/diagonalA/DiagonalARegular.d.ts +0 -3
  112. package/dist/patterns/diagonalA/DiagonalARegular.js +0 -118
  113. package/dist/patterns/diagonalA/index.d.ts +0 -3
  114. package/dist/patterns/diagonalA/index.js +0 -3
  115. package/dist/patterns/diagonalB/DiagonalBDense.d.ts +0 -3
  116. package/dist/patterns/diagonalB/DiagonalBDense.js +0 -60
  117. package/dist/patterns/diagonalB/DiagonalBLoose.d.ts +0 -3
  118. package/dist/patterns/diagonalB/DiagonalBLoose.js +0 -120
  119. package/dist/patterns/diagonalB/DiagonalBRegular.d.ts +0 -3
  120. package/dist/patterns/diagonalB/DiagonalBRegular.js +0 -84
  121. package/dist/patterns/diagonalB/index.d.ts +0 -3
  122. package/dist/patterns/diagonalB/index.js +0 -3
  123. package/dist/patterns/dot/DotDense.d.ts +0 -3
  124. package/dist/patterns/dot/DotDense.js +0 -31
  125. package/dist/patterns/dot/DotLoose.d.ts +0 -3
  126. package/dist/patterns/dot/DotLoose.js +0 -78
  127. package/dist/patterns/dot/DotRegular.d.ts +0 -3
  128. package/dist/patterns/dot/DotRegular.js +0 -31
  129. package/dist/patterns/dot/index.d.ts +0 -3
  130. package/dist/patterns/dot/index.js +0 -3
  131. package/dist/patterns/ex/ExDense.d.ts +0 -3
  132. package/dist/patterns/ex/ExDense.js +0 -53
  133. package/dist/patterns/ex/ExLoose.d.ts +0 -3
  134. package/dist/patterns/ex/ExLoose.js +0 -53
  135. package/dist/patterns/ex/ExRegular.d.ts +0 -3
  136. package/dist/patterns/ex/ExRegular.js +0 -53
  137. package/dist/patterns/ex/index.d.ts +0 -3
  138. package/dist/patterns/ex/index.js +0 -3
  139. package/dist/patterns/flower/FlowerDense.d.ts +0 -3
  140. package/dist/patterns/flower/FlowerDense.js +0 -47
  141. package/dist/patterns/flower/FlowerLoose.d.ts +0 -3
  142. package/dist/patterns/flower/FlowerLoose.js +0 -47
  143. package/dist/patterns/flower/FlowerRegular.d.ts +0 -3
  144. package/dist/patterns/flower/FlowerRegular.js +0 -47
  145. package/dist/patterns/flower/index.d.ts +0 -3
  146. package/dist/patterns/flower/index.js +0 -3
  147. package/dist/patterns/grid/GridDense.d.ts +0 -3
  148. package/dist/patterns/grid/GridDense.js +0 -46
  149. package/dist/patterns/grid/GridLoose.d.ts +0 -3
  150. package/dist/patterns/grid/GridLoose.js +0 -46
  151. package/dist/patterns/grid/GridRegular.d.ts +0 -3
  152. package/dist/patterns/grid/GridRegular.js +0 -46
  153. package/dist/patterns/grid/index.d.ts +0 -3
  154. package/dist/patterns/grid/index.js +0 -3
  155. package/dist/patterns/herringbone/Herringbone.d.ts +0 -3
  156. package/dist/patterns/herringbone/Herringbone.js +0 -64
  157. package/dist/patterns/herringbone/index.d.ts +0 -1
  158. package/dist/patterns/herringbone/index.js +0 -1
  159. package/dist/patterns/rain/RainDense.d.ts +0 -3
  160. package/dist/patterns/rain/RainDense.js +0 -36
  161. package/dist/patterns/rain/RainLoose.d.ts +0 -3
  162. package/dist/patterns/rain/RainLoose.js +0 -36
  163. package/dist/patterns/rain/RainRegular.d.ts +0 -3
  164. package/dist/patterns/rain/RainRegular.js +0 -36
  165. package/dist/patterns/rain/index.d.ts +0 -3
  166. package/dist/patterns/rain/index.js +0 -3
  167. package/dist/patterns/stripe/StripeDense.d.ts +0 -3
  168. package/dist/patterns/stripe/StripeDense.js +0 -68
  169. package/dist/patterns/stripe/StripeLoose.d.ts +0 -3
  170. package/dist/patterns/stripe/StripeLoose.js +0 -200
  171. package/dist/patterns/stripe/StripeRegular.d.ts +0 -3
  172. package/dist/patterns/stripe/StripeRegular.js +0 -112
  173. package/dist/patterns/stripe/index.d.ts +0 -3
  174. package/dist/patterns/stripe/index.js +0 -3
  175. package/tsconfig.json +0 -7
@@ -0,0 +1,136 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DiagonalARegular = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Diagonal A Regular' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DiagonalARegular');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsxs("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 8,
35
+ height: 8,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: [/*#__PURE__*/_jsx("rect", {
38
+ width: 1,
39
+ height: 1,
40
+ fill: "currentColor"
41
+ }), /*#__PURE__*/_jsx("rect", {
42
+ x: 6,
43
+ y: 2,
44
+ width: 1,
45
+ height: 1,
46
+ fill: "currentColor"
47
+ }), /*#__PURE__*/_jsx("rect", {
48
+ x: 5,
49
+ y: 2,
50
+ width: 1,
51
+ height: 1,
52
+ fill: "currentColor"
53
+ }), /*#__PURE__*/_jsx("rect", {
54
+ x: 5,
55
+ y: 3,
56
+ width: 1,
57
+ height: 1,
58
+ fill: "currentColor"
59
+ }), /*#__PURE__*/_jsx("rect", {
60
+ x: 4,
61
+ y: 3,
62
+ width: 1,
63
+ height: 1,
64
+ fill: "currentColor"
65
+ }), /*#__PURE__*/_jsx("rect", {
66
+ x: 7,
67
+ width: 1,
68
+ height: 1,
69
+ fill: "currentColor"
70
+ }), /*#__PURE__*/_jsx("rect", {
71
+ x: 7,
72
+ y: 1,
73
+ width: 1,
74
+ height: 1,
75
+ fill: "currentColor"
76
+ }), /*#__PURE__*/_jsx("rect", {
77
+ x: 6,
78
+ y: 1,
79
+ width: 1,
80
+ height: 1,
81
+ fill: "currentColor"
82
+ }), /*#__PURE__*/_jsx("rect", {
83
+ x: 3,
84
+ y: 5,
85
+ width: 1,
86
+ height: 1,
87
+ fill: "currentColor"
88
+ }), /*#__PURE__*/_jsx("rect", {
89
+ x: 2,
90
+ y: 5,
91
+ width: 1,
92
+ height: 1,
93
+ fill: "currentColor"
94
+ }), /*#__PURE__*/_jsx("rect", {
95
+ x: 2,
96
+ y: 6,
97
+ width: 1,
98
+ height: 1,
99
+ fill: "currentColor"
100
+ }), /*#__PURE__*/_jsx("rect", {
101
+ x: 1,
102
+ y: 6,
103
+ width: 1,
104
+ height: 1,
105
+ fill: "currentColor"
106
+ }), /*#__PURE__*/_jsx("rect", {
107
+ y: 7,
108
+ width: 1,
109
+ height: 1,
110
+ fill: "currentColor"
111
+ }), /*#__PURE__*/_jsx("rect", {
112
+ x: 1,
113
+ y: 7,
114
+ width: 1,
115
+ height: 1,
116
+ fill: "currentColor"
117
+ }), /*#__PURE__*/_jsx("rect", {
118
+ x: 4,
119
+ y: 4,
120
+ width: 1,
121
+ height: 1,
122
+ fill: "currentColor"
123
+ }), /*#__PURE__*/_jsx("rect", {
124
+ x: 3,
125
+ y: 4,
126
+ width: 1,
127
+ height: 1,
128
+ fill: "currentColor"
129
+ })]
130
+ }), /*#__PURE__*/_jsx("rect", {
131
+ width: "100%",
132
+ height: "100%",
133
+ fill: "url(#".concat(patternId, ")")
134
+ })]
135
+ }));
136
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DiagonalBDense: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,70 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DiagonalBDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Diagonal B Dense' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DiagonalBDense');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsxs("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 4,
35
+ height: 4,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: [/*#__PURE__*/_jsx("rect", {
38
+ width: 4,
39
+ height: 4,
40
+ fill: "transparent"
41
+ }), /*#__PURE__*/_jsx("rect", {
42
+ y: 3,
43
+ width: 1,
44
+ height: 1,
45
+ fill: "currentColor"
46
+ }), /*#__PURE__*/_jsx("rect", {
47
+ x: 1,
48
+ y: 2,
49
+ width: 1,
50
+ height: 1,
51
+ fill: "currentColor"
52
+ }), /*#__PURE__*/_jsx("rect", {
53
+ x: 2,
54
+ y: 1,
55
+ width: 1,
56
+ height: 1,
57
+ fill: "currentColor"
58
+ }), /*#__PURE__*/_jsx("rect", {
59
+ x: 3,
60
+ width: 1,
61
+ height: 1,
62
+ fill: "currentColor"
63
+ })]
64
+ }), /*#__PURE__*/_jsx("rect", {
65
+ width: "100%",
66
+ height: "100%",
67
+ fill: "url(#".concat(patternId, ")")
68
+ })]
69
+ }));
70
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DiagonalBLoose: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,138 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DiagonalBLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Diagonal B Loose' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DiagonalBLoose');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsxs("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 16,
35
+ height: 16,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: [/*#__PURE__*/_jsx("rect", {
38
+ y: 15,
39
+ width: 1,
40
+ height: 1,
41
+ fill: "currentColor"
42
+ }), /*#__PURE__*/_jsx("rect", {
43
+ x: 1,
44
+ y: 14,
45
+ width: 1,
46
+ height: 1,
47
+ fill: "currentColor"
48
+ }), /*#__PURE__*/_jsx("rect", {
49
+ x: 2,
50
+ y: 13,
51
+ width: 1,
52
+ height: 1,
53
+ fill: "currentColor"
54
+ }), /*#__PURE__*/_jsx("rect", {
55
+ x: 3,
56
+ y: 12,
57
+ width: 1,
58
+ height: 1,
59
+ fill: "currentColor"
60
+ }), /*#__PURE__*/_jsx("rect", {
61
+ x: 4,
62
+ y: 11,
63
+ width: 1,
64
+ height: 1,
65
+ fill: "currentColor"
66
+ }), /*#__PURE__*/_jsx("rect", {
67
+ x: 5,
68
+ y: 10,
69
+ width: 1,
70
+ height: 1,
71
+ fill: "currentColor"
72
+ }), /*#__PURE__*/_jsx("rect", {
73
+ x: 6,
74
+ y: 9,
75
+ width: 1,
76
+ height: 1,
77
+ fill: "currentColor"
78
+ }), /*#__PURE__*/_jsx("rect", {
79
+ x: 7,
80
+ y: 8,
81
+ width: 1,
82
+ height: 1,
83
+ fill: "currentColor"
84
+ }), /*#__PURE__*/_jsx("rect", {
85
+ x: 8,
86
+ y: 7,
87
+ width: 1,
88
+ height: 1,
89
+ fill: "currentColor"
90
+ }), /*#__PURE__*/_jsx("rect", {
91
+ x: 9,
92
+ y: 6,
93
+ width: 1,
94
+ height: 1,
95
+ fill: "currentColor"
96
+ }), /*#__PURE__*/_jsx("rect", {
97
+ x: 10,
98
+ y: 5,
99
+ width: 1,
100
+ height: 1,
101
+ fill: "currentColor"
102
+ }), /*#__PURE__*/_jsx("rect", {
103
+ x: 11,
104
+ y: 4,
105
+ width: 1,
106
+ height: 1,
107
+ fill: "currentColor"
108
+ }), /*#__PURE__*/_jsx("rect", {
109
+ x: 12,
110
+ y: 3,
111
+ width: 1,
112
+ height: 1,
113
+ fill: "currentColor"
114
+ }), /*#__PURE__*/_jsx("rect", {
115
+ x: 13,
116
+ y: 2,
117
+ width: 1,
118
+ height: 1,
119
+ fill: "currentColor"
120
+ }), /*#__PURE__*/_jsx("rect", {
121
+ x: 14,
122
+ y: 1,
123
+ width: 1,
124
+ height: 1,
125
+ fill: "currentColor"
126
+ }), /*#__PURE__*/_jsx("rect", {
127
+ x: 15,
128
+ width: 1,
129
+ height: 1,
130
+ fill: "currentColor"
131
+ })]
132
+ }), /*#__PURE__*/_jsx("rect", {
133
+ width: "100%",
134
+ height: "100%",
135
+ fill: "url(#".concat(patternId, ")")
136
+ })]
137
+ }));
138
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DiagonalBRegular: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,94 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DiagonalBRegular = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Diagonal B Regular' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DiagonalBRegular');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsxs("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 8,
35
+ height: 8,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: [/*#__PURE__*/_jsx("rect", {
38
+ width: 8,
39
+ height: 8,
40
+ fill: "transparent"
41
+ }), /*#__PURE__*/_jsx("rect", {
42
+ y: 7,
43
+ width: 1,
44
+ height: 1,
45
+ fill: "currentColor"
46
+ }), /*#__PURE__*/_jsx("rect", {
47
+ x: 1,
48
+ y: 6,
49
+ width: 1,
50
+ height: 1,
51
+ fill: "currentColor"
52
+ }), /*#__PURE__*/_jsx("rect", {
53
+ x: 2,
54
+ y: 5,
55
+ width: 1,
56
+ height: 1,
57
+ fill: "currentColor"
58
+ }), /*#__PURE__*/_jsx("rect", {
59
+ x: 3,
60
+ y: 4,
61
+ width: 1,
62
+ height: 1,
63
+ fill: "currentColor"
64
+ }), /*#__PURE__*/_jsx("rect", {
65
+ x: 4,
66
+ y: 3,
67
+ width: 1,
68
+ height: 1,
69
+ fill: "currentColor"
70
+ }), /*#__PURE__*/_jsx("rect", {
71
+ x: 5,
72
+ y: 2,
73
+ width: 1,
74
+ height: 1,
75
+ fill: "currentColor"
76
+ }), /*#__PURE__*/_jsx("rect", {
77
+ x: 6,
78
+ y: 1,
79
+ width: 1,
80
+ height: 1,
81
+ fill: "currentColor"
82
+ }), /*#__PURE__*/_jsx("rect", {
83
+ x: 7,
84
+ width: 1,
85
+ height: 1,
86
+ fill: "currentColor"
87
+ })]
88
+ }), /*#__PURE__*/_jsx("rect", {
89
+ width: "100%",
90
+ height: "100%",
91
+ fill: "url(#".concat(patternId, ")")
92
+ })]
93
+ }));
94
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DotDense: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,49 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DotDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Dot Dense' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DotDense');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsx("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 4,
35
+ height: 4,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: /*#__PURE__*/_jsx("circle", {
38
+ cx: 0.5,
39
+ cy: 0.5,
40
+ r: 0.5,
41
+ fill: "currentColor"
42
+ })
43
+ }), /*#__PURE__*/_jsx("rect", {
44
+ width: "100%",
45
+ height: "100%",
46
+ fill: "url(#".concat(patternId, ")")
47
+ })]
48
+ }));
49
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DotLoose: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;
@@ -0,0 +1,92 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
3
+ function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
4
+ function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ 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; }
8
+ 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; }
9
+ import * as React from 'react';
10
+ import { Svg } from '../props';
11
+ import { usePatternId } from '../usePatternId';
12
+ import { jsx as _jsx } from "react/jsx-runtime";
13
+ import { jsxs as _jsxs } from "react/jsx-runtime";
14
+ export var DotLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
15
+ var _ref$title = _ref.title,
16
+ title = _ref$title === void 0 ? 'Dot Loose' : _ref$title,
17
+ titleId = _ref.titleId,
18
+ props = _objectWithoutProperties(_ref, ["title", "titleId"]);
19
+ var patternId = usePatternId('DotLoose');
20
+ return /*#__PURE__*/_jsxs(Svg, _objectSpread(_objectSpread({
21
+ fill: "currentColor",
22
+ role: "img",
23
+ "aria-hidden": "true",
24
+ ref: svgRef,
25
+ "aria-labelledby": titleId
26
+ }, props), {}, {
27
+ children: [title ? /*#__PURE__*/_jsx("title", {
28
+ id: titleId,
29
+ children: title
30
+ }) : null, /*#__PURE__*/_jsxs("pattern", {
31
+ id: patternId,
32
+ x: 0,
33
+ y: 0,
34
+ width: 16,
35
+ height: 16,
36
+ patternUnits: "userSpaceOnUse",
37
+ children: [/*#__PURE__*/_jsx("rect", {
38
+ width: 0.5,
39
+ height: 0.5,
40
+ fill: "currentColor"
41
+ }), /*#__PURE__*/_jsx("rect", {
42
+ y: 1,
43
+ width: 0.5,
44
+ height: 0.5,
45
+ fill: "currentColor"
46
+ }), /*#__PURE__*/_jsx("rect", {
47
+ y: 0.5,
48
+ width: 0.5,
49
+ height: 0.5,
50
+ fill: "currentColor"
51
+ }), /*#__PURE__*/_jsx("rect", {
52
+ x: 1,
53
+ width: 0.5,
54
+ height: 0.5,
55
+ fill: "currentColor"
56
+ }), /*#__PURE__*/_jsx("rect", {
57
+ x: 1,
58
+ y: 1,
59
+ width: 0.5,
60
+ height: 0.5,
61
+ fill: "currentColor"
62
+ }), /*#__PURE__*/_jsx("rect", {
63
+ x: 1,
64
+ y: 0.5,
65
+ width: 0.5,
66
+ height: 0.5,
67
+ fill: "currentColor"
68
+ }), /*#__PURE__*/_jsx("rect", {
69
+ x: 0.5,
70
+ width: 0.5,
71
+ height: 0.5,
72
+ fill: "currentColor"
73
+ }), /*#__PURE__*/_jsx("rect", {
74
+ x: 0.5,
75
+ y: 1,
76
+ width: 0.5,
77
+ height: 0.5,
78
+ fill: "currentColor"
79
+ }), /*#__PURE__*/_jsx("rect", {
80
+ x: 0.5,
81
+ y: 0.5,
82
+ width: 0.5,
83
+ height: 0.5,
84
+ fill: "currentColor"
85
+ })]
86
+ }), /*#__PURE__*/_jsx("rect", {
87
+ width: "100%",
88
+ height: "100%",
89
+ fill: "url(#".concat(patternId, ")")
90
+ })]
91
+ }));
92
+ });
@@ -0,0 +1,3 @@
1
+ import * as React from 'react';
2
+ import { PatternProps } from '../props';
3
+ export declare const DotRegular: React.ForwardRefExoticComponent<PatternProps & React.RefAttributes<SVGSVGElement>>;