@splunk/react-icons 4.4.0 → 4.5.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 (65) hide show
  1. package/ArrowTriangleDown.js +12 -10
  2. package/ArrowTriangleLeft.js +22 -20
  3. package/ArrowTriangleRight.js +22 -20
  4. package/ArrowTriangleUp.js +22 -20
  5. package/CHANGELOG.md +20 -0
  6. package/Calculation.d.ts +2 -0
  7. package/Calculation.js +168 -0
  8. package/Calculator.d.ts +2 -0
  9. package/Calculator.js +156 -0
  10. package/ChevronsSlash.js +60 -50
  11. package/Containership.js +1 -1
  12. package/CylinderWaves.d.ts +2 -0
  13. package/CylinderWaves.js +160 -0
  14. package/DeviceEdgeHub.d.ts +2 -0
  15. package/DeviceEdgeHub.js +162 -0
  16. package/ExclamationTriangle.js +6 -6
  17. package/ExclamationTriangleDown.d.ts +2 -0
  18. package/ExclamationTriangleDown.js +160 -0
  19. package/FileChevronRight.d.ts +2 -0
  20. package/FileChevronRight.js +158 -0
  21. package/Hammer.js +2 -2
  22. package/HotAirBalloon.js +2 -2
  23. package/IconProvider.d.ts +1 -1
  24. package/Lightning.js +1 -1
  25. package/SVG.d.ts +3 -3
  26. package/SVGEnterprise.d.ts +5 -5
  27. package/Scissors.js +2 -2
  28. package/Shield.d.ts +2 -0
  29. package/Shield.js +158 -0
  30. package/Snowflake.js +1 -1
  31. package/TextAlignBottom.d.ts +2 -0
  32. package/TextAlignBottom.js +156 -0
  33. package/TextAlignCenter.d.ts +2 -0
  34. package/TextAlignCenter.js +160 -0
  35. package/TextAlignLeft.d.ts +2 -0
  36. package/TextAlignLeft.js +160 -0
  37. package/TextAlignRight.d.ts +2 -0
  38. package/TextAlignRight.js +160 -0
  39. package/TextAlignTop.d.ts +2 -0
  40. package/TextAlignTop.js +156 -0
  41. package/TextAlignVerticalCenter.d.ts +2 -0
  42. package/TextAlignVerticalCenter.js +158 -0
  43. package/TextDirectionMinus45.js +2 -2
  44. package/Triangle.js +22 -20
  45. package/TriangleDown.js +156 -0
  46. package/WindowGlobe.d.ts +2 -0
  47. package/WindowGlobe.js +172 -0
  48. package/package.json +12 -10
  49. package/test-runner-jest.config.js +1 -0
  50. package/types/icons/Calculation.d.ts +20 -0
  51. package/types/icons/Calculator.d.ts +20 -0
  52. package/types/icons/ChevronsSlash.d.ts +2 -2
  53. package/types/icons/CylinderWaves.d.ts +20 -0
  54. package/types/icons/DeviceEdgeHub.d.ts +20 -0
  55. package/types/icons/ExclamationTriangleDown.d.ts +20 -0
  56. package/types/icons/FileChevronRight.d.ts +20 -0
  57. package/types/icons/Shield.d.ts +20 -0
  58. package/types/icons/TextAlignBottom.d.ts +20 -0
  59. package/types/icons/TextAlignCenter.d.ts +20 -0
  60. package/types/icons/TextAlignLeft.d.ts +20 -0
  61. package/types/icons/TextAlignRight.d.ts +20 -0
  62. package/types/icons/TextAlignTop.d.ts +20 -0
  63. package/types/icons/TextAlignVerticalCenter.d.ts +20 -0
  64. package/types/icons/TriangleDown.d.ts +20 -0
  65. package/types/icons/WindowGlobe.d.ts +20 -0
@@ -39,19 +39,19 @@ interface SVGPropsBase {
39
39
  * and centers the icon. These are standard SVG values. */
40
40
  preserveAspectRatio?: 'none' | 'xMinYMin' | 'xMidYMin' | 'xMaxYMin' | 'xMinYMid' | 'xMidYMid' | 'xMaxYMid' | 'xMinYMax' | 'xMidYMax' | 'xMaxYMax';
41
41
  }
42
- declare type SVGProps = SVGPropsBase & Omit<JSX.IntrinsicElements['svg'], keyof SVGPropsBase | 'ref'>;
42
+ type SVGProps = SVGPropsBase & Omit<JSX.IntrinsicElements['svg'], keyof SVGPropsBase | 'ref'>;
43
43
  /** @public Props interface for `SVGEnterprise` with `viewBox` optional. Use this when wrapping `SVGEnterprise`. */
44
- declare type SVGPropsOptionalViewBox = Omit<SVGProps, 'viewBox'> & Partial<Pick<SVGProps, 'viewBox'>>;
44
+ type SVGPropsOptionalViewBox = Omit<SVGProps, 'viewBox'> & Partial<Pick<SVGProps, 'viewBox'>>;
45
45
  declare function SVGEnterprise({ children, height, hideDefaultTooltip, inline, preserveAspectRatio, screenReaderText, size, viewBox, width, ...otherProps }: SVGProps): JSX.Element;
46
46
  declare namespace SVGEnterprise {
47
47
  var propTypes: {
48
48
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
49
- height: PropTypes.Requireable<string | number>;
49
+ height: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
50
50
  hideDefaultTooltip: PropTypes.Requireable<boolean>;
51
51
  inline: PropTypes.Requireable<boolean>;
52
52
  screenReaderText: PropTypes.Requireable<string>;
53
- size: PropTypes.Requireable<string | number>;
54
- width: PropTypes.Requireable<string | number>;
53
+ size: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
54
+ width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
55
55
  viewBox: PropTypes.Validator<string>;
56
56
  preserveAspectRatio: PropTypes.Requireable<string>;
57
57
  };
package/Scissors.js CHANGED
@@ -108,13 +108,13 @@
108
108
  return n().createElement(n().Fragment, null, n().createElement("path", {
109
109
  fillRule: "evenodd",
110
110
  clipRule: "evenodd",
111
- d: "M7.77279 1.7763C7.2944 1.96612 7.03821 2.48806 7.18069 2.98262L8.77822 8.52818L3.2328 6.93069C2.73824 6.78821 2.21631 7.0444 2.02649 7.52279C1.83666 8.00118 2.04095 8.54552 2.49865 8.7809L9.17131 12.2125C9.30089 12.2791 9.44347 12.3166 9.58907 12.3224L9.87449 12.3337L10.6266 14.9446C10.2153 15.1292 9.83027 15.3904 9.49407 15.7266C8.04706 17.1736 7.98982 19.5259 9.44396 20.98C10.8981 22.4342 13.2504 22.3769 14.6974 20.9299C16.1444 19.4829 16.2016 17.1306 14.7475 15.6765C14.1907 15.1197 13.5022 14.7845 12.7833 14.6641L12.6954 12.4454L14.9134 12.5333C15.0338 13.2523 15.369 13.9409 15.9259 14.4979C17.38 15.952 19.7323 15.8947 21.1793 14.4477C22.6263 13.0007 22.6836 10.6485 21.2294 9.19432C19.7753 7.74018 17.423 7.79742 15.976 9.24444C15.64 9.58049 15.3789 9.96536 15.1942 10.3765L12.5837 9.62444L12.5724 9.33889C12.5666 9.19329 12.5291 9.05071 12.4625 8.92113L9.0309 2.24846C8.79552 1.79077 8.25118 1.58648 7.77279 1.7763ZM17.3401 13.0836C16.7016 12.4451 16.6892 11.3596 17.3902 10.6586C18.0912 9.95765 19.1767 9.97002 19.8152 10.6085C20.4537 11.247 20.4661 12.3325 19.7651 13.0335C19.0641 13.7345 17.9786 13.7222 17.3401 13.0836ZM10.8582 19.5658C10.2197 18.9273 10.2073 17.8418 10.9083 17.1408C11.6093 16.4398 12.6948 16.4522 13.3333 17.0907C13.9718 17.7292 13.9842 18.8147 13.2832 19.5157C12.5822 20.2167 11.4967 20.2043 10.8582 19.5658Z"
111
+ d: "M7.77279 1.77624C7.2944 1.96606 7.03821 2.488 7.18069 2.98256L8.77822 8.52812L3.2328 6.93062C2.73824 6.78815 2.21631 7.04434 2.02649 7.52273C1.83666 8.00111 2.04095 8.54546 2.49865 8.78084L9.17131 12.2124C9.30089 12.279 9.44347 12.3166 9.58907 12.3223L9.87449 12.3336L10.6266 14.9446C10.2153 15.1292 9.83027 15.3904 9.49407 15.7266C8.04706 17.1736 7.98982 19.5258 9.44396 20.98C10.8981 22.4341 13.2504 22.3769 14.6974 20.9299C16.1444 19.4828 16.2016 17.1306 14.7475 15.6764C14.1907 15.1196 13.5022 14.7844 12.7833 14.664L12.6954 12.4454L14.9134 12.5332C15.0338 13.2523 15.369 13.9409 15.9259 14.4978C17.38 15.9519 19.7323 15.8947 21.1793 14.4477C22.6263 13.0007 22.6836 10.6484 21.2294 9.19426C19.7753 7.74012 17.423 7.79736 15.976 9.24438C15.64 9.58043 15.3789 9.9653 15.1942 10.3764L12.5837 9.62438L12.5724 9.33883C12.5666 9.19323 12.5291 9.05065 12.4625 8.92107L9.0309 2.2484C8.79552 1.79071 8.25118 1.58642 7.77279 1.77624ZM17.3401 13.0836C16.7016 12.4451 16.6892 11.3596 17.3902 10.6586C18.0912 9.95759 19.1767 9.96996 19.8152 10.6085C20.4537 11.247 20.4661 12.3325 19.7651 13.0335C19.0641 13.7345 17.9786 13.7221 17.3401 13.0836ZM10.8582 19.5658C10.2197 18.9272 10.2073 17.8418 10.9083 17.1408C11.6093 16.4398 12.6948 16.4521 13.3333 17.0907C13.9718 17.7292 13.9842 18.8146 13.2832 19.5156C12.5822 20.2166 11.4967 20.2043 10.8582 19.5658Z"
112
112
  }));
113
113
  }));
114
114
  C.set("filled", (function() {
115
115
 
116
116
  return n().createElement(n().Fragment, null, n().createElement("path", {
117
- d: "M7.1802 2.98256C7.03773 2.488 7.29391 1.96606 7.7723 1.77624C8.25069 1.58642 8.79503 1.79071 9.03041 2.2484L12.462 8.92106C12.5286 9.05065 12.5661 9.19323 12.5719 9.33883L12.5832 9.62432L15.1942 10.3765C15.3788 9.96534 15.6399 9.58044 15.976 9.24437C17.423 7.79736 19.7753 7.74012 21.2294 9.19426C22.6836 10.6484 22.6263 13.0007 21.1793 14.4477C19.7323 15.8947 17.38 15.9519 15.9259 14.4978C15.369 13.9409 15.0337 13.2522 14.9134 12.5332L12.6949 12.4453L12.7828 14.6639C13.5019 14.7843 14.1906 15.1195 14.7475 15.6764C16.2016 17.1306 16.1444 19.4828 14.6974 20.9299C13.2504 22.3769 10.8981 22.4341 9.44396 20.98C7.98981 19.5258 8.04706 17.1736 9.49407 15.7266C9.83015 15.3905 10.2151 15.1294 10.6262 14.9448L9.87398 12.3336L9.58859 12.3223C9.44299 12.3165 9.3004 12.279 9.17082 12.2123L2.49816 8.78078C2.04046 8.5454 1.83617 8.00105 2.026 7.52266C2.21582 7.04427 2.73775 6.78809 3.23231 6.93056L8.77771 8.52805L7.1802 2.98256Z"
117
+ d: "M7.18007 2.98256C7.0376 2.488 7.29379 1.96606 7.77218 1.77624C8.25057 1.58642 8.79491 1.79071 9.03029 2.2484L12.4619 8.92106C12.5285 9.05065 12.566 9.19323 12.5718 9.33883L12.5831 9.62432L15.1941 10.3765C15.3787 9.96534 15.6398 9.58044 15.9759 9.24437C17.4229 7.79736 19.7752 7.74012 21.2293 9.19426C22.6834 10.6484 22.6262 13.0007 21.1792 14.4477C19.7322 15.8947 17.3799 15.9519 15.9258 14.4978C15.3689 13.9409 15.0336 13.2522 14.9133 12.5332L12.6948 12.4453L12.7827 14.6639C13.5018 14.7843 14.1904 15.1195 14.7474 15.6764C16.2015 17.1306 16.1443 19.4828 14.6973 20.9299C13.2502 22.3769 10.898 22.4341 9.44383 20.98C7.98969 19.5258 8.04694 17.1736 9.49395 15.7266C9.83003 15.3905 10.2149 15.1294 10.6261 14.9448L9.87386 12.3336L9.58846 12.3223C9.44286 12.3165 9.30028 12.279 9.1707 12.2123L2.49804 8.78078C2.04034 8.5454 1.83605 8.00105 2.02587 7.52266C2.2157 7.04427 2.73763 6.78809 3.23219 6.93056L8.77759 8.52805L7.18007 2.98256Z"
118
118
  }));
119
119
  }));
120
120
  var f = [ "default", "outlined", "filled" ];
package/Shield.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export { default } from './types/icons/Shield';
2
+ export * from './types/icons/Shield';
package/Shield.js ADDED
@@ -0,0 +1,158 @@
1
+ /******/ (() => {
2
+ // webpackBootstrap
3
+ /******/ "use strict";
4
+ /******/ // The require scope
5
+ /******/ var e = {};
6
+ /******/
7
+ /************************************************************************/
8
+ /******/ /* webpack/runtime/compat get default export */
9
+ /******/ (() => {
10
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
11
+ /******/ e.n = r => {
12
+ /******/ var t = r && r.__esModule ?
13
+ /******/ () => r["default"]
14
+ /******/ : () => r
15
+ /******/;
16
+ e.d(t, {
17
+ a: t
18
+ });
19
+ /******/ return t;
20
+ /******/ };
21
+ /******/ })();
22
+ /******/
23
+ /******/ /* webpack/runtime/define property getters */
24
+ /******/ (() => {
25
+ /******/ // define getter functions for harmony exports
26
+ /******/ e.d = (r, t) => {
27
+ /******/ for (var n in t) {
28
+ /******/ if (e.o(t, n) && !e.o(r, n)) {
29
+ /******/ Object.defineProperty(r, n, {
30
+ enumerable: true,
31
+ get: t[n]
32
+ });
33
+ /******/ }
34
+ /******/ }
35
+ /******/ };
36
+ /******/ })();
37
+ /******/
38
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
39
+ /******/ (() => {
40
+ /******/ e.o = (e, r) => Object.prototype.hasOwnProperty.call(e, r)
41
+ /******/;
42
+ })();
43
+ /******/
44
+ /******/ /* webpack/runtime/make namespace object */
45
+ /******/ (() => {
46
+ /******/ // define __esModule on exports
47
+ /******/ e.r = e => {
48
+ /******/ if (typeof Symbol !== "undefined" && Symbol.toStringTag) {
49
+ /******/ Object.defineProperty(e, Symbol.toStringTag, {
50
+ value: "Module"
51
+ });
52
+ /******/ }
53
+ /******/ Object.defineProperty(e, "__esModule", {
54
+ value: true
55
+ });
56
+ /******/ };
57
+ /******/ })();
58
+ /******/
59
+ /************************************************************************/ var r = {};
60
+ // ESM COMPAT FLAG
61
+ e.r(r);
62
+ // EXPORTS
63
+ e.d(r, {
64
+ default: () => /* binding */ p
65
+ });
66
+ // CONCATENATED MODULE: external "react"
67
+ const t = require("react");
68
+ var n = e.n(t);
69
+ // CONCATENATED MODULE: external "@splunk/react-icons/SVG"
70
+ const a = require("@splunk/react-icons/SVG");
71
+ var l = e.n(a);
72
+ // CONCATENATED MODULE: external "@splunk/react-icons/IconProvider"
73
+ const o = require("@splunk/react-icons/IconProvider");
74
+ // CONCATENATED MODULE: ./src/icons/Shield.tsx
75
+ function u(e, r) {
76
+ if (e == null) return {};
77
+ var t = i(e, r);
78
+ var n, a;
79
+ if (Object.getOwnPropertySymbols) {
80
+ var l = Object.getOwnPropertySymbols(e);
81
+ for (a = 0; a < l.length; a++) {
82
+ n = l[a];
83
+ if (r.indexOf(n) >= 0) continue;
84
+ if (!Object.prototype.propertyIsEnumerable.call(e, n)) continue;
85
+ t[n] = e[n];
86
+ }
87
+ }
88
+ return t;
89
+ }
90
+ function i(e, r) {
91
+ if (e == null) return {};
92
+ var t = {};
93
+ var n = Object.keys(e);
94
+ var a, l;
95
+ for (l = 0; l < n.length; l++) {
96
+ a = n[l];
97
+ if (r.indexOf(a) >= 0) continue;
98
+ t[a] = e[a];
99
+ }
100
+ return t;
101
+ }
102
+ var c = {
103
+ variant: "default"
104
+ };
105
+ var d = new Map;
106
+ d.set("outlined", (function() {
107
+
108
+ return n().createElement(n().Fragment, null, n().createElement("path", {
109
+ fillRule: "evenodd",
110
+ clipRule: "evenodd",
111
+ d: "M11.1941 2.32738C11.6876 2.02076 12.3127 2.02076 12.8061 2.32738C13.7471 2.91204 16.836 4.71652 19.7537 5.25247C20.4628 5.38273 21.0052 6.00641 20.9983 6.75477C20.9506 11.9204 20.0738 15.2072 18.5174 17.4717C16.9541 19.7463 14.7997 20.8421 12.6125 21.8218C12.2233 21.9961 11.777 21.9961 11.3878 21.8218C9.20062 20.8421 7.0462 19.7463 5.48287 17.4717C3.92652 15.2072 3.04969 11.9204 3.00202 6.75477C2.99511 6.00641 3.53752 5.38273 4.24662 5.25247C7.16424 4.71652 10.2532 2.91204 11.1941 2.32738ZM12.0001 4.17905C10.8488 4.87511 7.9483 6.50532 5.00749 7.1397C5.09466 11.8756 5.93216 14.5944 7.13112 16.3389C8.3175 18.065 9.9447 18.9732 12.0001 19.9041C14.0556 18.9732 15.6828 18.065 16.8692 16.3389C18.0681 14.5944 18.9056 11.8757 18.9928 7.1397C16.052 6.50532 13.1515 4.87511 12.0001 4.17905Z"
112
+ }));
113
+ }));
114
+ d.set("filled", (function() {
115
+
116
+ return n().createElement(n().Fragment, null, n().createElement("path", {
117
+ d: "M6.54688 8.29207C8.73271 7.64689 10.7504 6.62125 12.0001 5.91599C13.2497 6.62125 15.2674 7.64689 17.4532 8.29207C17.2619 12.1251 16.5098 14.2134 15.6329 15.4892C14.7916 16.7133 13.6658 17.4555 12.0001 18.2504C10.3343 17.4555 9.20851 16.7133 8.36722 15.4892C7.49036 14.2134 6.73821 12.1251 6.54688 8.29207Z"
118
+ }), n().createElement("path", {
119
+ fillRule: "evenodd",
120
+ clipRule: "evenodd",
121
+ d: "M12.8061 2.32738C12.3127 2.02076 11.6876 2.02076 11.1941 2.32738C10.2532 2.91204 7.16424 4.71652 4.24662 5.25247C3.53752 5.38273 2.99511 6.00641 3.00202 6.75477C3.04969 11.9204 3.92652 15.2072 5.48287 17.4717C7.0462 19.7463 9.20062 20.8421 11.3878 21.8218C11.777 21.9961 12.2233 21.9961 12.6125 21.8218C14.7997 20.8421 16.9541 19.7463 18.5174 17.4717C20.0738 15.2072 20.9506 11.9204 20.9983 6.75477C21.0052 6.00641 20.4628 5.38273 19.7537 5.25247C16.836 4.71652 13.7471 2.91204 12.8061 2.32738ZM5.00749 7.1397C7.9483 6.50532 10.8488 4.87511 12.0001 4.17905C13.1515 4.87511 16.052 6.50532 18.9928 7.1397C18.9056 11.8757 18.0681 14.5944 16.8692 16.3389C15.6828 18.065 14.0556 18.9732 12.0001 19.9041C9.9447 18.9732 8.3175 18.065 7.13112 16.3389C5.93216 14.5944 5.09466 11.8756 5.00749 7.1397Z"
122
+ }));
123
+ }));
124
+ var f = [ "default", "outlined", "filled" ];
125
+ var C = function e(r) {
126
+ return f.indexOf(r) >= 0;
127
+ };
128
+ var v = function e(r) {
129
+ return r === "default" || r && !C(r) ? "outlined" : r;
130
+ };
131
+ /**
132
+ * @description Security represent, category, protection, anti-virus
133
+ * @category Objects
134
+ * @keywords block cyber attack
135
+ * @variants outlined,filled
136
+ */ var s = function e(r) {
137
+ var a = r.children, i = r.variant, c = u(r, [ "children", "variant" ]);
138
+ var f = v(i);
139
+ var C = "shield-".concat(f);
140
+ var s = (0, t.useContext)(o.IconContext);
141
+ var p = d.get(f);
142
+ if (false) {}
143
+ if (s && p) {
144
+ var m = s.toRender, y = s.addIcon;
145
+ y(C, p());
146
+ if (!m) {
147
+ return null;
148
+ }
149
+ }
150
+
151
+ return n().createElement(l(), c, a, s ? n().createElement("use", {
152
+ href: "#".concat(C)
153
+ }) : !!p && p());
154
+ };
155
+ s.defaultProps = c;
156
+ /* harmony default export */ const p = s;
157
+ module.exports = r;
158
+ /******/})();
package/Snowflake.js CHANGED
@@ -114,7 +114,7 @@
114
114
  return n().createElement(n().Fragment, null, n().createElement("path", {
115
115
  fillRule: "evenodd",
116
116
  clipRule: "evenodd",
117
- d: "M6.51443 3.49991C6.69306 3.19049 7.0232 2.99988 7.38048 2.99988L16.6178 2.9999C16.975 2.9999 17.3051 3.19047 17.4838 3.49984L22.1033 11.4999C22.282 11.8093 22.282 12.1905 22.1034 12.5L17.4841 20.5C17.3055 20.8093 16.9754 20.9999 16.6181 20.9999L7.38015 21C7.02285 21 6.69271 20.8093 6.51408 20.4999L1.89602 12.4999C1.71743 12.1905 1.71744 11.8093 1.89604 11.5L6.51443 3.49991ZM7.95896 4.99989L7.45385 5.87484L8.05344 6.91337L7.61963 7.16383C7.20112 7.40546 7.05773 7.9406 7.29935 8.3591C7.54098 8.77761 8.07612 8.921 8.49463 8.67938L8.92843 8.42892L10.485 11.1249H7.37316L7.37316 10.624C7.37316 10.1408 6.98141 9.74901 6.49816 9.74901C6.01491 9.74901 5.62316 10.1408 5.62316 10.624V11.1249L4.42301 11.1249L3.91785 12L4.42292 12.8749L5.62316 12.8749V13.3758C5.62316 13.8591 6.01491 14.2508 6.49816 14.2508C6.98141 14.2508 7.37316 13.8591 7.37316 13.3758L7.37316 12.8749H10.4851L8.92853 15.571L8.49472 15.3206C8.07622 15.0789 7.54107 15.2223 7.29945 15.6408C7.05782 16.0593 7.20122 16.5945 7.61972 16.8361L8.05353 17.0866L7.45378 18.1254L7.95864 19L8.96957 19L9.56908 17.9616L10.0029 18.212C10.4214 18.4536 10.9565 18.3103 11.1981 17.8918C11.4398 17.4732 11.2964 16.9381 10.8779 16.6965L10.4441 16.446L12.0006 13.7501L13.5571 16.446L13.1233 16.6965C12.7048 16.9381 12.5614 17.4732 12.803 17.8917C13.0446 18.3102 13.5798 18.4536 13.9983 18.212L14.4321 17.9615L15.0316 19L16.0419 18.9999L16.5471 18.1249L15.9476 17.0865L16.3814 16.8361C16.7999 16.5945 16.9433 16.0593 16.7017 15.6408C16.4601 15.2223 15.9249 15.0789 15.5064 15.3205L15.0726 15.571L13.5161 12.8749H16.6305V13.3758C16.6305 13.8591 17.0222 14.2508 17.5055 14.2508C17.9887 14.2508 18.3805 13.8591 18.3805 13.3758V12.8749L19.5785 12.8749L20.0837 12L19.5784 11.1249L18.3805 11.1249V10.624C18.3805 10.1408 17.9887 9.74901 17.5055 9.74901C17.0222 9.74901 16.6305 10.1408 16.6305 10.624V11.1249H13.5162L15.0727 8.42895L15.5065 8.67941C15.925 8.92103 16.4602 8.77764 16.7018 8.35913C16.9434 7.94063 16.8 7.40549 16.3815 7.16386L15.9477 6.91341L16.5471 5.87532L16.0416 4.99991L15.0318 4.99991L14.4322 6.03841L13.9984 5.78795C13.5799 5.54632 13.0447 5.68971 12.8031 6.10822C12.5615 6.52673 12.7049 7.06187 13.1234 7.30349L13.5572 7.55395L12.0006 10.2501L10.444 7.55392L10.8778 7.30346C11.2963 7.06184 11.4397 6.52669 11.1981 6.10819C10.9564 5.68968 10.4213 5.54629 10.0028 5.78792L9.56898 6.03837L8.96942 4.99989L7.95896 4.99989Z"
117
+ d: "M6.51431 3.49991C6.69294 3.19049 7.02308 2.99988 7.38036 2.99988L16.6177 2.9999C16.9749 2.9999 17.305 3.19047 17.4837 3.49984L22.1032 11.4999C22.2819 11.8093 22.2819 12.1905 22.1032 12.5L17.484 20.5C17.3054 20.8093 16.9752 20.9999 16.618 20.9999L7.38002 21C7.02273 21 6.69258 20.8093 6.51396 20.4999L1.8959 12.4999C1.71731 12.1905 1.71732 11.8093 1.89592 11.5L6.51431 3.49991ZM7.95884 4.99989L7.45373 5.87484L8.05331 6.91337L7.6195 7.16383C7.201 7.40546 7.05761 7.9406 7.29923 8.3591C7.54086 8.77761 8.076 8.921 8.4945 8.67938L8.92831 8.42892L10.4848 11.1249H7.37304L7.37304 10.624C7.37304 10.1408 6.98129 9.74901 6.49804 9.74901C6.01479 9.74901 5.62304 10.1408 5.62304 10.624V11.1249L4.42289 11.1249L3.91773 12L4.4228 12.8749L5.62304 12.8749V13.3758C5.62304 13.8591 6.01479 14.2508 6.49804 14.2508C6.98129 14.2508 7.37304 13.8591 7.37304 13.3758L7.37304 12.8749H10.485L8.9284 15.571L8.4946 15.3206C8.07609 15.0789 7.54095 15.2223 7.29933 15.6408C7.0577 16.0593 7.20109 16.5945 7.6196 16.8361L8.05341 17.0866L7.45366 18.1254L7.95852 19L8.96945 19L9.56895 17.9616L10.0028 18.212C10.4213 18.4536 10.9564 18.3103 11.198 17.8918C11.4396 17.4732 11.2963 16.9381 10.8778 16.6965L10.4439 16.446L12.0005 13.7501L13.557 16.446L13.1232 16.6965C12.7047 16.9381 12.5613 17.4732 12.8029 17.8917C13.0445 18.3102 13.5797 18.4536 13.9982 18.212L14.432 17.9615L15.0315 19L16.0418 18.9999L16.547 18.1249L15.9475 17.0865L16.3813 16.8361C16.7998 16.5945 16.9432 16.0593 16.7016 15.6408C16.46 15.2223 15.9248 15.0789 15.5063 15.3205L15.0725 15.571L13.5159 12.8749H16.6304V13.3758C16.6304 13.8591 17.0221 14.2508 17.5054 14.2508C17.9886 14.2508 18.3804 13.8591 18.3804 13.3758V12.8749L19.5784 12.8749L20.0836 12L19.5783 11.1249L18.3804 11.1249V10.624C18.3804 10.1408 17.9886 9.74901 17.5054 9.74901C17.0221 9.74901 16.6304 10.1408 16.6304 10.624V11.1249H13.5161L15.0726 8.42895L15.5064 8.67941C15.9249 8.92103 16.4601 8.77764 16.7017 8.35913C16.9433 7.94063 16.7999 7.40549 16.3814 7.16386L15.9476 6.91341L16.547 5.87532L16.0415 4.99991L15.0317 4.99991L14.4321 6.03841L13.9983 5.78795C13.5798 5.54632 13.0446 5.68971 12.803 6.10822C12.5614 6.52673 12.7048 7.06187 13.1233 7.30349L13.5571 7.55395L12.0005 10.2501L10.4439 7.55392L10.8777 7.30346C11.2962 7.06184 11.4396 6.52669 11.1979 6.10819C10.9563 5.68968 10.4212 5.54629 10.0027 5.78792L9.56886 6.03837L8.9693 4.99989L7.95884 4.99989Z"
118
118
  }));
119
119
  }));
120
120
  var c = [ "default", "outlined", "filled" ];
@@ -0,0 +1,2 @@
1
+ export { default } from './types/icons/TextAlignBottom';
2
+ export * from './types/icons/TextAlignBottom';
@@ -0,0 +1,156 @@
1
+ /******/ (() => {
2
+ // webpackBootstrap
3
+ /******/ "use strict";
4
+ /******/ // The require scope
5
+ /******/ var e = {};
6
+ /******/
7
+ /************************************************************************/
8
+ /******/ /* webpack/runtime/compat get default export */
9
+ /******/ (() => {
10
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
11
+ /******/ e.n = t => {
12
+ /******/ var r = t && t.__esModule ?
13
+ /******/ () => t["default"]
14
+ /******/ : () => t
15
+ /******/;
16
+ e.d(r, {
17
+ a: r
18
+ });
19
+ /******/ return r;
20
+ /******/ };
21
+ /******/ })();
22
+ /******/
23
+ /******/ /* webpack/runtime/define property getters */
24
+ /******/ (() => {
25
+ /******/ // define getter functions for harmony exports
26
+ /******/ e.d = (t, r) => {
27
+ /******/ for (var n in r) {
28
+ /******/ if (e.o(r, n) && !e.o(t, n)) {
29
+ /******/ Object.defineProperty(t, n, {
30
+ enumerable: true,
31
+ get: r[n]
32
+ });
33
+ /******/ }
34
+ /******/ }
35
+ /******/ };
36
+ /******/ })();
37
+ /******/
38
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
39
+ /******/ (() => {
40
+ /******/ e.o = (e, t) => Object.prototype.hasOwnProperty.call(e, t)
41
+ /******/;
42
+ })();
43
+ /******/
44
+ /******/ /* webpack/runtime/make namespace object */
45
+ /******/ (() => {
46
+ /******/ // define __esModule on exports
47
+ /******/ e.r = e => {
48
+ /******/ if (typeof Symbol !== "undefined" && Symbol.toStringTag) {
49
+ /******/ Object.defineProperty(e, Symbol.toStringTag, {
50
+ value: "Module"
51
+ });
52
+ /******/ }
53
+ /******/ Object.defineProperty(e, "__esModule", {
54
+ value: true
55
+ });
56
+ /******/ };
57
+ /******/ })();
58
+ /******/
59
+ /************************************************************************/ var t = {};
60
+ // ESM COMPAT FLAG
61
+ e.r(t);
62
+ // EXPORTS
63
+ e.d(t, {
64
+ default: () => /* binding */ p
65
+ });
66
+ // CONCATENATED MODULE: external "react"
67
+ const r = require("react");
68
+ var n = e.n(r);
69
+ // CONCATENATED MODULE: external "@splunk/react-icons/SVG"
70
+ const a = require("@splunk/react-icons/SVG");
71
+ var o = e.n(a);
72
+ // CONCATENATED MODULE: external "@splunk/react-icons/IconProvider"
73
+ const l = require("@splunk/react-icons/IconProvider");
74
+ // CONCATENATED MODULE: ./src/icons/TextAlignBottom.tsx
75
+ function u(e, t) {
76
+ if (e == null) return {};
77
+ var r = i(e, t);
78
+ var n, a;
79
+ if (Object.getOwnPropertySymbols) {
80
+ var o = Object.getOwnPropertySymbols(e);
81
+ for (a = 0; a < o.length; a++) {
82
+ n = o[a];
83
+ if (t.indexOf(n) >= 0) continue;
84
+ if (!Object.prototype.propertyIsEnumerable.call(e, n)) continue;
85
+ r[n] = e[n];
86
+ }
87
+ }
88
+ return r;
89
+ }
90
+ function i(e, t) {
91
+ if (e == null) return {};
92
+ var r = {};
93
+ var n = Object.keys(e);
94
+ var a, o;
95
+ for (o = 0; o < n.length; o++) {
96
+ a = n[o];
97
+ if (t.indexOf(a) >= 0) continue;
98
+ r[a] = e[a];
99
+ }
100
+ return r;
101
+ }
102
+ var c = {
103
+ variant: "default"
104
+ };
105
+ var f = new Map;
106
+ f.set("outlined", (function() {
107
+
108
+ return n().createElement(n().Fragment, null, n().createElement("path", {
109
+ d: "M13 4C13 3.44772 12.5523 3 12 3C11.4477 3 11 3.44772 11 4V13.0858L8.70711 10.7929C8.31658 10.4024 7.68342 10.4024 7.29289 10.7929C6.90237 11.1834 6.90237 11.8166 7.29289 12.2071L10.9393 15.8536C11.5251 16.4393 12.4749 16.4393 13.0607 15.8536L16.7071 12.2071C17.0976 11.8166 17.0976 11.1834 16.7071 10.7929C16.3166 10.4024 15.6834 10.4024 15.2929 10.7929L13 13.0858V4Z"
110
+ }), n().createElement("path", {
111
+ d: "M20 18C20.5523 18 21 18.4477 21 19C21 19.5523 20.5523 20 20 20H4C3.44772 20 3 19.5523 3 19C3 18.4477 3.44772 18 4 18H20Z"
112
+ }));
113
+ }));
114
+ f.set("filled", (function() {
115
+
116
+ return n().createElement(n().Fragment, null, n().createElement("path", {
117
+ fillRule: "evenodd",
118
+ clipRule: "evenodd",
119
+ d: "M20.5 21C21.3284 21 22 20.3284 22 19.5V4.5C22 3.67157 21.3284 3 20.5 3H3.5C2.67157 3 2 3.67157 2 4.5V19.5C2 20.3284 2.67157 21 3.5 21H20.5ZM19 17C19 17.5523 18.5523 18 18 18H6C5.44772 18 5 17.5523 5 17C5 16.4477 5.44772 16 6 16H18C18.5523 16 19 16.4477 19 17ZM10.9393 14.3536C11.5251 14.9394 12.4749 14.9394 13.0607 14.3536L16.7071 10.7072C17.0976 10.3167 17.0976 9.68349 16.7071 9.29297C16.3166 8.90244 15.6834 8.90244 15.2929 9.29297L13 11.5859V5.50008C13 4.94779 12.5523 4.50008 12 4.50008C11.4477 4.50008 11 4.94779 11 5.50008V11.5859L8.70711 9.29297C8.31658 8.90244 7.68342 8.90244 7.29289 9.29297C6.90237 9.68349 6.90237 10.3167 7.29289 10.7072L10.9393 14.3536Z"
120
+ }));
121
+ }));
122
+ var d = [ "default", "outlined", "filled" ];
123
+ var v = function e(t) {
124
+ return d.indexOf(t) >= 0;
125
+ };
126
+ var C = function e(t) {
127
+ return t === "default" || t && !v(t) ? "outlined" : t;
128
+ };
129
+ /**
130
+ * @description Text box align to bottom
131
+ * @category Formatting
132
+ * @keywords edit, field, cell, textarea, alignment
133
+ * @variants outlined,filled
134
+ */ var s = function e(t) {
135
+ var a = t.children, i = t.variant, c = u(t, [ "children", "variant" ]);
136
+ var d = C(i);
137
+ var v = "textalignbottom-".concat(d);
138
+ var s = (0, r.useContext)(l.IconContext);
139
+ var p = f.get(d);
140
+ if (false) {}
141
+ if (s && p) {
142
+ var m = s.toRender, b = s.addIcon;
143
+ b(v, p());
144
+ if (!m) {
145
+ return null;
146
+ }
147
+ }
148
+
149
+ return n().createElement(o(), c, a, s ? n().createElement("use", {
150
+ href: "#".concat(v)
151
+ }) : !!p && p());
152
+ };
153
+ s.defaultProps = c;
154
+ /* harmony default export */ const p = s;
155
+ module.exports = t;
156
+ /******/})();
@@ -0,0 +1,2 @@
1
+ export { default } from './types/icons/TextAlignCenter';
2
+ export * from './types/icons/TextAlignCenter';
@@ -0,0 +1,160 @@
1
+ /******/ (() => {
2
+ // webpackBootstrap
3
+ /******/ "use strict";
4
+ /******/ // The require scope
5
+ /******/ var e = {};
6
+ /******/
7
+ /************************************************************************/
8
+ /******/ /* webpack/runtime/compat get default export */
9
+ /******/ (() => {
10
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
11
+ /******/ e.n = t => {
12
+ /******/ var r = t && t.__esModule ?
13
+ /******/ () => t["default"]
14
+ /******/ : () => t
15
+ /******/;
16
+ e.d(r, {
17
+ a: r
18
+ });
19
+ /******/ return r;
20
+ /******/ };
21
+ /******/ })();
22
+ /******/
23
+ /******/ /* webpack/runtime/define property getters */
24
+ /******/ (() => {
25
+ /******/ // define getter functions for harmony exports
26
+ /******/ e.d = (t, r) => {
27
+ /******/ for (var n in r) {
28
+ /******/ if (e.o(r, n) && !e.o(t, n)) {
29
+ /******/ Object.defineProperty(t, n, {
30
+ enumerable: true,
31
+ get: r[n]
32
+ });
33
+ /******/ }
34
+ /******/ }
35
+ /******/ };
36
+ /******/ })();
37
+ /******/
38
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
39
+ /******/ (() => {
40
+ /******/ e.o = (e, t) => Object.prototype.hasOwnProperty.call(e, t)
41
+ /******/;
42
+ })();
43
+ /******/
44
+ /******/ /* webpack/runtime/make namespace object */
45
+ /******/ (() => {
46
+ /******/ // define __esModule on exports
47
+ /******/ e.r = e => {
48
+ /******/ if (typeof Symbol !== "undefined" && Symbol.toStringTag) {
49
+ /******/ Object.defineProperty(e, Symbol.toStringTag, {
50
+ value: "Module"
51
+ });
52
+ /******/ }
53
+ /******/ Object.defineProperty(e, "__esModule", {
54
+ value: true
55
+ });
56
+ /******/ };
57
+ /******/ })();
58
+ /******/
59
+ /************************************************************************/ var t = {};
60
+ // ESM COMPAT FLAG
61
+ e.r(t);
62
+ // EXPORTS
63
+ e.d(t, {
64
+ default: () => /* binding */ s
65
+ });
66
+ // CONCATENATED MODULE: external "react"
67
+ const r = require("react");
68
+ var n = e.n(r);
69
+ // CONCATENATED MODULE: external "@splunk/react-icons/SVG"
70
+ const a = require("@splunk/react-icons/SVG");
71
+ var l = e.n(a);
72
+ // CONCATENATED MODULE: external "@splunk/react-icons/IconProvider"
73
+ const o = require("@splunk/react-icons/IconProvider");
74
+ // CONCATENATED MODULE: ./src/icons/TextAlignCenter.tsx
75
+ function u(e, t) {
76
+ if (e == null) return {};
77
+ var r = i(e, t);
78
+ var n, a;
79
+ if (Object.getOwnPropertySymbols) {
80
+ var l = Object.getOwnPropertySymbols(e);
81
+ for (a = 0; a < l.length; a++) {
82
+ n = l[a];
83
+ if (t.indexOf(n) >= 0) continue;
84
+ if (!Object.prototype.propertyIsEnumerable.call(e, n)) continue;
85
+ r[n] = e[n];
86
+ }
87
+ }
88
+ return r;
89
+ }
90
+ function i(e, t) {
91
+ if (e == null) return {};
92
+ var r = {};
93
+ var n = Object.keys(e);
94
+ var a, l;
95
+ for (l = 0; l < n.length; l++) {
96
+ a = n[l];
97
+ if (t.indexOf(a) >= 0) continue;
98
+ r[a] = e[a];
99
+ }
100
+ return r;
101
+ }
102
+ var c = {
103
+ variant: "default"
104
+ };
105
+ var d = new Map;
106
+ d.set("outlined", (function() {
107
+
108
+ return n().createElement(n().Fragment, null, n().createElement("path", {
109
+ d: "M21 5C21.5523 5 22 5.44772 22 6C22 6.55228 21.5523 7 21 7H3C2.44772 7 2 6.55228 2 6C2 5.44772 2.44772 5 3 5H21Z"
110
+ }), n().createElement("path", {
111
+ d: "M17 9C17.5523 9 18 9.44772 18 10C18 10.5523 17.5523 11 17 11H7C6.44772 11 6 10.5523 6 10C6 9.44772 6.44772 9 7 9H17Z"
112
+ }), n().createElement("path", {
113
+ d: "M19 18C19 17.4477 18.5523 17 18 17H6C5.44772 17 5 17.4477 5 18C5 18.5523 5.44772 19 6 19H18C18.5523 19 19 18.5523 19 18Z"
114
+ }), n().createElement("path", {
115
+ d: "M20 13C20.5523 13 21 13.4477 21 14C21 14.5523 20.5523 15 20 15H4C3.44772 15 3 14.5523 3 14C3 13.4477 3.44772 13 4 13H20Z"
116
+ }));
117
+ }));
118
+ d.set("filled", (function() {
119
+
120
+ return n().createElement(n().Fragment, null, n().createElement("path", {
121
+ fillRule: "evenodd",
122
+ clipRule: "evenodd",
123
+ d: "M3.5 3C2.67157 3 2 3.67157 2 4.5V19.5C2 20.3284 2.67157 21 3.5 21H20.5C21.3284 21 22 20.3284 22 19.5V4.5C22 3.67157 21.3284 3 20.5 3H3.5ZM5 6C5 5.44772 5.44772 5 6 5H18C18.5523 5 19 5.44772 19 6C19 6.55228 18.5523 7 18 7H6C5.44772 7 5 6.55228 5 6ZM8 10C8 9.44772 8.44772 9 9 9H15C15.5523 9 16 9.44772 16 10C16 10.5523 15.5523 11 15 11H9C8.44772 11 8 10.5523 8 10ZM9 17C8.44772 17 8 17.4477 8 18C8 18.5523 8.44772 19 9 19H15C15.5523 19 16 18.5523 16 18C16 17.4477 15.5523 17 15 17H9ZM6 14C6 13.4477 6.44772 13 7 13H17C17.5523 13 18 13.4477 18 14C18 14.5523 17.5523 15 17 15H7C6.44771 15 6 14.5523 6 14Z"
124
+ }));
125
+ }));
126
+ var f = [ "default", "outlined", "filled" ];
127
+ var C = function e(t) {
128
+ return f.indexOf(t) >= 0;
129
+ };
130
+ var v = function e(t) {
131
+ return t === "default" || t && !C(t) ? "outlined" : t;
132
+ };
133
+ /**
134
+ * @description Text box align to horizontal center
135
+ * @category Formatting
136
+ * @keywords edit, field, cell, textarea, alignment
137
+ * @variants outlined,filled
138
+ */ var p = function e(t) {
139
+ var a = t.children, i = t.variant, c = u(t, [ "children", "variant" ]);
140
+ var f = v(i);
141
+ var C = "textaligncenter-".concat(f);
142
+ var p = (0, r.useContext)(o.IconContext);
143
+ var s = d.get(f);
144
+ if (false) {}
145
+ if (p && s) {
146
+ var m = p.toRender, H = p.addIcon;
147
+ H(C, s());
148
+ if (!m) {
149
+ return null;
150
+ }
151
+ }
152
+
153
+ return n().createElement(l(), c, a, p ? n().createElement("use", {
154
+ href: "#".concat(C)
155
+ }) : !!s && s());
156
+ };
157
+ p.defaultProps = c;
158
+ /* harmony default export */ const s = p;
159
+ module.exports = t;
160
+ /******/})();
@@ -0,0 +1,2 @@
1
+ export { default } from './types/icons/TextAlignLeft';
2
+ export * from './types/icons/TextAlignLeft';