pds-dev-kit-web 2.1.12 → 2.1.13

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 (52) hide show
  1. package/dist/src/common/assets/icons/fill/ArrowRoundLeft.d.ts +4 -0
  2. package/dist/src/common/assets/icons/fill/ArrowRoundLeft.js +30 -0
  3. package/dist/src/common/assets/icons/fill/Layout.js +1 -1
  4. package/dist/src/common/assets/icons/fill/LogoYt.js +1 -1
  5. package/dist/src/common/assets/icons/fill/TextAlignBottom.d.ts +4 -0
  6. package/dist/src/common/assets/icons/fill/TextAlignBottom.js +30 -0
  7. package/dist/src/common/assets/icons/fill/TextAlignCenter.d.ts +4 -0
  8. package/dist/src/common/assets/icons/fill/TextAlignCenter.js +30 -0
  9. package/dist/src/common/assets/icons/fill/TextAlignLeft.d.ts +4 -0
  10. package/dist/src/common/assets/icons/fill/TextAlignLeft.js +30 -0
  11. package/dist/src/common/assets/icons/fill/TextAlignMiddle.d.ts +4 -0
  12. package/dist/src/common/assets/icons/fill/TextAlignMiddle.js +30 -0
  13. package/dist/src/common/assets/icons/fill/TextAlignRight.d.ts +4 -0
  14. package/dist/src/common/assets/icons/fill/TextAlignRight.js +30 -0
  15. package/dist/src/common/assets/icons/fill/TextAlignTop.d.ts +4 -0
  16. package/dist/src/common/assets/icons/fill/TextAlignTop.js +30 -0
  17. package/dist/src/common/assets/icons/fill/index.d.ts +7 -0
  18. package/dist/src/common/assets/icons/fill/index.js +14 -0
  19. package/dist/src/common/assets/icons/line/ArrowRoundLeft.js +1 -1
  20. package/dist/src/common/assets/icons/line/Layout.js +1 -1
  21. package/dist/src/common/assets/icons/line/TextAlignBottom.d.ts +4 -0
  22. package/dist/src/common/assets/icons/line/TextAlignBottom.js +30 -0
  23. package/dist/src/common/assets/icons/line/TextAlignCenter.d.ts +4 -0
  24. package/dist/src/common/assets/icons/line/TextAlignCenter.js +30 -0
  25. package/dist/src/common/assets/icons/line/TextAlignLeft.d.ts +4 -0
  26. package/dist/src/common/assets/icons/line/TextAlignLeft.js +30 -0
  27. package/dist/src/common/assets/icons/line/TextAlignMiddle.d.ts +4 -0
  28. package/dist/src/common/assets/icons/line/TextAlignMiddle.js +30 -0
  29. package/dist/src/common/assets/icons/line/TextAlignRight.d.ts +4 -0
  30. package/dist/src/common/assets/icons/line/TextAlignRight.js +30 -0
  31. package/dist/src/common/assets/icons/line/TextAlignTop.d.ts +4 -0
  32. package/dist/src/common/assets/icons/line/TextAlignTop.js +30 -0
  33. package/dist/src/common/assets/icons/line/index.d.ts +6 -0
  34. package/dist/src/common/assets/icons/line/index.js +12 -0
  35. package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +2 -1
  36. package/dist/src/common/styles/colorSet/PaletteColor_light.json +2 -1
  37. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  38. package/dist/src/common/styles/colorSet/index.d.ts +3 -0
  39. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  40. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.d.ts +6 -2
  41. package/dist/src/desktop/common/components/TextFieldBase/TextFieldBase.js +181 -28
  42. package/dist/src/desktop/common/components/TextFieldBase/constants.d.ts +1 -0
  43. package/dist/src/desktop/common/components/TextFieldBase/constants.js +2 -1
  44. package/dist/src/desktop/components/TextField/TextField.js +1 -1
  45. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.d.ts +6 -2
  46. package/dist/src/mobile/common/components/TextFieldBase/TextFieldBase.js +180 -27
  47. package/dist/src/mobile/common/components/TextFieldBase/constants.d.ts +1 -0
  48. package/dist/src/mobile/common/components/TextFieldBase/constants.js +2 -1
  49. package/dist/src/mobile/components/TextField/TextField.js +1 -1
  50. package/dist/src/sub/AdminList/ToolBar/SearchField.js +1 -1
  51. package/package.json +1 -1
  52. package/release-note.md +17 -90
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const ArrowRoundLeft: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default ArrowRoundLeft;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var ArrowRoundLeft = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M11.867,2.5475 C9.492,2.5475 7.246,3.4355 5.512,5.0025 L5.512,4.1995 C5.512,3.6475 5.064,3.1995 4.512,3.1995 C3.96,3.1995 3.512,3.6475 3.512,4.1995 L3.512,7.2155 C3.512,7.9085 4.076,8.4725 4.769,8.4725 L7.784,8.4725 C8.337,8.4725 8.784,8.0255 8.784,7.4725 C8.784,6.9205 8.337,6.4725 7.784,6.4725 L6.865,6.4725 C8.232,5.2435 9.999,4.5475 11.867,4.5475 C16.003,4.5475 19.367,7.9115 19.367,12.0475 C19.367,16.1835 16.003,19.5475 11.867,19.5475 C8.438,19.5475 5.451,17.2315 4.601,13.9145 C4.464,13.3795 3.92,13.0545 3.385,13.1935 C2.849,13.3315 2.527,13.8755 2.664,14.4105 C3.74,18.6125 7.525,21.5475 11.867,21.5475 C17.105,21.5475 21.367,17.2855 21.367,12.0475 C21.367,6.8095 17.105,2.5475 11.867,2.5475" }, void 0) }), void 0));
29
+ };
30
+ exports.default = ArrowRoundLeft;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var Layout = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M11.4684,9.7369 L19.7504,9.7369 C20.3024,9.7369 20.7504,9.2889 20.7504,8.7369 L20.7504,6.7499 C20.7504,4.8169 19.1834,3.2499 17.2504,3.2499 L11.4684,3.2499 C11.1924,3.2499 10.9684,3.4739 10.9684,3.7499 L10.9684,9.2369 C10.9684,9.5129 11.1924,9.7369 11.4684,9.7369 M8.5925,3.25 L6.7495,3.25 C4.8165,3.25 3.2495,4.817 3.2495,6.75 L3.2495,17.25 C3.2495,19.183 4.8165,20.75 6.7495,20.75 L8.5925,20.75 C8.8685,20.75 9.0925,20.526 9.0925,20.25 L9.0925,3.75 C9.0925,3.474 8.8685,3.25 8.5925,3.25 M10.9684,12.0428 L10.9684,20.2498 C10.9684,20.5258 11.1924,20.7498 11.4684,20.7498 L17.2504,20.7498 C19.1834,20.7498 20.7504,19.1828 20.7504,17.2498 L20.7504,12.5428 C20.7504,11.9908 20.3024,11.5428 19.7504,11.5428 L11.4684,11.5428 C11.1924,11.5428 10.9684,11.7668 10.9684,12.0428" }, void 0) }), void 0));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M20.9614,14.9837 C21.3074,15.3067 21.5054021,15.7367 21.5054021,16.1987 C21.5064,16.8117 21.1574,17.3717 20.5734,17.6957 L13.6014,21.5577 C13.1074,21.8317 12.5544,21.9677 12.0004,21.9677 C11.4464,21.9677 10.8924,21.8307 10.3984,21.5567 L3.4264,17.6967 C2.8424,17.3717 2.4934,16.8117 2.49439786,16.1987 C2.49439786,15.7367 2.6924,15.3067 3.0384,14.9837 C3.1524,15.0897 3.2824,15.1857 3.4264,15.2657 L10.3984,19.1257 C10.8924,19.3997 11.4464,19.5367 12.0004,19.5367 C12.5544,19.5367 13.1074,19.4007 13.6014,19.1267 L20.5734,15.2647 C20.7184,15.1847 20.8474,15.0897 20.9614,14.9837 Z M20.9614,10.8975 C21.3074,11.2205 21.5054021,11.6505 21.5054021,12.1125 C21.5064,12.7255 21.1574,13.2855 20.5734,13.6095 L13.6014,17.4715 C13.1074,17.7455 12.5544,17.8815 12.0004,17.8815 C11.4464,17.8815 10.8924,17.7445 10.3984,17.4705 L3.4264,13.6105 C2.8424,13.2855 2.4934,12.7255 2.49439786,12.1125 C2.49439786,11.6505 2.6924,11.2205 3.0384,10.8975 C3.1524,11.0035 3.2824,11.0995 3.4264,11.1795 L10.3984,15.0395 C10.8924,15.3135 11.4464,15.4505 12.0004,15.4505 C12.5544,15.4505 13.1074,15.3145 13.6014,15.0405 L20.5734,11.1785 C20.7184,11.0985 20.8474,11.0035 20.9614,10.8975 Z M13.6017,2.4419 L20.5727,6.3039 C21.1567,6.6269 21.5047,7.1869 21.5057,7.7999 C21.5057,8.4129 21.1577,8.9739 20.5737,9.2969 L13.6017,13.1589 C13.1077,13.4329 12.5537,13.5699 11.9997,13.5699 C11.4467,13.5699 10.8917,13.4319 10.3977,13.1579 L3.4267,9.2979 C2.8427,8.9739 2.4937,8.4129 2.49469786,7.7999 C2.49469786,7.1869 2.8437,6.6269 3.4277,6.3039 L10.3987,2.4419 C11.3857,1.8949 12.6137,1.8949 13.6017,2.4419 Z" }, void 0) }), void 0));
29
29
  };
30
30
  exports.default = Layout;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var LogoYt = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("g", __assign({ stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, { children: (0, jsx_runtime_1.jsx)("path", { d: "M9.9805,15.0292 L9.9805,8.9712 L15.2265,12.0002 L9.9805,15.0292 Z M21.6755,7.1392 C21.4425,6.2702 20.7585,5.5862 19.8895,5.3542 C18.3145,4.9322 11.9995,4.9322 11.9995,4.9322 C11.9995,4.9322 5.6845,4.9322 4.1095,5.3542 C3.2405,5.5862 2.5565,6.2702 2.3245,7.1392 C1.9025,8.7142 1.9025,12.0002 1.9025,12.0002 C1.9025,12.0002 1.9025,15.2862 2.3245,16.8602 C2.5565,17.7292 3.2405,18.4142 4.1095,18.6462 C5.6845,19.0682 11.9995,19.0682 11.9995,19.0682 C11.9995,19.0682 18.3145,19.0682 19.8895,18.6462 C20.7585,18.4142 21.4425,17.7292 21.6755,16.8602 C22.0975,15.2862 22.0975,12.0002 22.0975,12.0002 C22.0975,12.0002 22.0975,8.7142 21.6755,7.1392 L21.6755,7.1392 Z", fill: color }, void 0) }), void 0) }), void 0));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinejoin: "round", strokeWidth: "2", d: "M9.9805,15.0292 L9.9805,8.9712 L15.2265,12.0002 L9.9805,15.0292 Z M21.6755,6.8482 C21.4425,5.9282 20.7585,5.2032 19.8895,4.9562 C18.3145,4.5092 11.9995,4.5092 11.9995,4.5092 C11.9995,4.5092 5.6845,4.5092 4.1095,4.9562 C3.2405,5.2032 2.5565,5.9282 2.3245,6.8482 C1.9025,8.5182 1.9025,12.0002 1.9025,12.0002 C1.9025,12.0002 1.9025,15.4822 2.3245,17.1512 C2.5565,18.0722 3.2405,18.7972 4.1095,19.0432 C5.6845,19.4902 11.9995,19.4902 11.9995,19.4902 C11.9995,19.4902 18.3145,19.4902 19.8895,19.0432 C20.7585,18.7972 21.4425,18.0722 21.6755,17.1512 C22.0975,15.4822 22.0975,12.0002 22.0975,12.0002 C22.0975,12.0002 22.0975,8.5182 21.6755,6.8482 Z" }, void 0) }), void 0));
29
29
  };
30
30
  exports.default = LogoYt;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignBottom: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignBottom;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignBottom = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M18.1204,19.8321 L5.8794,19.8321 M12,15.2274 L12,4.1684 M16.5867,11.5903 L11.9997,16.1773 L7.4137,11.5903" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignBottom;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignCenter: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignCenter;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignCenter = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.2", d: "M4.3458,6.2632 L19.6538,6.2632 M7.6412,12 L16.3592,12 M7.6412,17.7368 L16.3592,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignCenter;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignLeft: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignLeft;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignLeft = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.2", d: "M4.3458,6.2632 L19.6538,6.2632 M4.3458,12 L13.0638,12 M4.3458,17.7368 L13.0638,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignLeft;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignMiddle: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignMiddle;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignMiddle = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M5.8796,12 L18.1206,12 M12,16.0369 L12,21.0419 M9.3148,17.9123 L11.9998,15.2273 L14.6848,17.9123 M12,7.9631 L12,2.9581 M14.6852,6.0877 L12.0002,8.7727 L9.3152,6.0877" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignMiddle;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignRight: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignRight;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignRight = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.2", d: "M4.3458,6.2632 L19.6538,6.2632 M10.9365,12 L19.6545,12 M10.9365,17.7368 L19.6545,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignRight;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignTop: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignTop;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignTop = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M5.8796,4.1679 L18.1206,4.1679 M12,8.7726 L12,19.8316 M7.4133,12.4097 L12.0003,7.8227 L16.5863,12.4097" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignTop;
@@ -9,6 +9,7 @@ declare const fillIcons: {
9
9
  readonly ic_align_top: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
10
10
  readonly ic_arrow_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
11
11
  readonly ic_arrow_down_stepper: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
12
+ readonly ic_arrow_round_left: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
12
13
  readonly ic_arrow_up: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
13
14
  readonly ic_arrow_up_stepper: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
14
15
  readonly ic_audio: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -94,6 +95,12 @@ declare const fillIcons: {
94
95
  readonly ic_star: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
95
96
  readonly ic_subscribers: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
96
97
  readonly ic_text: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
98
+ readonly ic_text_align_bottom: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
99
+ readonly ic_text_align_center: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
100
+ readonly ic_text_align_left: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
101
+ readonly ic_text_align_middle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
102
+ readonly ic_text_align_right: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
103
+ readonly ic_text_align_top: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
97
104
  readonly ic_thumb_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
98
105
  readonly ic_thumb_up: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
99
106
  readonly ic_toggle_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
@@ -12,6 +12,7 @@ var AlignRight_1 = __importDefault(require("./AlignRight"));
12
12
  var AlignTop_1 = __importDefault(require("./AlignTop"));
13
13
  var ArrowDown_1 = __importDefault(require("./ArrowDown"));
14
14
  var ArrowDownStepper_1 = __importDefault(require("./ArrowDownStepper"));
15
+ var ArrowRoundLeft_1 = __importDefault(require("./ArrowRoundLeft"));
15
16
  var ArrowUp_1 = __importDefault(require("./ArrowUp"));
16
17
  var ArrowUpStepper_1 = __importDefault(require("./ArrowUpStepper"));
17
18
  var Audio_1 = __importDefault(require("./Audio"));
@@ -97,6 +98,12 @@ var SplitScreen_1 = __importDefault(require("./SplitScreen"));
97
98
  var Star_1 = __importDefault(require("./Star"));
98
99
  var Subscribers_1 = __importDefault(require("./Subscribers"));
99
100
  var Text_1 = __importDefault(require("./Text"));
101
+ var TextAlignBottom_1 = __importDefault(require("./TextAlignBottom"));
102
+ var TextAlignCenter_1 = __importDefault(require("./TextAlignCenter"));
103
+ var TextAlignLeft_1 = __importDefault(require("./TextAlignLeft"));
104
+ var TextAlignMiddle_1 = __importDefault(require("./TextAlignMiddle"));
105
+ var TextAlignRight_1 = __importDefault(require("./TextAlignRight"));
106
+ var TextAlignTop_1 = __importDefault(require("./TextAlignTop"));
100
107
  var ThumbDown_1 = __importDefault(require("./ThumbDown"));
101
108
  var ThumbUp_1 = __importDefault(require("./ThumbUp"));
102
109
  var ToggleDown_1 = __importDefault(require("./ToggleDown"));
@@ -127,6 +134,7 @@ var fillIcons = {
127
134
  ic_align_top: AlignTop_1.default,
128
135
  ic_arrow_down: ArrowDown_1.default,
129
136
  ic_arrow_down_stepper: ArrowDownStepper_1.default,
137
+ ic_arrow_round_left: ArrowRoundLeft_1.default,
130
138
  ic_arrow_up: ArrowUp_1.default,
131
139
  ic_arrow_up_stepper: ArrowUpStepper_1.default,
132
140
  ic_audio: Audio_1.default,
@@ -212,6 +220,12 @@ var fillIcons = {
212
220
  ic_star: Star_1.default,
213
221
  ic_subscribers: Subscribers_1.default,
214
222
  ic_text: Text_1.default,
223
+ ic_text_align_bottom: TextAlignBottom_1.default,
224
+ ic_text_align_center: TextAlignCenter_1.default,
225
+ ic_text_align_left: TextAlignLeft_1.default,
226
+ ic_text_align_middle: TextAlignMiddle_1.default,
227
+ ic_text_align_right: TextAlignRight_1.default,
228
+ ic_text_align_top: TextAlignTop_1.default,
215
229
  ic_thumb_down: ThumbDown_1.default,
216
230
  ic_thumb_up: ThumbUp_1.default,
217
231
  ic_toggle_down: ToggleDown_1.default,
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var ArrowRoundLeft = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { d: "M11.713386,2 C8.94538602,2 6.34438602,3.143 4.45738602,5.139 L4.45738602,3.46 C4.45738602,3.046 4.12138602,2.71 3.70738602,2.71 C3.29338602,2.71 2.95738602,3.046 2.95738602,3.46 L2.95738602,6.743 C2.95738602,7.311 3.41938602,7.772 3.98638602,7.772 L7.26938602,7.772 C7.68338602,7.772 8.01938602,7.437 8.01938602,7.022 C8.01938602,6.608 7.68338602,6.272 7.26938602,6.272 L5.44938602,6.272 C7.05938602,4.512 9.31338602,3.5 11.713386,3.5 C16.401386,3.5 20.215386,7.313 20.215386,12.002 C20.215386,16.69 16.401386,20.504 11.713386,20.504 C7.82638602,20.504 4.43938602,17.878 3.47638602,14.117 C3.37338602,13.716 2.96638602,13.478 2.56438602,13.577 C2.16238602,13.68 1.92138602,14.089 2.02338602,14.49 C3.15638602,18.914 7.14138602,22.004 11.713386,22.004 C17.228386,22.004 21.715386,17.517 21.715386,12.002 C21.715386,6.487 17.228386,2 11.713386,2", fill: color, fillRule: "evenodd" }, void 0) }), void 0));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M11.8671,2.7975 C9.3601,2.7975 6.9971,3.8105 5.2621,5.5865 L5.2621,4.1995 C5.2621,3.7855 4.9261,3.4495 4.5121,3.4495 C4.0971,3.4495 3.7621,3.7855 3.7621,4.1995 L3.7621,7.2155 C3.7621,7.7715 4.2141,8.2225 4.7691,8.2225 L7.7841,8.2225 C8.1991,8.2225 8.5341,7.8865 8.5341,7.4725 C8.5341,7.0585 8.1991,6.7225 7.7841,6.7225 L6.2511,6.7225 C7.7131,5.1805 9.7261,4.2975 11.8671,4.2975 C16.1401,4.2975 19.6171,7.7745 19.6171,12.0475 C19.6171,16.3205 16.1401,19.7975 11.8671,19.7975 C8.3241,19.7975 5.2371,17.4035 4.3591,13.9765 C4.2571,13.5755 3.8461,13.3335 3.4471,13.4365 C3.0451,13.5395 2.8041,13.9475 2.9061,14.3485 C3.9541,18.4405 7.6391,21.2975 11.8671,21.2975 C16.9681,21.2975 21.1171,17.1485 21.1171,12.0475 C21.1171,6.9465 16.9681,2.7975 11.8671,2.7975" }, void 0) }), void 0));
29
29
  };
30
30
  exports.default = ArrowRoundLeft;
@@ -25,6 +25,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
25
25
  var jsx_runtime_1 = require("react/jsx-runtime");
26
26
  var Layout = function (_a) {
27
27
  var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
- return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ stroke: "none", strokeWidth: "1", fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { d: "M17.25,3.25 L6.75,3.25 C4.817,3.25 3.25,4.817 3.25,6.75 L3.25,17.25 C3.25,19.183 4.817,20.75 6.75,20.75 L17.25,20.75 C19.183,20.75 20.75,19.183 20.75,17.25 L20.75,6.75 C20.75,4.817 19.183,3.25 17.25,3.25 L17.25,3.25 Z M17.25,4.75 C18.353,4.75 19.25,5.647 19.25,6.75 L19.25,17.25 C19.25,18.353 18.353,19.25 17.25,19.25 L6.75,19.25 C5.647,19.25 4.75,18.353 4.75,17.25 L4.75,6.75 C4.75,5.647 5.647,4.75 6.75,4.75 L17.25,4.75 Z", fill: color }, void 0), (0, jsx_runtime_1.jsx)("path", { d: "M9.8427,10.7932 L19.3747,10.7932 M9.8427,4.2937 L9.8427,19.5877", stroke: color, strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }, void 0)] }), void 0) }), void 0));
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M11.9999,2.5665 C11.4459,2.5665 10.8919,2.7035 10.3979,2.9765 L3.4269,6.8385 C2.8439,7.1615 2.49489786,7.7215 2.49489786,8.3345 C2.4939,8.9475 2.8429,9.5085 3.4269,9.8325 L10.3979,13.6925 C10.8919,13.9665 11.4459,14.1045 11.9999,14.1045 C12.5539,14.1045 13.1079,13.9675 13.6019,13.6935 L20.5739,9.8315 C21.1579,9.5085 21.5059,8.9475 21.5059,8.3345 C21.5049,7.7215 21.1569,7.1615 20.5729,6.8385 L13.6019,2.9765 C13.1079,2.7035 12.5539,2.5665 11.9999,2.5665 M11.9999,4.0665 C12.3099,4.0665 12.6129,4.1435 12.8749,4.2885 L19.8459,8.1505 C19.9229,8.1935 20.0059,8.2645 20.0059,8.3355 C20.0059,8.4065 19.9239,8.4765 19.8469,8.5195 L12.8729,12.3825 C12.6109,12.5275 12.3099,12.6045 11.9999,12.6045 C11.6909,12.6045 11.3889,12.5265 11.1249,12.3805 L4.1549,8.5205 C4.0769,8.4775 3.9949,8.4065 3.9949,8.3355 C3.9949,8.2645 4.0769,8.1935 4.1539,8.1505 L11.1249,4.2885 C11.3879,4.1435 11.6899,4.0665 11.9999,4.0665" }, void 0), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M20.791,12.3918 C20.639,12.6358 20.418,12.8458 20.141,12.9988 L13.521,16.6658 C13.052,16.9268 12.526,17.0558 12,17.0558 C11.474,17.0558 10.948,16.9258 10.479,16.6648 L3.86,12.9998 C3.561,12.8348 3.328,12.6038 3.176,12.3358 M20.791,16.1125 C20.639,16.3565 20.418,16.5665 20.141,16.7195 L13.521,20.3865 C13.052,20.6475 12.526,20.7765 12,20.7765 C11.474,20.7765 10.948,20.6465 10.479,20.3855 L3.86,16.7205 C3.561,16.5555 3.328,16.3245 3.176,16.0565" }, void 0)] }), void 0) }), void 0));
29
29
  };
30
30
  exports.default = Layout;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignBottom: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignBottom;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignBottom = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M18.1204,19.8321 L5.8794,19.8321 M12,15.2274 L12,4.1684 M16.5867,11.5903 L11.9997,16.1773 L7.4137,11.5903" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignBottom;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignCenter: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignCenter;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignCenter = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.7", d: "M4.3458,6.2632 L19.6538,6.2632 M7.6412,12 L16.3592,12 M7.6412,17.7368 L16.3592,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignCenter;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignLeft: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignLeft;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignLeft = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.7", d: "M4.3458,6.2632 L19.6538,6.2632 M4.3458,12 L13.0638,12 M4.3458,17.7368 L13.0638,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignLeft;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignMiddle: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignMiddle;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignMiddle = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M5.8796,12 L18.1206,12 M12,16.0369 L12,21.0419 M9.3148,17.9123 L11.9998,15.2273 L14.6848,17.9123 M12,7.9631 L12,2.9581 M14.6852,6.0877 L12.0002,8.7727 L9.3152,6.0877" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignMiddle;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignRight: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignRight;
@@ -0,0 +1,30 @@
1
+ "use strict";
2
+ var __assign = (this && this.__assign) || function () {
3
+ __assign = Object.assign || function(t) {
4
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
5
+ s = arguments[i];
6
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
7
+ t[p] = s[p];
8
+ }
9
+ return t;
10
+ };
11
+ return __assign.apply(this, arguments);
12
+ };
13
+ var __rest = (this && this.__rest) || function (s, e) {
14
+ var t = {};
15
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
16
+ t[p] = s[p];
17
+ if (s != null && typeof Object.getOwnPropertySymbols === "function")
18
+ for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
19
+ if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
20
+ t[p[i]] = s[p[i]];
21
+ }
22
+ return t;
23
+ };
24
+ Object.defineProperty(exports, "__esModule", { value: true });
25
+ var jsx_runtime_1 = require("react/jsx-runtime");
26
+ var TextAlignRight = function (_a) {
27
+ var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
28
+ return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.7", d: "M4.3458,6.2632 L19.6538,6.2632 M10.9365,12 L19.6545,12 M10.9365,17.7368 L19.6545,17.7368" }, void 0) }), void 0));
29
+ };
30
+ exports.default = TextAlignRight;
@@ -0,0 +1,4 @@
1
+ /// <reference types="react" />
2
+ import type IconType from '../IconType';
3
+ declare const TextAlignTop: ({ color, size, ...rest }: IconType) => JSX.Element;
4
+ export default TextAlignTop;