@codecademy/gamut-patterns 0.9.8 → 0.9.9-alpha.ab0105.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 +12 -19
- package/dist/patterns/CheckerLoose.js +12 -19
- package/dist/patterns/CheckerRegular.js +12 -19
- package/dist/patterns/DiagonalADense.js +12 -19
- package/dist/patterns/DiagonalALoose.js +12 -19
- package/dist/patterns/DiagonalARegular.js +12 -19
- package/dist/patterns/DiagonalBDense.js +12 -19
- package/dist/patterns/DiagonalBLoose.js +12 -19
- package/dist/patterns/DiagonalBRegular.js +12 -19
- package/dist/patterns/DotDense.js +12 -19
- package/dist/patterns/DotLoose.js +12 -19
- package/dist/patterns/DotRegular.js +12 -19
- package/dist/patterns/ExDense.js +12 -19
- package/dist/patterns/ExLoose.js +12 -19
- package/dist/patterns/ExRegular.js +12 -19
- package/dist/patterns/FlowerDense.js +12 -19
- package/dist/patterns/FlowerLoose.js +12 -19
- package/dist/patterns/FlowerRegular.js +12 -19
- package/dist/patterns/GridDense.js +12 -19
- package/dist/patterns/GridLoose.js +12 -19
- package/dist/patterns/GridRegular.js +12 -19
- package/dist/patterns/Herringbone.js +12 -19
- package/dist/patterns/RainDense.js +12 -19
- package/dist/patterns/RainLoose.js +12 -19
- package/dist/patterns/RainRegular.js +12 -19
- package/dist/patterns/StripeDense.js +12 -19
- package/dist/patterns/StripeLoose.js +12 -19
- package/dist/patterns/StripeRegular.js +12 -19
- package/dist/props.js +7 -3
- package/dist/usePatternId.js +3 -3
- package/package.json +14 -19
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const CheckerDense = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Checker Dense',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('CheckerDense');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -48,7 +41,7 @@ export var CheckerDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef)
|
|
|
48
41
|
}), /*#__PURE__*/_jsx("rect", {
|
|
49
42
|
width: "100%",
|
|
50
43
|
height: "100%",
|
|
51
|
-
fill:
|
|
44
|
+
fill: `url(#${patternId})`
|
|
52
45
|
})]
|
|
53
|
-
})
|
|
46
|
+
});
|
|
54
47
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const CheckerLoose = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Checker Loose',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('CheckerLoose');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -48,7 +41,7 @@ export var CheckerLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef)
|
|
|
48
41
|
}), /*#__PURE__*/_jsx("rect", {
|
|
49
42
|
width: "100%",
|
|
50
43
|
height: "100%",
|
|
51
|
-
fill:
|
|
44
|
+
fill: `url(#${patternId})`
|
|
52
45
|
})]
|
|
53
|
-
})
|
|
46
|
+
});
|
|
54
47
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const CheckerRegular = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Checker Regular',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('CheckerRegular');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -48,7 +41,7 @@ export var CheckerRegular = /*#__PURE__*/React.forwardRef(function (_ref, svgRef
|
|
|
48
41
|
}), /*#__PURE__*/_jsx("rect", {
|
|
49
42
|
width: "100%",
|
|
50
43
|
height: "100%",
|
|
51
|
-
fill:
|
|
44
|
+
fill: `url(#${patternId})`
|
|
52
45
|
})]
|
|
53
|
-
})
|
|
46
|
+
});
|
|
54
47
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalADense = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal A Dense',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalADense');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -82,7 +75,7 @@ export var DiagonalADense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef
|
|
|
82
75
|
}), /*#__PURE__*/_jsx("rect", {
|
|
83
76
|
width: "100%",
|
|
84
77
|
height: "100%",
|
|
85
|
-
fill:
|
|
78
|
+
fill: `url(#${patternId})`
|
|
86
79
|
})]
|
|
87
|
-
})
|
|
80
|
+
});
|
|
88
81
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalALoose = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal A Loose',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalALoose');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -226,7 +219,7 @@ export var DiagonalALoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef
|
|
|
226
219
|
}), /*#__PURE__*/_jsx("rect", {
|
|
227
220
|
width: "100%",
|
|
228
221
|
height: "100%",
|
|
229
|
-
fill:
|
|
222
|
+
fill: `url(#${patternId})`
|
|
230
223
|
})]
|
|
231
|
-
})
|
|
224
|
+
});
|
|
232
225
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalARegular = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal A Regular',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalARegular');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -130,7 +123,7 @@ export var DiagonalARegular = /*#__PURE__*/React.forwardRef(function (_ref, svgR
|
|
|
130
123
|
}), /*#__PURE__*/_jsx("rect", {
|
|
131
124
|
width: "100%",
|
|
132
125
|
height: "100%",
|
|
133
|
-
fill:
|
|
126
|
+
fill: `url(#${patternId})`
|
|
134
127
|
})]
|
|
135
|
-
})
|
|
128
|
+
});
|
|
136
129
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalBDense = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal B Dense',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalBDense');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -64,7 +57,7 @@ export var DiagonalBDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef
|
|
|
64
57
|
}), /*#__PURE__*/_jsx("rect", {
|
|
65
58
|
width: "100%",
|
|
66
59
|
height: "100%",
|
|
67
|
-
fill:
|
|
60
|
+
fill: `url(#${patternId})`
|
|
68
61
|
})]
|
|
69
|
-
})
|
|
62
|
+
});
|
|
70
63
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalBLoose = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal B Loose',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalBLoose');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -132,7 +125,7 @@ export var DiagonalBLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef
|
|
|
132
125
|
}), /*#__PURE__*/_jsx("rect", {
|
|
133
126
|
width: "100%",
|
|
134
127
|
height: "100%",
|
|
135
|
-
fill:
|
|
128
|
+
fill: `url(#${patternId})`
|
|
136
129
|
})]
|
|
137
|
-
})
|
|
130
|
+
});
|
|
138
131
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DiagonalBRegular = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Diagonal B Regular',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DiagonalBRegular');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -88,7 +81,7 @@ export var DiagonalBRegular = /*#__PURE__*/React.forwardRef(function (_ref, svgR
|
|
|
88
81
|
}), /*#__PURE__*/_jsx("rect", {
|
|
89
82
|
width: "100%",
|
|
90
83
|
height: "100%",
|
|
91
|
-
fill:
|
|
84
|
+
fill: `url(#${patternId})`
|
|
92
85
|
})]
|
|
93
|
-
})
|
|
86
|
+
});
|
|
94
87
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DotDense = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Dot Dense',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DotDense');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -43,7 +36,7 @@ export var DotDense = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
|
43
36
|
}), /*#__PURE__*/_jsx("rect", {
|
|
44
37
|
width: "100%",
|
|
45
38
|
height: "100%",
|
|
46
|
-
fill:
|
|
39
|
+
fill: `url(#${patternId})`
|
|
47
40
|
})]
|
|
48
|
-
})
|
|
41
|
+
});
|
|
49
42
|
});
|
|
@@ -1,29 +1,22 @@
|
|
|
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
1
|
import * as React from 'react';
|
|
10
2
|
import { Svg } from '../props';
|
|
11
3
|
import { usePatternId } from '../usePatternId';
|
|
12
4
|
import { jsx as _jsx } from "react/jsx-runtime";
|
|
13
5
|
import { jsxs as _jsxs } from "react/jsx-runtime";
|
|
14
|
-
export
|
|
15
|
-
|
|
16
|
-
title =
|
|
17
|
-
titleId
|
|
18
|
-
props
|
|
19
|
-
|
|
20
|
-
|
|
6
|
+
export const DotLoose = /*#__PURE__*/React.forwardRef((_ref, svgRef) => {
|
|
7
|
+
let {
|
|
8
|
+
title = 'Dot Loose',
|
|
9
|
+
titleId,
|
|
10
|
+
...props
|
|
11
|
+
} = _ref;
|
|
12
|
+
const patternId = usePatternId('DotLoose');
|
|
13
|
+
return /*#__PURE__*/_jsxs(Svg, {
|
|
21
14
|
fill: "currentColor",
|
|
22
15
|
role: "img",
|
|
23
16
|
"aria-hidden": "true",
|
|
24
17
|
ref: svgRef,
|
|
25
|
-
"aria-labelledby": titleId
|
|
26
|
-
|
|
18
|
+
"aria-labelledby": titleId,
|
|
19
|
+
...props,
|
|
27
20
|
children: [title ? /*#__PURE__*/_jsx("title", {
|
|
28
21
|
id: titleId,
|
|
29
22
|
children: title
|
|
@@ -86,7 +79,7 @@ export var DotLoose = /*#__PURE__*/React.forwardRef(function (_ref, svgRef) {
|
|
|
86
79
|
}), /*#__PURE__*/_jsx("rect", {
|
|
87
80
|
width: "100%",
|
|
88
81
|
height: "100%",
|
|
89
|
-
fill:
|
|
82
|
+
fill: `url(#${patternId})`
|
|
90
83
|
})]
|
|
91
|
-
})
|
|
84
|
+
});
|
|
92
85
|
});
|