@univerjs/icons-vue 1.21.0 → 1.23.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 (67) hide show
  1. package/dist/cjs/database-function-icon.cjs +57 -0
  2. package/dist/cjs/date-function-icon.cjs +79 -0
  3. package/dist/cjs/engineering-function-icon.cjs +57 -0
  4. package/dist/cjs/financial-function-icon.cjs +57 -0
  5. package/dist/cjs/formula-accent-icon.cjs +61 -0
  6. package/dist/cjs/formula-bracket-icon.cjs +66 -0
  7. package/dist/cjs/formula-fraction-icon.cjs +61 -0
  8. package/dist/cjs/formula-function-icon.cjs +66 -0
  9. package/dist/cjs/formula-integral-icon.cjs +66 -0
  10. package/dist/cjs/formula-large-operator-icon.cjs +73 -0
  11. package/dist/cjs/formula-limit-logarithm-icon.cjs +80 -0
  12. package/dist/cjs/formula-matrix-icon.cjs +76 -0
  13. package/dist/cjs/formula-operator-icon.cjs +51 -0
  14. package/dist/cjs/formula-radical-icon.cjs +70 -0
  15. package/dist/cjs/formula-script-icon.cjs +49 -0
  16. package/dist/cjs/index.cjs +147 -0
  17. package/dist/cjs/information-function-icon.cjs +56 -0
  18. package/dist/cjs/logical-function-icon.cjs +57 -0
  19. package/dist/cjs/lookup-function-icon.cjs +78 -0
  20. package/dist/cjs/math-function-icon.cjs +57 -0
  21. package/dist/cjs/statistical-function-icon.cjs +57 -0
  22. package/dist/cjs/text-function-icon.cjs +57 -0
  23. package/dist/esm/database-function-icon.d.ts +18 -0
  24. package/dist/esm/database-function-icon.js +52 -0
  25. package/dist/esm/date-function-icon.d.ts +18 -0
  26. package/dist/esm/date-function-icon.js +74 -0
  27. package/dist/esm/engineering-function-icon.d.ts +18 -0
  28. package/dist/esm/engineering-function-icon.js +52 -0
  29. package/dist/esm/financial-function-icon.d.ts +18 -0
  30. package/dist/esm/financial-function-icon.js +52 -0
  31. package/dist/esm/formula-accent-icon.d.ts +18 -0
  32. package/dist/esm/formula-accent-icon.js +56 -0
  33. package/dist/esm/formula-bracket-icon.d.ts +18 -0
  34. package/dist/esm/formula-bracket-icon.js +61 -0
  35. package/dist/esm/formula-fraction-icon.d.ts +18 -0
  36. package/dist/esm/formula-fraction-icon.js +56 -0
  37. package/dist/esm/formula-function-icon.d.ts +18 -0
  38. package/dist/esm/formula-function-icon.js +61 -0
  39. package/dist/esm/formula-integral-icon.d.ts +18 -0
  40. package/dist/esm/formula-integral-icon.js +61 -0
  41. package/dist/esm/formula-large-operator-icon.d.ts +18 -0
  42. package/dist/esm/formula-large-operator-icon.js +68 -0
  43. package/dist/esm/formula-limit-logarithm-icon.d.ts +18 -0
  44. package/dist/esm/formula-limit-logarithm-icon.js +75 -0
  45. package/dist/esm/formula-matrix-icon.d.ts +18 -0
  46. package/dist/esm/formula-matrix-icon.js +71 -0
  47. package/dist/esm/formula-operator-icon.d.ts +18 -0
  48. package/dist/esm/formula-operator-icon.js +46 -0
  49. package/dist/esm/formula-radical-icon.d.ts +18 -0
  50. package/dist/esm/formula-radical-icon.js +65 -0
  51. package/dist/esm/formula-script-icon.d.ts +18 -0
  52. package/dist/esm/formula-script-icon.js +44 -0
  53. package/dist/esm/index.d.ts +21 -0
  54. package/dist/esm/index.js +22 -1
  55. package/dist/esm/information-function-icon.d.ts +18 -0
  56. package/dist/esm/information-function-icon.js +51 -0
  57. package/dist/esm/logical-function-icon.d.ts +18 -0
  58. package/dist/esm/logical-function-icon.js +52 -0
  59. package/dist/esm/lookup-function-icon.d.ts +18 -0
  60. package/dist/esm/lookup-function-icon.js +73 -0
  61. package/dist/esm/math-function-icon.d.ts +18 -0
  62. package/dist/esm/math-function-icon.js +52 -0
  63. package/dist/esm/statistical-function-icon.d.ts +18 -0
  64. package/dist/esm/statistical-function-icon.js +52 -0
  65. package/dist/esm/text-function-icon.d.ts +18 -0
  66. package/dist/esm/text-function-icon.js +52 -0
  67. package/package.json +2 -2
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/database-function-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "rect",
19
+ "attrs": {
20
+ "width": 11.2,
21
+ "height": 13.2,
22
+ "x": 2.4,
23
+ "y": 1.4,
24
+ "stroke": "currentColor",
25
+ "stroke-width": 1.2,
26
+ "rx": 1.6
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M5 12H11M5.4 5.1C5.4 4.55 6.55 4.1 8 4.1C9.45 4.1 10.6 4.55 10.6 5.1C10.6 5.65 9.45 6.1 8 6.1C6.55 6.1 5.4 5.65 5.4 5.1ZM5.4 5.1V8.9C5.4 9.45 6.55 9.9 8 9.9C9.45 9.9 10.6 9.45 10.6 8.9V5.1M5.4 7C5.4 7.55 6.55 8 8 8C9.45 8 10.6 7.55 10.6 7"
36
+ }
37
+ }]
38
+ };
39
+ const DatabaseFunctionIcon = (0, vue.defineComponent)({
40
+ name: "DatabaseFunctionIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "database-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.DatabaseFunctionIcon = DatabaseFunctionIcon;
57
+ exports.default = DatabaseFunctionIcon;
@@ -0,0 +1,79 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/date-function-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "rect",
20
+ "attrs": {
21
+ "width": 11.2,
22
+ "height": 13.2,
23
+ "x": 2.4,
24
+ "y": 1.4,
25
+ "stroke": "currentColor",
26
+ "stroke-width": 1.2,
27
+ "rx": 1.6
28
+ }
29
+ },
30
+ {
31
+ "tag": "path",
32
+ "attrs": {
33
+ "stroke": "currentColor",
34
+ "stroke-linecap": "round",
35
+ "stroke-width": 1.2,
36
+ "d": "M5 12H11"
37
+ }
38
+ },
39
+ {
40
+ "tag": "circle",
41
+ "attrs": {
42
+ "cx": 8,
43
+ "cy": 7.1,
44
+ "r": 2.65,
45
+ "stroke": "currentColor",
46
+ "stroke-width": 1.2
47
+ }
48
+ },
49
+ {
50
+ "tag": "path",
51
+ "attrs": {
52
+ "stroke": "currentColor",
53
+ "stroke-linecap": "round",
54
+ "stroke-linejoin": "round",
55
+ "stroke-width": 1.2,
56
+ "d": "M8 5.5V7.35L9.25 8.2"
57
+ }
58
+ }
59
+ ]
60
+ };
61
+ const DateFunctionIcon = (0, vue.defineComponent)({
62
+ name: "DateFunctionIcon",
63
+ inheritAttrs: false,
64
+ props: { extend: {
65
+ type: Object,
66
+ default: void 0
67
+ } },
68
+ setup(props, { attrs }) {
69
+ return () => (0, vue.h)(ts_base_js.IconBase, {
70
+ ...attrs,
71
+ extend: props.extend,
72
+ id: "date-function-icon",
73
+ icon: element
74
+ });
75
+ }
76
+ });
77
+ //#endregion
78
+ exports.DateFunctionIcon = DateFunctionIcon;
79
+ exports.default = DateFunctionIcon;
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/engineering-function-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "rect",
19
+ "attrs": {
20
+ "width": 11.2,
21
+ "height": 13.2,
22
+ "x": 2.4,
23
+ "y": 1.4,
24
+ "stroke": "currentColor",
25
+ "stroke-width": 1.2,
26
+ "rx": 1.6
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M5 12H11M5.4 9.8L10.5 4.7V9.8H5.4ZM7.1 9.5V8.3M8.4 9.5V7"
36
+ }
37
+ }]
38
+ };
39
+ const EngineeringFunctionIcon = (0, vue.defineComponent)({
40
+ name: "EngineeringFunctionIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "engineering-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.EngineeringFunctionIcon = EngineeringFunctionIcon;
57
+ exports.default = EngineeringFunctionIcon;
@@ -0,0 +1,57 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/financial-function-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "none",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [{
18
+ "tag": "rect",
19
+ "attrs": {
20
+ "width": 11.2,
21
+ "height": 13.2,
22
+ "x": 2.4,
23
+ "y": 1.4,
24
+ "stroke": "currentColor",
25
+ "stroke-width": 1.2,
26
+ "rx": 1.6
27
+ }
28
+ }, {
29
+ "tag": "path",
30
+ "attrs": {
31
+ "stroke": "currentColor",
32
+ "stroke-linecap": "round",
33
+ "stroke-linejoin": "round",
34
+ "stroke-width": 1.2,
35
+ "d": "M5 12H11M8 3.9V10M9.7 5.1C9.25 4.72 8.65 4.52 8 4.52C6.98 4.52 6.32 4.95 6.32 5.6C6.32 7.28 9.8 6.3 9.8 7.98C9.8 8.7 9.1 9.18 8 9.18C7.27 9.18 6.58 8.98 6.02 8.6"
36
+ }
37
+ }]
38
+ };
39
+ const FinancialFunctionIcon = (0, vue.defineComponent)({
40
+ name: "FinancialFunctionIcon",
41
+ inheritAttrs: false,
42
+ props: { extend: {
43
+ type: Object,
44
+ default: void 0
45
+ } },
46
+ setup(props, { attrs }) {
47
+ return () => (0, vue.h)(ts_base_js.IconBase, {
48
+ ...attrs,
49
+ extend: props.extend,
50
+ id: "financial-function-icon",
51
+ icon: element
52
+ });
53
+ }
54
+ });
55
+ //#endregion
56
+ exports.FinancialFunctionIcon = FinancialFunctionIcon;
57
+ exports.default = FinancialFunctionIcon;
@@ -0,0 +1,61 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-accent-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M502 472H449L413 426H409C388 456 358 479 305 479C174 479 49 341 49 159C49 43 100 -12 172 -12C229 -12 288 22 339 85H346C343 67 339 53 339 38C339 5 359 -10 395 -10C455 -10 497 33 539 97L519 112C506 95 477 60 445 60C429 60 425 68 425 81C425 96 430 118 430 118ZM389 344C389 313 378 240 358 181C329 96 285 54 218 54C168 54 138 77 138 169C138 303 202 441 302 441C358 441 389 397 389 344Z",
22
+ "transform": "matrix(.025 0 0 -.024 1.3 15)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "circle",
27
+ "attrs": {
28
+ "cx": 5.9,
29
+ "cy": 1,
30
+ "r": 1
31
+ }
32
+ },
33
+ {
34
+ "tag": "circle",
35
+ "attrs": {
36
+ "cx": 10.1,
37
+ "cy": 1,
38
+ "r": 1
39
+ }
40
+ }
41
+ ]
42
+ };
43
+ const FormulaAccentIcon = (0, vue.defineComponent)({
44
+ name: "FormulaAccentIcon",
45
+ inheritAttrs: false,
46
+ props: { extend: {
47
+ type: Object,
48
+ default: void 0
49
+ } },
50
+ setup(props, { attrs }) {
51
+ return () => (0, vue.h)(ts_base_js.IconBase, {
52
+ ...attrs,
53
+ extend: props.extend,
54
+ id: "formula-accent-icon",
55
+ icon: element
56
+ });
57
+ }
58
+ });
59
+ //#endregion
60
+ exports.FormulaAccentIcon = FormulaAccentIcon;
61
+ exports.default = FormulaAccentIcon;
@@ -0,0 +1,66 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-bracket-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M25 245C72 240 115 233 115 173C115 126 96 8 96 -52C96 -167 184 -197 282 -197V-165C225 -165 170 -150 170 -64C170 -13 185 68 185 129C185 212 144 247 93 267V273C144 293 185 328 185 411C185 472 170 552 170 603C170 689 225 704 282 704V736C184 736 96 706 96 591C96 531 115 414 115 367C115 307 72 300 25 295Z",
22
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0116 0 0 -.0097 .1 10.62)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M45 270C45 47 150 -112 311 -196L327 -170C181 -71 127 66 127 270C127 474 181 611 327 710L311 736C150 652 45 493 45 270Z",
29
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0116 0 0 -.0097 3.9 10.62)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "d": "M312 270C312 493 207 652 46 736L30 710C176 611 230 474 230 270C230 66 176 -71 30 -170L46 -196C207 -112 312 47 312 270Z",
36
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0116 0 0 -.0097 8.03 10.62)"
37
+ }
38
+ },
39
+ {
40
+ "tag": "path",
41
+ "attrs": {
42
+ "d": "M302 295C255 300 212 307 212 367C212 414 231 531 231 591C231 706 143 736 45 736V704C102 704 157 689 157 603C157 552 142 472 142 411C142 328 183 293 234 273V267C183 247 142 212 142 129C142 68 157 -13 157 -64C157 -150 102 -165 45 -165V-197C143 -197 231 -167 231 -52C231 8 212 126 212 173C212 233 255 240 302 245Z",
43
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0116 0 0 -.0097 12.18 10.62)"
44
+ }
45
+ }
46
+ ]
47
+ };
48
+ const FormulaBracketIcon = (0, vue.defineComponent)({
49
+ name: "FormulaBracketIcon",
50
+ inheritAttrs: false,
51
+ props: { extend: {
52
+ type: Object,
53
+ default: void 0
54
+ } },
55
+ setup(props, { attrs }) {
56
+ return () => (0, vue.h)(ts_base_js.IconBase, {
57
+ ...attrs,
58
+ extend: props.extend,
59
+ id: "formula-bracket-icon",
60
+ icon: element
61
+ });
62
+ }
63
+ });
64
+ //#endregion
65
+ exports.FormulaBracketIcon = FormulaBracketIcon;
66
+ exports.default = FormulaBracketIcon;
@@ -0,0 +1,61 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-fraction-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M315 298H312L300 349C286 403 267 447 243 475H228L89 459V429C89 429 104 432 120 432C186 433 203 406 230 322L258 231L186 126C147 70 129 69 125 69C108 69 84 82 62 82C38 82 23 60 23 40C23 15 38 -9 81 -9C141 -9 174 38 206 90L270 194H274L299 93C313 28 335 -10 381 -10C449 -10 491 58 520 102L499 118C472 82 453 62 427 62C396 62 376 99 348 191L327 259L388 356C405 384 419 398 442 398C455 398 478 388 494 388C521 388 540 411 540 435C540 463 528 479 490 479C431 479 391 430 364 382Z",
22
+ "transform": "matrix(.9 0 0 1.04 .8 -.32) matrix(.0112 0 0 -.0112 4.9 5.9)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "stroke": "currentColor",
29
+ "stroke-width": .75,
30
+ "d": "M3.3 7.125H12.7",
31
+ "transform": "matrix(.9 0 0 1.04 .8 -.32)"
32
+ }
33
+ },
34
+ {
35
+ "tag": "path",
36
+ "attrs": {
37
+ "d": "M251 325C239 405 232 437 210 475H195L53 464V435C53 435 74 437 88 437C149 437 154 388 161 343L220 -9C192 -52 112 -165 93 -165C71 -165 60 -112 22 -112C-1 -112 -17 -125 -17 -155C-17 -192 18 -220 60 -220C136 -220 197 -112 289 15C341 87 398 173 452 268C484 322 496 367 496 406C496 449 470 482 433 482C404 482 389 464 389 443C389 405 438 377 438 351C438 327 429 303 405 264L290 79H284L275 179Z",
38
+ "transform": "matrix(.9 0 0 1.04 .8 -.32) matrix(.0104 0 0 -.0104 5.15 13.25)"
39
+ }
40
+ }
41
+ ]
42
+ };
43
+ const FormulaFractionIcon = (0, vue.defineComponent)({
44
+ name: "FormulaFractionIcon",
45
+ inheritAttrs: false,
46
+ props: { extend: {
47
+ type: Object,
48
+ default: void 0
49
+ } },
50
+ setup(props, { attrs }) {
51
+ return () => (0, vue.h)(ts_base_js.IconBase, {
52
+ ...attrs,
53
+ extend: props.extend,
54
+ id: "formula-fraction-icon",
55
+ icon: element
56
+ });
57
+ }
58
+ });
59
+ //#endregion
60
+ exports.FormulaFractionIcon = FormulaFractionIcon;
61
+ exports.default = FormulaFractionIcon;
@@ -0,0 +1,66 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-function-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M39 164 42 -8H63L84 15H86C112 4 142 -11 200 -11C290 -11 368 25 368 119C368 193 319 230 228 278C144 321 111 346 111 385C111 430 146 451 192 451C253 451 290 422 312 327H339L336 480H316L299 459H298C273 471 243 485 193 485C107 485 40 441 40 359C40 285 81 250 172 204C265 158 284 139 284 92C284 45 248 26 198 26C124 26 86 61 65 164Z",
22
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0091 0 0 -.0105 .25 11.2)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M257 28C190 28 185 43 185 101V482H159L33 454V425C33 425 44 427 58 427C87 427 102 423 102 380V101C102 44 99 28 32 28V0H257ZM145 673C110 673 88 647 88 617C88 586 111 560 145 560C180 560 202 586 202 617C202 647 180 673 145 673Z",
29
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0091 0 0 -.0105 3.84 11.2)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "d": "M481 307C481 422 438 485 347 485C284 485 240 449 186 401H182L183 482H160L33 453V424C33 424 43 426 60 426C87 426 102 418 102 382V101C102 45 99 28 32 28V0H261V28C189 28 185 45 185 101V358C215 385 252 421 306 421C351 421 398 402 398 282V101C398 45 395 28 324 28V0H555V28C488 28 481 45 481 101Z",
36
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0091 0 0 -.0105 6.44 11.2)"
37
+ }
38
+ },
39
+ {
40
+ "tag": "path",
41
+ "attrs": {
42
+ "d": "M497 474C497 619 453 717 358 717C195 717 55 482 55 208C55 53 121 -14 210 -14C366 -14 497 170 497 474ZM230 73C177 73 109 109 109 250C109 276 111 313 114 338H439C412 149 326 73 230 73ZM338 630C416 630 448 544 448 450C448 432 447 410 446 391H124C159 541 253 630 338 630Z",
43
+ "transform": "matrix(1.04 0 0 1 -.32 0) matrix(.0085 0 0 -.0088 11.2 11.25)"
44
+ }
45
+ }
46
+ ]
47
+ };
48
+ const FormulaFunctionIcon = (0, vue.defineComponent)({
49
+ name: "FormulaFunctionIcon",
50
+ inheritAttrs: false,
51
+ props: { extend: {
52
+ type: Object,
53
+ default: void 0
54
+ } },
55
+ setup(props, { attrs }) {
56
+ return () => (0, vue.h)(ts_base_js.IconBase, {
57
+ ...attrs,
58
+ extend: props.extend,
59
+ id: "formula-function-icon",
60
+ icon: element
61
+ });
62
+ }
63
+ });
64
+ //#endregion
65
+ exports.FormulaFunctionIcon = FormulaFunctionIcon;
66
+ exports.default = FormulaFunctionIcon;
@@ -0,0 +1,66 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-integral-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M578 671C558 653 548 634 548 610C548 581 563 566 587 566C617 566 654 591 654 642C654 699 611 727 562 727C383 727 322 461 282 246C241 29 217 -187 128 -187C111 -187 104 -181 104 -181V-174C117 -155 127 -139 127 -111C127 -86 114 -69 88 -69C57 -69 30 -95 30 -141C30 -182 58 -226 129 -226C264 -226 342 -2 395 292C426 465 452 683 544 683C569 683 578 677 578 677Z",
22
+ "transform": "matrix(.015 0 0 -.0162 .45 12.25)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M315 298H312L300 349C286 403 267 447 243 475H228L89 459V429C89 429 104 432 120 432C186 433 203 406 230 322L258 231L186 126C147 70 129 69 125 69C108 69 84 82 62 82C38 82 23 60 23 40C23 15 38 -9 81 -9C141 -9 174 38 206 90L270 194H274L299 93C313 28 335 -10 381 -10C449 -10 491 58 520 102L499 118C472 82 453 62 427 62C396 62 376 99 348 191L327 259L388 356C405 384 419 398 442 398C455 398 478 388 494 388C521 388 540 411 540 435C540 463 528 479 490 479C431 479 391 430 364 382Z",
29
+ "transform": "matrix(.0082 0 0 -.0082 10.2 5.15)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "d": "M658 225V293H62V225Z",
36
+ "transform": "matrix(.0041 0 0 -.0052 8.25 15.2)"
37
+ }
38
+ },
39
+ {
40
+ "tag": "path",
41
+ "attrs": {
42
+ "d": "M315 298H312L300 349C286 403 267 447 243 475H228L89 459V429C89 429 104 432 120 432C186 433 203 406 230 322L258 231L186 126C147 70 129 69 125 69C108 69 84 82 62 82C38 82 23 60 23 40C23 15 38 -9 81 -9C141 -9 174 38 206 90L270 194H274L299 93C313 28 335 -10 381 -10C449 -10 491 58 520 102L499 118C472 82 453 62 427 62C396 62 376 99 348 191L327 259L388 356C405 384 419 398 442 398C455 398 478 388 494 388C521 388 540 411 540 435C540 463 528 479 490 479C431 479 391 430 364 382Z",
43
+ "transform": "matrix(.0082 0 0 -.0082 10.8 15.3)"
44
+ }
45
+ }
46
+ ]
47
+ };
48
+ const FormulaIntegralIcon = (0, vue.defineComponent)({
49
+ name: "FormulaIntegralIcon",
50
+ inheritAttrs: false,
51
+ props: { extend: {
52
+ type: Object,
53
+ default: void 0
54
+ } },
55
+ setup(props, { attrs }) {
56
+ return () => (0, vue.h)(ts_base_js.IconBase, {
57
+ ...attrs,
58
+ extend: props.extend,
59
+ id: "formula-integral-icon",
60
+ icon: element
61
+ });
62
+ }
63
+ });
64
+ //#endregion
65
+ exports.FormulaIntegralIcon = FormulaIntegralIcon;
66
+ exports.default = FormulaIntegralIcon;
@@ -0,0 +1,73 @@
1
+ Object.defineProperties(exports, {
2
+ __esModule: { value: true },
3
+ [Symbol.toStringTag]: { value: "Module" }
4
+ });
5
+ let vue = require("vue");
6
+ let ts_base_js = require("./base.cjs");
7
+ //#region ts/formula-large-operator-icon.ts
8
+ const element = {
9
+ "tag": "svg",
10
+ "attrs": {
11
+ "xmlns": "http://www.w3.org/2000/svg",
12
+ "fill": "currentColor",
13
+ "viewBox": "0 0 16 16",
14
+ "width": "1em",
15
+ "height": "1em"
16
+ },
17
+ "children": [
18
+ {
19
+ "tag": "path",
20
+ "attrs": {
21
+ "d": "M861 70H821C781 -66 746 -150 621 -150H196V-145L545 315V334L237 725V729H566C700 729 766 699 789 532H828L817 782H69V758L449 282L62 -224V-248H800Z",
22
+ "transform": "matrix(1 0 0 1.03 0 -.24) matrix(.0108 0 0 -.0083 3.65 9.9)"
23
+ }
24
+ },
25
+ {
26
+ "tag": "path",
27
+ "attrs": {
28
+ "d": "M521 112C506 93 481 60 447 60C433 60 428 68 428 79C428 91 430 103 430 103L487 334C490 348 496 382 496 408C496 444 481 479 430 479C312 479 227 334 185 259H177L227 476H205L66 465V438C66 438 86 440 99 440C122 440 131 430 131 413C131 398 128 380 128 380L47 0H129L165 158C197 227 307 407 380 407C403 407 410 390 410 367C410 347 403 319 403 319L344 88C343 83 339 65 339 49C339 19 354 -10 404 -10C476 -10 516 60 542 97Z",
29
+ "transform": "matrix(1 0 0 1.03 0 -.24) matrix(.0048 0 0 -.005 6.65 2.7)"
30
+ }
31
+ },
32
+ {
33
+ "tag": "path",
34
+ "attrs": {
35
+ "d": "M257 28C190 28 185 43 185 101V482H159L33 454V425C33 425 44 427 58 427C87 427 102 423 102 380V101C102 44 99 28 32 28V0H257ZM145 673C110 673 88 647 88 617C88 586 111 560 145 560C180 560 202 586 202 617C202 647 180 673 145 673Z",
36
+ "transform": "matrix(1 0 0 1.03 0 -.24) matrix(.004 0 0 -.0044 5 15.8)"
37
+ }
38
+ },
39
+ {
40
+ "tag": "path",
41
+ "attrs": {
42
+ "d": "M658 327V395H62V327ZM658 123V190H62V123Z",
43
+ "transform": "matrix(1 0 0 1.03 0 -.24) matrix(.004 0 0 -.0044 6.14 15.8)"
44
+ }
45
+ },
46
+ {
47
+ "tag": "path",
48
+ "attrs": {
49
+ "d": "M468 317C468 523 378 642 249 642C104 642 27 510 27 320C27 143 86 -11 247 -11C404 -11 468 146 468 317ZM371 311C371 119 326 25 247 25C167 25 123 121 123 315C123 513 167 608 246 608C328 608 371 514 371 311Z",
50
+ "transform": "matrix(1 0 0 1.03 0 -.24) matrix(.004 0 0 -.0044 9.02 15.8)"
51
+ }
52
+ }
53
+ ]
54
+ };
55
+ const FormulaLargeOperatorIcon = (0, vue.defineComponent)({
56
+ name: "FormulaLargeOperatorIcon",
57
+ inheritAttrs: false,
58
+ props: { extend: {
59
+ type: Object,
60
+ default: void 0
61
+ } },
62
+ setup(props, { attrs }) {
63
+ return () => (0, vue.h)(ts_base_js.IconBase, {
64
+ ...attrs,
65
+ extend: props.extend,
66
+ id: "formula-large-operator-icon",
67
+ icon: element
68
+ });
69
+ }
70
+ });
71
+ //#endregion
72
+ exports.FormulaLargeOperatorIcon = FormulaLargeOperatorIcon;
73
+ exports.default = FormulaLargeOperatorIcon;