@nice2dev/icons-math 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +223 -0
- package/dist/createMathIcon-BbQhEo0A.mjs +157 -0
- package/dist/createMathIcon-BbQhEo0A.mjs.map +1 -0
- package/dist/createMathIcon-CK9tbq5-.js +156 -0
- package/dist/createMathIcon-CK9tbq5-.js.map +1 -0
- package/dist/createMathIcon.d.ts +14 -0
- package/dist/createMathIcon.d.ts.map +1 -0
- package/dist/functions.cjs +137 -0
- package/dist/functions.cjs.map +1 -0
- package/dist/functions.d.ts +57 -0
- package/dist/functions.d.ts.map +1 -0
- package/dist/functions.mjs +137 -0
- package/dist/functions.mjs.map +1 -0
- package/dist/geometry.cjs +125 -0
- package/dist/geometry.cjs.map +1 -0
- package/dist/geometry.d.ts +56 -0
- package/dist/geometry.d.ts.map +1 -0
- package/dist/geometry.mjs +125 -0
- package/dist/geometry.mjs.map +1 -0
- package/dist/index.cjs +190 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.ts +114 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.mjs +190 -0
- package/dist/index.mjs.map +1 -0
- package/dist/operators.cjs +124 -0
- package/dist/operators.cjs.map +1 -0
- package/dist/operators.d.ts +56 -0
- package/dist/operators.d.ts.map +1 -0
- package/dist/operators.mjs +124 -0
- package/dist/operators.mjs.map +1 -0
- package/dist/sets.cjs +126 -0
- package/dist/sets.cjs.map +1 -0
- package/dist/sets.d.ts +56 -0
- package/dist/sets.d.ts.map +1 -0
- package/dist/sets.mjs +126 -0
- package/dist/sets.mjs.map +1 -0
- package/dist/statistics.cjs +164 -0
- package/dist/statistics.cjs.map +1 -0
- package/dist/statistics.d.ts +56 -0
- package/dist/statistics.d.ts.map +1 -0
- package/dist/statistics.mjs +164 -0
- package/dist/statistics.mjs.map +1 -0
- package/dist/types.d.ts +59 -0
- package/dist/types.d.ts.map +1 -0
- package/package.json +78 -0
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const createMathIcon = require("./createMathIcon-CK9tbq5-.js");
|
|
5
|
+
const Function = createMathIcon.createMathIcon(
|
|
6
|
+
"Function",
|
|
7
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
8
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "6", y: "16", fontSize: "12", fontFamily: "serif", fontStyle: "italic", children: "f" }),
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "12", y: "18", fontSize: "10", fontFamily: "serif", children: "(x)" })
|
|
10
|
+
] })
|
|
11
|
+
);
|
|
12
|
+
const Integral = createMathIcon.createMathIcon(
|
|
13
|
+
"Integral",
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
15
|
+
"path",
|
|
16
|
+
{
|
|
17
|
+
d: "M9 3c1 0 2 1 2 3v12c0 2-1 3-2 3M15 3c-1 0-2 1-2 3v12c0 2 1 3 2 3",
|
|
18
|
+
strokeLinecap: "round"
|
|
19
|
+
}
|
|
20
|
+
)
|
|
21
|
+
);
|
|
22
|
+
const Derivative = createMathIcon.createMathIcon(
|
|
23
|
+
"Derivative",
|
|
24
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
25
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "8", y: "10", fontSize: "10", fontFamily: "serif", children: "d" }),
|
|
26
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 12h14", strokeLinecap: "round" }),
|
|
27
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "8", y: "20", fontSize: "10", fontFamily: "serif", children: "dx" })
|
|
28
|
+
] })
|
|
29
|
+
);
|
|
30
|
+
const Summation = createMathIcon.createMathIcon(
|
|
31
|
+
"Summation",
|
|
32
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4h12M6 4l6 8-6 8h12", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
33
|
+
);
|
|
34
|
+
const Product = createMathIcon.createMathIcon(
|
|
35
|
+
"Product",
|
|
36
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
37
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 5h14", strokeLinecap: "round" }),
|
|
38
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 5v14M16 5v14", strokeLinecap: "round" })
|
|
39
|
+
] })
|
|
40
|
+
);
|
|
41
|
+
const Limit = createMathIcon.createMathIcon(
|
|
42
|
+
"Limit",
|
|
43
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
44
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "3", y: "14", fontSize: "10", fontFamily: "serif", children: "lim" }),
|
|
45
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "13", y: "20", fontSize: "8", fontFamily: "serif", children: "x→∞" })
|
|
46
|
+
] })
|
|
47
|
+
);
|
|
48
|
+
const Pi = createMathIcon.createMathIcon(
|
|
49
|
+
"Pi",
|
|
50
|
+
/* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 6h14M8 6v12M16 6v12", strokeLinecap: "round" }) })
|
|
51
|
+
);
|
|
52
|
+
const InfinityIcon = createMathIcon.createMathIcon(
|
|
53
|
+
"InfinityIcon",
|
|
54
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
55
|
+
"path",
|
|
56
|
+
{
|
|
57
|
+
d: "M8 12c0-2 2-4 4-4s4 2 4 4-2 4-4 4-4-2-4-4zm0 0c0 2-2 4-4 4s-4-2-4-4 2-4 4-4 4 2 4 4",
|
|
58
|
+
transform: "translate(8, 0)",
|
|
59
|
+
strokeLinecap: "round"
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
);
|
|
63
|
+
const Sigma = createMathIcon.createMathIcon(
|
|
64
|
+
"Sigma",
|
|
65
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18 4H6l6 8-6 8h12", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
66
|
+
);
|
|
67
|
+
const Delta = createMathIcon.createMathIcon(
|
|
68
|
+
"Delta",
|
|
69
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4L4 20h16L12 4z", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
70
|
+
);
|
|
71
|
+
const Theta = createMathIcon.createMathIcon(
|
|
72
|
+
"Theta",
|
|
73
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
74
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "12", rx: "6", ry: "8" }),
|
|
75
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 12h12", strokeLinecap: "round" })
|
|
76
|
+
] })
|
|
77
|
+
);
|
|
78
|
+
const Lambda = createMathIcon.createMathIcon(
|
|
79
|
+
"Lambda",
|
|
80
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 20L12 4l6 16", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
81
|
+
);
|
|
82
|
+
const Factorial = createMathIcon.createMathIcon(
|
|
83
|
+
"Factorial",
|
|
84
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
85
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "8", y: "16", fontSize: "14", fontFamily: "serif", fontStyle: "italic", children: "n" }),
|
|
86
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "16", y: "14", fontSize: "12", fontFamily: "serif", children: "!" })
|
|
87
|
+
] })
|
|
88
|
+
);
|
|
89
|
+
const Logarithm = createMathIcon.createMathIcon(
|
|
90
|
+
"Logarithm",
|
|
91
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
92
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "4", y: "15", fontSize: "11", fontFamily: "serif", children: "log" }),
|
|
93
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "18", y: "18", fontSize: "8", fontFamily: "serif", children: "n" })
|
|
94
|
+
] })
|
|
95
|
+
);
|
|
96
|
+
const Absolute = createMathIcon.createMathIcon(
|
|
97
|
+
"Absolute",
|
|
98
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
99
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 4v16M16 4v16", strokeLinecap: "round" }),
|
|
100
|
+
/* @__PURE__ */ jsxRuntime.jsx("text", { x: "12", y: "15", fontSize: "10", textAnchor: "middle", fontFamily: "serif", fontStyle: "italic", children: "x" })
|
|
101
|
+
] })
|
|
102
|
+
);
|
|
103
|
+
const functionIcons = {
|
|
104
|
+
Function,
|
|
105
|
+
Integral,
|
|
106
|
+
Derivative,
|
|
107
|
+
Summation,
|
|
108
|
+
Product,
|
|
109
|
+
Limit,
|
|
110
|
+
Pi,
|
|
111
|
+
Infinity: InfinityIcon,
|
|
112
|
+
InfinityIcon,
|
|
113
|
+
Sigma,
|
|
114
|
+
Delta,
|
|
115
|
+
Theta,
|
|
116
|
+
Lambda,
|
|
117
|
+
Factorial,
|
|
118
|
+
Logarithm,
|
|
119
|
+
Absolute
|
|
120
|
+
};
|
|
121
|
+
exports.Absolute = Absolute;
|
|
122
|
+
exports.Delta = Delta;
|
|
123
|
+
exports.Derivative = Derivative;
|
|
124
|
+
exports.Factorial = Factorial;
|
|
125
|
+
exports.Function = Function;
|
|
126
|
+
exports.InfinityIcon = InfinityIcon;
|
|
127
|
+
exports.Integral = Integral;
|
|
128
|
+
exports.Lambda = Lambda;
|
|
129
|
+
exports.Limit = Limit;
|
|
130
|
+
exports.Logarithm = Logarithm;
|
|
131
|
+
exports.Pi = Pi;
|
|
132
|
+
exports.Product = Product;
|
|
133
|
+
exports.Sigma = Sigma;
|
|
134
|
+
exports.Summation = Summation;
|
|
135
|
+
exports.Theta = Theta;
|
|
136
|
+
exports.functionIcons = functionIcons;
|
|
137
|
+
//# sourceMappingURL=functions.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.cjs","sources":["../src/functions.tsx"],"sourcesContent":["import React from 'react';\r\n\r\nimport { createMathIcon } from './createMathIcon';\r\nimport type { MathIcon } from './types';\r\n\r\n/**\r\n * Function Icons - Mathematical functions and constants (15 icons)\r\n */\r\n\r\n/** Function f(x) symbol */\r\nexport const Function: MathIcon = createMathIcon(\r\n 'Function',\r\n <>\r\n <text x=\"6\" y=\"16\" fontSize=\"12\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n f\r\n </text>\r\n <text x=\"12\" y=\"18\" fontSize=\"10\" fontFamily=\"serif\">\r\n (x)\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Integral symbol */\r\nexport const Integral: MathIcon = createMathIcon(\r\n 'Integral',\r\n <path\r\n d=\"M9 3c1 0 2 1 2 3v12c0 2-1 3-2 3M15 3c-1 0-2 1-2 3v12c0 2 1 3 2 3\"\r\n strokeLinecap=\"round\"\r\n />,\r\n);\r\n\r\n/** Derivative symbol */\r\nexport const Derivative: MathIcon = createMathIcon(\r\n 'Derivative',\r\n <>\r\n <text x=\"8\" y=\"10\" fontSize=\"10\" fontFamily=\"serif\">\r\n d\r\n </text>\r\n <path d=\"M5 12h14\" strokeLinecap=\"round\" />\r\n <text x=\"8\" y=\"20\" fontSize=\"10\" fontFamily=\"serif\">\r\n dx\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Summation sigma symbol */\r\nexport const Summation: MathIcon = createMathIcon(\r\n 'Summation',\r\n <path d=\"M6 4h12M6 4l6 8-6 8h12\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Product pi symbol */\r\nexport const Product: MathIcon = createMathIcon(\r\n 'Product',\r\n <>\r\n <path d=\"M5 5h14\" strokeLinecap=\"round\" />\r\n <path d=\"M8 5v14M16 5v14\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Limit symbol */\r\nexport const Limit: MathIcon = createMathIcon(\r\n 'Limit',\r\n <>\r\n <text x=\"3\" y=\"14\" fontSize=\"10\" fontFamily=\"serif\">\r\n lim\r\n </text>\r\n <text x=\"13\" y=\"20\" fontSize=\"8\" fontFamily=\"serif\">\r\n x→∞\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Pi constant symbol */\r\nexport const Pi: MathIcon = createMathIcon(\r\n 'Pi',\r\n <>\r\n <path d=\"M5 6h14M8 6v12M16 6v12\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Infinity symbol */\r\nexport const InfinityIcon: MathIcon = createMathIcon(\r\n 'InfinityIcon',\r\n <path\r\n d=\"M8 12c0-2 2-4 4-4s4 2 4 4-2 4-4 4-4-2-4-4zm0 0c0 2-2 4-4 4s-4-2-4-4 2-4 4-4 4 2 4 4\"\r\n transform=\"translate(8, 0)\"\r\n strokeLinecap=\"round\"\r\n />,\r\n);\r\n\r\n/** Sigma symbol (capital) */\r\nexport const Sigma: MathIcon = createMathIcon(\r\n 'Sigma',\r\n <path d=\"M18 4H6l6 8-6 8h12\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Delta symbol */\r\nexport const Delta: MathIcon = createMathIcon(\r\n 'Delta',\r\n <path d=\"M12 4L4 20h16L12 4z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Theta symbol */\r\nexport const Theta: MathIcon = createMathIcon(\r\n 'Theta',\r\n <>\r\n <ellipse cx=\"12\" cy=\"12\" rx=\"6\" ry=\"8\" />\r\n <path d=\"M6 12h12\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Lambda symbol */\r\nexport const Lambda: MathIcon = createMathIcon(\r\n 'Lambda',\r\n <path d=\"M6 20L12 4l6 16\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Factorial symbol */\r\nexport const Factorial: MathIcon = createMathIcon(\r\n 'Factorial',\r\n <>\r\n <text x=\"8\" y=\"16\" fontSize=\"14\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n n\r\n </text>\r\n <text x=\"16\" y=\"14\" fontSize=\"12\" fontFamily=\"serif\">\r\n !\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Logarithm symbol */\r\nexport const Logarithm: MathIcon = createMathIcon(\r\n 'Logarithm',\r\n <>\r\n <text x=\"4\" y=\"15\" fontSize=\"11\" fontFamily=\"serif\">\r\n log\r\n </text>\r\n <text x=\"18\" y=\"18\" fontSize=\"8\" fontFamily=\"serif\">\r\n n\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Absolute value symbol */\r\nexport const Absolute: MathIcon = createMathIcon(\r\n 'Absolute',\r\n <>\r\n <path d=\"M8 4v16M16 4v16\" strokeLinecap=\"round\" />\r\n <text x=\"12\" y=\"15\" fontSize=\"10\" textAnchor=\"middle\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n x\r\n </text>\r\n </>,\r\n);\r\n\r\n/**\r\n * All function icons\r\n */\r\nexport const functionIcons = {\r\n Function,\r\n Integral,\r\n Derivative,\r\n Summation,\r\n Product,\r\n Limit,\r\n Pi,\r\n Infinity: InfinityIcon,\r\n InfinityIcon,\r\n Sigma,\r\n Delta,\r\n Theta,\r\n Lambda,\r\n Factorial,\r\n Logarithm,\r\n Absolute,\r\n} as const;\r\n\r\nexport type { MathIcon };\r\n"],"names":["createMathIcon","jsxs","Fragment","jsx"],"mappings":"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"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { MathIcon } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Function Icons - Mathematical functions and constants (15 icons)
|
|
4
|
+
*/
|
|
5
|
+
/** Function f(x) symbol */
|
|
6
|
+
export declare const Function: MathIcon;
|
|
7
|
+
/** Integral symbol */
|
|
8
|
+
export declare const Integral: MathIcon;
|
|
9
|
+
/** Derivative symbol */
|
|
10
|
+
export declare const Derivative: MathIcon;
|
|
11
|
+
/** Summation sigma symbol */
|
|
12
|
+
export declare const Summation: MathIcon;
|
|
13
|
+
/** Product pi symbol */
|
|
14
|
+
export declare const Product: MathIcon;
|
|
15
|
+
/** Limit symbol */
|
|
16
|
+
export declare const Limit: MathIcon;
|
|
17
|
+
/** Pi constant symbol */
|
|
18
|
+
export declare const Pi: MathIcon;
|
|
19
|
+
/** Infinity symbol */
|
|
20
|
+
export declare const InfinityIcon: MathIcon;
|
|
21
|
+
/** Sigma symbol (capital) */
|
|
22
|
+
export declare const Sigma: MathIcon;
|
|
23
|
+
/** Delta symbol */
|
|
24
|
+
export declare const Delta: MathIcon;
|
|
25
|
+
/** Theta symbol */
|
|
26
|
+
export declare const Theta: MathIcon;
|
|
27
|
+
/** Lambda symbol */
|
|
28
|
+
export declare const Lambda: MathIcon;
|
|
29
|
+
/** Factorial symbol */
|
|
30
|
+
export declare const Factorial: MathIcon;
|
|
31
|
+
/** Logarithm symbol */
|
|
32
|
+
export declare const Logarithm: MathIcon;
|
|
33
|
+
/** Absolute value symbol */
|
|
34
|
+
export declare const Absolute: MathIcon;
|
|
35
|
+
/**
|
|
36
|
+
* All function icons
|
|
37
|
+
*/
|
|
38
|
+
export declare const functionIcons: {
|
|
39
|
+
readonly Function: MathIcon;
|
|
40
|
+
readonly Integral: MathIcon;
|
|
41
|
+
readonly Derivative: MathIcon;
|
|
42
|
+
readonly Summation: MathIcon;
|
|
43
|
+
readonly Product: MathIcon;
|
|
44
|
+
readonly Limit: MathIcon;
|
|
45
|
+
readonly Pi: MathIcon;
|
|
46
|
+
readonly Infinity: MathIcon;
|
|
47
|
+
readonly InfinityIcon: MathIcon;
|
|
48
|
+
readonly Sigma: MathIcon;
|
|
49
|
+
readonly Delta: MathIcon;
|
|
50
|
+
readonly Theta: MathIcon;
|
|
51
|
+
readonly Lambda: MathIcon;
|
|
52
|
+
readonly Factorial: MathIcon;
|
|
53
|
+
readonly Logarithm: MathIcon;
|
|
54
|
+
readonly Absolute: MathIcon;
|
|
55
|
+
};
|
|
56
|
+
export type { MathIcon };
|
|
57
|
+
//# sourceMappingURL=functions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.d.ts","sourceRoot":"","sources":["../src/functions.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC;;GAEG;AAEH,2BAA2B;AAC3B,eAAO,MAAM,QAAQ,EAAE,QAUtB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,UAAU,EAAE,QAWxB,CAAC;AAEF,6BAA6B;AAC7B,eAAO,MAAM,SAAS,EAAE,QAGvB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,OAAO,EAAE,QAMrB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,KAAK,EAAE,QAUnB,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,EAAE,EAAE,QAKhB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,YAAY,EAAE,QAO1B,CAAC;AAEF,6BAA6B;AAC7B,eAAO,MAAM,KAAK,EAAE,QAGnB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,KAAK,EAAE,QAGnB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,KAAK,EAAE,QAMnB,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,MAAM,EAAE,QAGpB,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,SAAS,EAAE,QAUvB,CAAC;AAEF,uBAAuB;AACvB,eAAO,MAAM,SAAS,EAAE,QAUvB,CAAC;AAEF,4BAA4B;AAC5B,eAAO,MAAM,QAAQ,EAAE,QAQtB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;CAiBhB,CAAC;AAEX,YAAY,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
|
+
import { c as createMathIcon } from "./createMathIcon-BbQhEo0A.mjs";
|
|
3
|
+
const Function = createMathIcon(
|
|
4
|
+
"Function",
|
|
5
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
6
|
+
/* @__PURE__ */ jsx("text", { x: "6", y: "16", fontSize: "12", fontFamily: "serif", fontStyle: "italic", children: "f" }),
|
|
7
|
+
/* @__PURE__ */ jsx("text", { x: "12", y: "18", fontSize: "10", fontFamily: "serif", children: "(x)" })
|
|
8
|
+
] })
|
|
9
|
+
);
|
|
10
|
+
const Integral = createMathIcon(
|
|
11
|
+
"Integral",
|
|
12
|
+
/* @__PURE__ */ jsx(
|
|
13
|
+
"path",
|
|
14
|
+
{
|
|
15
|
+
d: "M9 3c1 0 2 1 2 3v12c0 2-1 3-2 3M15 3c-1 0-2 1-2 3v12c0 2 1 3 2 3",
|
|
16
|
+
strokeLinecap: "round"
|
|
17
|
+
}
|
|
18
|
+
)
|
|
19
|
+
);
|
|
20
|
+
const Derivative = createMathIcon(
|
|
21
|
+
"Derivative",
|
|
22
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
23
|
+
/* @__PURE__ */ jsx("text", { x: "8", y: "10", fontSize: "10", fontFamily: "serif", children: "d" }),
|
|
24
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12h14", strokeLinecap: "round" }),
|
|
25
|
+
/* @__PURE__ */ jsx("text", { x: "8", y: "20", fontSize: "10", fontFamily: "serif", children: "dx" })
|
|
26
|
+
] })
|
|
27
|
+
);
|
|
28
|
+
const Summation = createMathIcon(
|
|
29
|
+
"Summation",
|
|
30
|
+
/* @__PURE__ */ jsx("path", { d: "M6 4h12M6 4l6 8-6 8h12", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
31
|
+
);
|
|
32
|
+
const Product = createMathIcon(
|
|
33
|
+
"Product",
|
|
34
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
35
|
+
/* @__PURE__ */ jsx("path", { d: "M5 5h14", strokeLinecap: "round" }),
|
|
36
|
+
/* @__PURE__ */ jsx("path", { d: "M8 5v14M16 5v14", strokeLinecap: "round" })
|
|
37
|
+
] })
|
|
38
|
+
);
|
|
39
|
+
const Limit = createMathIcon(
|
|
40
|
+
"Limit",
|
|
41
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
42
|
+
/* @__PURE__ */ jsx("text", { x: "3", y: "14", fontSize: "10", fontFamily: "serif", children: "lim" }),
|
|
43
|
+
/* @__PURE__ */ jsx("text", { x: "13", y: "20", fontSize: "8", fontFamily: "serif", children: "x→∞" })
|
|
44
|
+
] })
|
|
45
|
+
);
|
|
46
|
+
const Pi = createMathIcon(
|
|
47
|
+
"Pi",
|
|
48
|
+
/* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx("path", { d: "M5 6h14M8 6v12M16 6v12", strokeLinecap: "round" }) })
|
|
49
|
+
);
|
|
50
|
+
const InfinityIcon = createMathIcon(
|
|
51
|
+
"InfinityIcon",
|
|
52
|
+
/* @__PURE__ */ jsx(
|
|
53
|
+
"path",
|
|
54
|
+
{
|
|
55
|
+
d: "M8 12c0-2 2-4 4-4s4 2 4 4-2 4-4 4-4-2-4-4zm0 0c0 2-2 4-4 4s-4-2-4-4 2-4 4-4 4 2 4 4",
|
|
56
|
+
transform: "translate(8, 0)",
|
|
57
|
+
strokeLinecap: "round"
|
|
58
|
+
}
|
|
59
|
+
)
|
|
60
|
+
);
|
|
61
|
+
const Sigma = createMathIcon(
|
|
62
|
+
"Sigma",
|
|
63
|
+
/* @__PURE__ */ jsx("path", { d: "M18 4H6l6 8-6 8h12", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
64
|
+
);
|
|
65
|
+
const Delta = createMathIcon(
|
|
66
|
+
"Delta",
|
|
67
|
+
/* @__PURE__ */ jsx("path", { d: "M12 4L4 20h16L12 4z", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
68
|
+
);
|
|
69
|
+
const Theta = createMathIcon(
|
|
70
|
+
"Theta",
|
|
71
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
72
|
+
/* @__PURE__ */ jsx("ellipse", { cx: "12", cy: "12", rx: "6", ry: "8" }),
|
|
73
|
+
/* @__PURE__ */ jsx("path", { d: "M6 12h12", strokeLinecap: "round" })
|
|
74
|
+
] })
|
|
75
|
+
);
|
|
76
|
+
const Lambda = createMathIcon(
|
|
77
|
+
"Lambda",
|
|
78
|
+
/* @__PURE__ */ jsx("path", { d: "M6 20L12 4l6 16", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
79
|
+
);
|
|
80
|
+
const Factorial = createMathIcon(
|
|
81
|
+
"Factorial",
|
|
82
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
83
|
+
/* @__PURE__ */ jsx("text", { x: "8", y: "16", fontSize: "14", fontFamily: "serif", fontStyle: "italic", children: "n" }),
|
|
84
|
+
/* @__PURE__ */ jsx("text", { x: "16", y: "14", fontSize: "12", fontFamily: "serif", children: "!" })
|
|
85
|
+
] })
|
|
86
|
+
);
|
|
87
|
+
const Logarithm = createMathIcon(
|
|
88
|
+
"Logarithm",
|
|
89
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
90
|
+
/* @__PURE__ */ jsx("text", { x: "4", y: "15", fontSize: "11", fontFamily: "serif", children: "log" }),
|
|
91
|
+
/* @__PURE__ */ jsx("text", { x: "18", y: "18", fontSize: "8", fontFamily: "serif", children: "n" })
|
|
92
|
+
] })
|
|
93
|
+
);
|
|
94
|
+
const Absolute = createMathIcon(
|
|
95
|
+
"Absolute",
|
|
96
|
+
/* @__PURE__ */ jsxs(Fragment, { children: [
|
|
97
|
+
/* @__PURE__ */ jsx("path", { d: "M8 4v16M16 4v16", strokeLinecap: "round" }),
|
|
98
|
+
/* @__PURE__ */ jsx("text", { x: "12", y: "15", fontSize: "10", textAnchor: "middle", fontFamily: "serif", fontStyle: "italic", children: "x" })
|
|
99
|
+
] })
|
|
100
|
+
);
|
|
101
|
+
const functionIcons = {
|
|
102
|
+
Function,
|
|
103
|
+
Integral,
|
|
104
|
+
Derivative,
|
|
105
|
+
Summation,
|
|
106
|
+
Product,
|
|
107
|
+
Limit,
|
|
108
|
+
Pi,
|
|
109
|
+
Infinity: InfinityIcon,
|
|
110
|
+
InfinityIcon,
|
|
111
|
+
Sigma,
|
|
112
|
+
Delta,
|
|
113
|
+
Theta,
|
|
114
|
+
Lambda,
|
|
115
|
+
Factorial,
|
|
116
|
+
Logarithm,
|
|
117
|
+
Absolute
|
|
118
|
+
};
|
|
119
|
+
export {
|
|
120
|
+
Absolute,
|
|
121
|
+
Delta,
|
|
122
|
+
Derivative,
|
|
123
|
+
Factorial,
|
|
124
|
+
Function,
|
|
125
|
+
InfinityIcon,
|
|
126
|
+
Integral,
|
|
127
|
+
Lambda,
|
|
128
|
+
Limit,
|
|
129
|
+
Logarithm,
|
|
130
|
+
Pi,
|
|
131
|
+
Product,
|
|
132
|
+
Sigma,
|
|
133
|
+
Summation,
|
|
134
|
+
Theta,
|
|
135
|
+
functionIcons
|
|
136
|
+
};
|
|
137
|
+
//# sourceMappingURL=functions.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"functions.mjs","sources":["../src/functions.tsx"],"sourcesContent":["import React from 'react';\r\n\r\nimport { createMathIcon } from './createMathIcon';\r\nimport type { MathIcon } from './types';\r\n\r\n/**\r\n * Function Icons - Mathematical functions and constants (15 icons)\r\n */\r\n\r\n/** Function f(x) symbol */\r\nexport const Function: MathIcon = createMathIcon(\r\n 'Function',\r\n <>\r\n <text x=\"6\" y=\"16\" fontSize=\"12\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n f\r\n </text>\r\n <text x=\"12\" y=\"18\" fontSize=\"10\" fontFamily=\"serif\">\r\n (x)\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Integral symbol */\r\nexport const Integral: MathIcon = createMathIcon(\r\n 'Integral',\r\n <path\r\n d=\"M9 3c1 0 2 1 2 3v12c0 2-1 3-2 3M15 3c-1 0-2 1-2 3v12c0 2 1 3 2 3\"\r\n strokeLinecap=\"round\"\r\n />,\r\n);\r\n\r\n/** Derivative symbol */\r\nexport const Derivative: MathIcon = createMathIcon(\r\n 'Derivative',\r\n <>\r\n <text x=\"8\" y=\"10\" fontSize=\"10\" fontFamily=\"serif\">\r\n d\r\n </text>\r\n <path d=\"M5 12h14\" strokeLinecap=\"round\" />\r\n <text x=\"8\" y=\"20\" fontSize=\"10\" fontFamily=\"serif\">\r\n dx\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Summation sigma symbol */\r\nexport const Summation: MathIcon = createMathIcon(\r\n 'Summation',\r\n <path d=\"M6 4h12M6 4l6 8-6 8h12\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Product pi symbol */\r\nexport const Product: MathIcon = createMathIcon(\r\n 'Product',\r\n <>\r\n <path d=\"M5 5h14\" strokeLinecap=\"round\" />\r\n <path d=\"M8 5v14M16 5v14\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Limit symbol */\r\nexport const Limit: MathIcon = createMathIcon(\r\n 'Limit',\r\n <>\r\n <text x=\"3\" y=\"14\" fontSize=\"10\" fontFamily=\"serif\">\r\n lim\r\n </text>\r\n <text x=\"13\" y=\"20\" fontSize=\"8\" fontFamily=\"serif\">\r\n x→∞\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Pi constant symbol */\r\nexport const Pi: MathIcon = createMathIcon(\r\n 'Pi',\r\n <>\r\n <path d=\"M5 6h14M8 6v12M16 6v12\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Infinity symbol */\r\nexport const InfinityIcon: MathIcon = createMathIcon(\r\n 'InfinityIcon',\r\n <path\r\n d=\"M8 12c0-2 2-4 4-4s4 2 4 4-2 4-4 4-4-2-4-4zm0 0c0 2-2 4-4 4s-4-2-4-4 2-4 4-4 4 2 4 4\"\r\n transform=\"translate(8, 0)\"\r\n strokeLinecap=\"round\"\r\n />,\r\n);\r\n\r\n/** Sigma symbol (capital) */\r\nexport const Sigma: MathIcon = createMathIcon(\r\n 'Sigma',\r\n <path d=\"M18 4H6l6 8-6 8h12\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Delta symbol */\r\nexport const Delta: MathIcon = createMathIcon(\r\n 'Delta',\r\n <path d=\"M12 4L4 20h16L12 4z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Theta symbol */\r\nexport const Theta: MathIcon = createMathIcon(\r\n 'Theta',\r\n <>\r\n <ellipse cx=\"12\" cy=\"12\" rx=\"6\" ry=\"8\" />\r\n <path d=\"M6 12h12\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Lambda symbol */\r\nexport const Lambda: MathIcon = createMathIcon(\r\n 'Lambda',\r\n <path d=\"M6 20L12 4l6 16\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Factorial symbol */\r\nexport const Factorial: MathIcon = createMathIcon(\r\n 'Factorial',\r\n <>\r\n <text x=\"8\" y=\"16\" fontSize=\"14\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n n\r\n </text>\r\n <text x=\"16\" y=\"14\" fontSize=\"12\" fontFamily=\"serif\">\r\n !\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Logarithm symbol */\r\nexport const Logarithm: MathIcon = createMathIcon(\r\n 'Logarithm',\r\n <>\r\n <text x=\"4\" y=\"15\" fontSize=\"11\" fontFamily=\"serif\">\r\n log\r\n </text>\r\n <text x=\"18\" y=\"18\" fontSize=\"8\" fontFamily=\"serif\">\r\n n\r\n </text>\r\n </>,\r\n);\r\n\r\n/** Absolute value symbol */\r\nexport const Absolute: MathIcon = createMathIcon(\r\n 'Absolute',\r\n <>\r\n <path d=\"M8 4v16M16 4v16\" strokeLinecap=\"round\" />\r\n <text x=\"12\" y=\"15\" fontSize=\"10\" textAnchor=\"middle\" fontFamily=\"serif\" fontStyle=\"italic\">\r\n x\r\n </text>\r\n </>,\r\n);\r\n\r\n/**\r\n * All function icons\r\n */\r\nexport const functionIcons = {\r\n Function,\r\n Integral,\r\n Derivative,\r\n Summation,\r\n Product,\r\n Limit,\r\n Pi,\r\n Infinity: InfinityIcon,\r\n InfinityIcon,\r\n Sigma,\r\n Delta,\r\n Theta,\r\n Lambda,\r\n Factorial,\r\n Logarithm,\r\n Absolute,\r\n} as const;\r\n\r\nexport type { MathIcon };\r\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("react/jsx-runtime");
|
|
4
|
+
const createMathIcon = require("./createMathIcon-CK9tbq5-.js");
|
|
5
|
+
const Triangle = createMathIcon.createMathIcon(
|
|
6
|
+
"Triangle",
|
|
7
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3L3 21h18L12 3z", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
8
|
+
);
|
|
9
|
+
const Square = createMathIcon.createMathIcon(
|
|
10
|
+
"Square",
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "4", y: "4", width: "16", height: "16", rx: "1", strokeLinecap: "round" })
|
|
12
|
+
);
|
|
13
|
+
const Circle = createMathIcon.createMathIcon("Circle", /* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "9" }));
|
|
14
|
+
const Cube = createMathIcon.createMathIcon(
|
|
15
|
+
"Cube",
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 8l8-4 8 4v8l-8 4-8-4V8z", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
18
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 8l8 4 8-4M12 12v8", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
19
|
+
] })
|
|
20
|
+
);
|
|
21
|
+
const Sphere = createMathIcon.createMathIcon(
|
|
22
|
+
"Sphere",
|
|
23
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
24
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "12", r: "9" }),
|
|
25
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "12", rx: "9", ry: "3" }),
|
|
26
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "12", rx: "3", ry: "9" })
|
|
27
|
+
] })
|
|
28
|
+
);
|
|
29
|
+
const Pyramid = createMathIcon.createMathIcon(
|
|
30
|
+
"Pyramid",
|
|
31
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
32
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2L3 18h18L12 2z", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
33
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2v16M3 18l9-5.5 9 5.5", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
34
|
+
] })
|
|
35
|
+
);
|
|
36
|
+
const Cylinder = createMathIcon.createMathIcon(
|
|
37
|
+
"Cylinder",
|
|
38
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
39
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "5", rx: "8", ry: "3" }),
|
|
40
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 5v14c0 1.66 3.58 3 8 3s8-1.34 8-3V5", strokeLinecap: "round" })
|
|
41
|
+
] })
|
|
42
|
+
);
|
|
43
|
+
const Cone = createMathIcon.createMathIcon(
|
|
44
|
+
"Cone",
|
|
45
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
46
|
+
/* @__PURE__ */ jsxRuntime.jsx("ellipse", { cx: "12", cy: "19", rx: "8", ry: "3" }),
|
|
47
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 19L12 3l8 16", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
48
|
+
] })
|
|
49
|
+
);
|
|
50
|
+
const Pentagon = createMathIcon.createMathIcon(
|
|
51
|
+
"Pentagon",
|
|
52
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2l9 7-3.5 10h-11L3 9l9-7z", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
53
|
+
);
|
|
54
|
+
const Hexagon = createMathIcon.createMathIcon(
|
|
55
|
+
"Hexagon",
|
|
56
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 2l8 4.5v9L12 22l-8-6.5v-9L12 2z", strokeLinecap: "round", strokeLinejoin: "round" })
|
|
57
|
+
);
|
|
58
|
+
const Angle = createMathIcon.createMathIcon(
|
|
59
|
+
"Angle",
|
|
60
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
61
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M4 20L12 4l8 16", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
62
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 14a6 6 0 0 1 8 0", strokeLinecap: "round" })
|
|
63
|
+
] })
|
|
64
|
+
);
|
|
65
|
+
const Parallel = createMathIcon.createMathIcon(
|
|
66
|
+
"Parallel",
|
|
67
|
+
/* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6 4v16M12 4v16M18 4v16", strokeLinecap: "round" }) })
|
|
68
|
+
);
|
|
69
|
+
const Perpendicular = createMathIcon.createMathIcon(
|
|
70
|
+
"Perpendicular",
|
|
71
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
72
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 4v16M4 12h16", strokeLinecap: "round" }),
|
|
73
|
+
/* @__PURE__ */ jsxRuntime.jsx("rect", { x: "12", y: "12", width: "4", height: "4", fill: "none", strokeWidth: "1" })
|
|
74
|
+
] })
|
|
75
|
+
);
|
|
76
|
+
const Compass = createMathIcon.createMathIcon(
|
|
77
|
+
"Compass",
|
|
78
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
79
|
+
/* @__PURE__ */ jsxRuntime.jsx("circle", { cx: "12", cy: "5", r: "2" }),
|
|
80
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 7L7 21M12 7l5 14", strokeLinecap: "round", strokeLinejoin: "round" }),
|
|
81
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 16h8", strokeLinecap: "round" })
|
|
82
|
+
] })
|
|
83
|
+
);
|
|
84
|
+
const Protractor = createMathIcon.createMathIcon(
|
|
85
|
+
"Protractor",
|
|
86
|
+
/* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
87
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 18a9 9 0 0 1 18 0H3z", strokeLinecap: "round" }),
|
|
88
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18V9", strokeLinecap: "round" }),
|
|
89
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 18l-6-5M12 18l6-5", strokeLinecap: "round" })
|
|
90
|
+
] })
|
|
91
|
+
);
|
|
92
|
+
const geometryIcons = {
|
|
93
|
+
Triangle,
|
|
94
|
+
Square,
|
|
95
|
+
Circle,
|
|
96
|
+
Cube,
|
|
97
|
+
Sphere,
|
|
98
|
+
Pyramid,
|
|
99
|
+
Cylinder,
|
|
100
|
+
Cone,
|
|
101
|
+
Pentagon,
|
|
102
|
+
Hexagon,
|
|
103
|
+
Angle,
|
|
104
|
+
Parallel,
|
|
105
|
+
Perpendicular,
|
|
106
|
+
Compass,
|
|
107
|
+
Protractor
|
|
108
|
+
};
|
|
109
|
+
exports.Angle = Angle;
|
|
110
|
+
exports.Circle = Circle;
|
|
111
|
+
exports.Compass = Compass;
|
|
112
|
+
exports.Cone = Cone;
|
|
113
|
+
exports.Cube = Cube;
|
|
114
|
+
exports.Cylinder = Cylinder;
|
|
115
|
+
exports.Hexagon = Hexagon;
|
|
116
|
+
exports.Parallel = Parallel;
|
|
117
|
+
exports.Pentagon = Pentagon;
|
|
118
|
+
exports.Perpendicular = Perpendicular;
|
|
119
|
+
exports.Protractor = Protractor;
|
|
120
|
+
exports.Pyramid = Pyramid;
|
|
121
|
+
exports.Sphere = Sphere;
|
|
122
|
+
exports.Square = Square;
|
|
123
|
+
exports.Triangle = Triangle;
|
|
124
|
+
exports.geometryIcons = geometryIcons;
|
|
125
|
+
//# sourceMappingURL=geometry.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geometry.cjs","sources":["../src/geometry.tsx"],"sourcesContent":["import React from 'react';\r\n\r\nimport { createMathIcon } from './createMathIcon';\r\nimport type { MathIcon } from './types';\r\n\r\n/**\r\n * Geometry Icons - Geometric shapes and tools (15 icons)\r\n */\r\n\r\n/** Triangle shape */\r\nexport const Triangle: MathIcon = createMathIcon(\r\n 'Triangle',\r\n <path d=\"M12 3L3 21h18L12 3z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Square shape */\r\nexport const Square: MathIcon = createMathIcon(\r\n 'Square',\r\n <rect x=\"4\" y=\"4\" width=\"16\" height=\"16\" rx=\"1\" strokeLinecap=\"round\" />,\r\n);\r\n\r\n/** Circle shape */\r\nexport const Circle: MathIcon = createMathIcon('Circle', <circle cx=\"12\" cy=\"12\" r=\"9\" />);\r\n\r\n/** Cube (3D) shape */\r\nexport const Cube: MathIcon = createMathIcon(\r\n 'Cube',\r\n <>\r\n <path d=\"M4 8l8-4 8 4v8l-8 4-8-4V8z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n <path d=\"M4 8l8 4 8-4M12 12v8\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Sphere (3D) shape */\r\nexport const Sphere: MathIcon = createMathIcon(\r\n 'Sphere',\r\n <>\r\n <circle cx=\"12\" cy=\"12\" r=\"9\" />\r\n <ellipse cx=\"12\" cy=\"12\" rx=\"9\" ry=\"3\" />\r\n <ellipse cx=\"12\" cy=\"12\" rx=\"3\" ry=\"9\" />\r\n </>,\r\n);\r\n\r\n/** Pyramid (3D) shape */\r\nexport const Pyramid: MathIcon = createMathIcon(\r\n 'Pyramid',\r\n <>\r\n <path d=\"M12 2L3 18h18L12 2z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n <path d=\"M12 2v16M3 18l9-5.5 9 5.5\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Cylinder (3D) shape */\r\nexport const Cylinder: MathIcon = createMathIcon(\r\n 'Cylinder',\r\n <>\r\n <ellipse cx=\"12\" cy=\"5\" rx=\"8\" ry=\"3\" />\r\n <path d=\"M4 5v14c0 1.66 3.58 3 8 3s8-1.34 8-3V5\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Cone (3D) shape */\r\nexport const Cone: MathIcon = createMathIcon(\r\n 'Cone',\r\n <>\r\n <ellipse cx=\"12\" cy=\"19\" rx=\"8\" ry=\"3\" />\r\n <path d=\"M4 19L12 3l8 16\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Pentagon shape */\r\nexport const Pentagon: MathIcon = createMathIcon(\r\n 'Pentagon',\r\n <path d=\"M12 2l9 7-3.5 10h-11L3 9l9-7z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Hexagon shape */\r\nexport const Hexagon: MathIcon = createMathIcon(\r\n 'Hexagon',\r\n <path d=\"M12 2l8 4.5v9L12 22l-8-6.5v-9L12 2z\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />,\r\n);\r\n\r\n/** Angle measurement symbol */\r\nexport const Angle: MathIcon = createMathIcon(\r\n 'Angle',\r\n <>\r\n <path d=\"M4 20L12 4l8 16\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n <path d=\"M8 14a6 6 0 0 1 8 0\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Parallel lines symbol */\r\nexport const Parallel: MathIcon = createMathIcon(\r\n 'Parallel',\r\n <>\r\n <path d=\"M6 4v16M12 4v16M18 4v16\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Perpendicular lines symbol */\r\nexport const Perpendicular: MathIcon = createMathIcon(\r\n 'Perpendicular',\r\n <>\r\n <path d=\"M12 4v16M4 12h16\" strokeLinecap=\"round\" />\r\n <rect x=\"12\" y=\"12\" width=\"4\" height=\"4\" fill=\"none\" strokeWidth=\"1\" />\r\n </>,\r\n);\r\n\r\n/** Compass drawing tool */\r\nexport const Compass: MathIcon = createMathIcon(\r\n 'Compass',\r\n <>\r\n <circle cx=\"12\" cy=\"5\" r=\"2\" />\r\n <path d=\"M12 7L7 21M12 7l5 14\" strokeLinecap=\"round\" strokeLinejoin=\"round\" />\r\n <path d=\"M8 16h8\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/** Protractor measuring tool */\r\nexport const Protractor: MathIcon = createMathIcon(\r\n 'Protractor',\r\n <>\r\n <path d=\"M3 18a9 9 0 0 1 18 0H3z\" strokeLinecap=\"round\" />\r\n <path d=\"M12 18V9\" strokeLinecap=\"round\" />\r\n <path d=\"M12 18l-6-5M12 18l6-5\" strokeLinecap=\"round\" />\r\n </>,\r\n);\r\n\r\n/**\r\n * All geometry icons\r\n */\r\nexport const geometryIcons = {\r\n Triangle,\r\n Square,\r\n Circle,\r\n Cube,\r\n Sphere,\r\n Pyramid,\r\n Cylinder,\r\n Cone,\r\n Pentagon,\r\n Hexagon,\r\n Angle,\r\n Parallel,\r\n Perpendicular,\r\n Compass,\r\n Protractor,\r\n} as const;\r\n\r\nexport type { MathIcon };\r\n"],"names":["createMathIcon","jsx","jsxs","Fragment"],"mappings":"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"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { MathIcon } from './types';
|
|
2
|
+
/**
|
|
3
|
+
* Geometry Icons - Geometric shapes and tools (15 icons)
|
|
4
|
+
*/
|
|
5
|
+
/** Triangle shape */
|
|
6
|
+
export declare const Triangle: MathIcon;
|
|
7
|
+
/** Square shape */
|
|
8
|
+
export declare const Square: MathIcon;
|
|
9
|
+
/** Circle shape */
|
|
10
|
+
export declare const Circle: MathIcon;
|
|
11
|
+
/** Cube (3D) shape */
|
|
12
|
+
export declare const Cube: MathIcon;
|
|
13
|
+
/** Sphere (3D) shape */
|
|
14
|
+
export declare const Sphere: MathIcon;
|
|
15
|
+
/** Pyramid (3D) shape */
|
|
16
|
+
export declare const Pyramid: MathIcon;
|
|
17
|
+
/** Cylinder (3D) shape */
|
|
18
|
+
export declare const Cylinder: MathIcon;
|
|
19
|
+
/** Cone (3D) shape */
|
|
20
|
+
export declare const Cone: MathIcon;
|
|
21
|
+
/** Pentagon shape */
|
|
22
|
+
export declare const Pentagon: MathIcon;
|
|
23
|
+
/** Hexagon shape */
|
|
24
|
+
export declare const Hexagon: MathIcon;
|
|
25
|
+
/** Angle measurement symbol */
|
|
26
|
+
export declare const Angle: MathIcon;
|
|
27
|
+
/** Parallel lines symbol */
|
|
28
|
+
export declare const Parallel: MathIcon;
|
|
29
|
+
/** Perpendicular lines symbol */
|
|
30
|
+
export declare const Perpendicular: MathIcon;
|
|
31
|
+
/** Compass drawing tool */
|
|
32
|
+
export declare const Compass: MathIcon;
|
|
33
|
+
/** Protractor measuring tool */
|
|
34
|
+
export declare const Protractor: MathIcon;
|
|
35
|
+
/**
|
|
36
|
+
* All geometry icons
|
|
37
|
+
*/
|
|
38
|
+
export declare const geometryIcons: {
|
|
39
|
+
readonly Triangle: MathIcon;
|
|
40
|
+
readonly Square: MathIcon;
|
|
41
|
+
readonly Circle: MathIcon;
|
|
42
|
+
readonly Cube: MathIcon;
|
|
43
|
+
readonly Sphere: MathIcon;
|
|
44
|
+
readonly Pyramid: MathIcon;
|
|
45
|
+
readonly Cylinder: MathIcon;
|
|
46
|
+
readonly Cone: MathIcon;
|
|
47
|
+
readonly Pentagon: MathIcon;
|
|
48
|
+
readonly Hexagon: MathIcon;
|
|
49
|
+
readonly Angle: MathIcon;
|
|
50
|
+
readonly Parallel: MathIcon;
|
|
51
|
+
readonly Perpendicular: MathIcon;
|
|
52
|
+
readonly Compass: MathIcon;
|
|
53
|
+
readonly Protractor: MathIcon;
|
|
54
|
+
};
|
|
55
|
+
export type { MathIcon };
|
|
56
|
+
//# sourceMappingURL=geometry.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"geometry.d.ts","sourceRoot":"","sources":["../src/geometry.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC;;GAEG;AAEH,qBAAqB;AACrB,eAAO,MAAM,QAAQ,EAAE,QAGtB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,MAAM,EAAE,QAGpB,CAAC;AAEF,mBAAmB;AACnB,eAAO,MAAM,MAAM,EAAE,QAAqE,CAAC;AAE3F,sBAAsB;AACtB,eAAO,MAAM,IAAI,EAAE,QAMlB,CAAC;AAEF,wBAAwB;AACxB,eAAO,MAAM,MAAM,EAAE,QAOpB,CAAC;AAEF,yBAAyB;AACzB,eAAO,MAAM,OAAO,EAAE,QAMrB,CAAC;AAEF,0BAA0B;AAC1B,eAAO,MAAM,QAAQ,EAAE,QAMtB,CAAC;AAEF,sBAAsB;AACtB,eAAO,MAAM,IAAI,EAAE,QAMlB,CAAC;AAEF,qBAAqB;AACrB,eAAO,MAAM,QAAQ,EAAE,QAGtB,CAAC;AAEF,oBAAoB;AACpB,eAAO,MAAM,OAAO,EAAE,QAGrB,CAAC;AAEF,+BAA+B;AAC/B,eAAO,MAAM,KAAK,EAAE,QAMnB,CAAC;AAEF,4BAA4B;AAC5B,eAAO,MAAM,QAAQ,EAAE,QAKtB,CAAC;AAEF,iCAAiC;AACjC,eAAO,MAAM,aAAa,EAAE,QAM3B,CAAC;AAEF,2BAA2B;AAC3B,eAAO,MAAM,OAAO,EAAE,QAOrB,CAAC;AAEF,gCAAgC;AAChC,eAAO,MAAM,UAAU,EAAE,QAOxB,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;CAgBhB,CAAC;AAEX,YAAY,EAAE,QAAQ,EAAE,CAAC"}
|