pmg-ui-kit 0.0.50 → 0.0.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/icons/MailIcon.d.ts +8 -0
- package/dist/icons/MailIcon.js +2 -0
- package/dist/icons/SettingsIcon.d.ts +8 -0
- package/dist/icons/SettingsIcon.js +2 -0
- package/dist/icons/TranslateIcon.d.ts +8 -0
- package/dist/icons/TranslateIcon.js +2 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/package.json +1 -1
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const MailIcon = ({ onClick, width = 24, height = 24, color = "currentColor" }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewBox: "0 0 24 24", fill: "none", stroke: color, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", onClick: onClick, className: "icon icon-tabler icons-tabler-outline icon-tabler-mail-forward", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M12 18h-7a2 2 0 0 1 -2 -2v-10a2 2 0 0 1 2 -2h14a2 2 0 0 1 2 2v7.5" }), _jsx("path", { d: "M3 6l9 6l9 -6" }), _jsx("path", { d: "M15 18h6" }), _jsx("path", { d: "M18 15l3 3l-3 3" })] }));
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const SettingsIcon = ({ onClick, width = 24, height = 24, color = "currentColor" }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewBox: "0 0 24 24", fill: "none", stroke: color, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", onClick: onClick, className: "icon icon-tabler icons-tabler-outline icon-tabler-settings", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M10.325 4.317c.426 -1.756 2.924 -1.756 3.35 0a1.724 1.724 0 0 0 2.573 1.066c1.543 -.94 3.31 .826 2.37 2.37a1.724 1.724 0 0 0 1.065 2.572c1.756 .426 1.756 2.924 0 3.35a1.724 1.724 0 0 0 -1.066 2.573c.94 1.543 -.826 3.31 -2.37 2.37a1.724 1.724 0 0 0 -2.572 1.065c-.426 1.756 -2.924 1.756 -3.35 0a1.724 1.724 0 0 0 -2.573 -1.066c-1.543 .94 -3.31 -.826 -2.37 -2.37a1.724 1.724 0 0 0 -1.065 -2.572c-1.756 -.426 -1.756 -2.924 0 -3.35a1.724 1.724 0 0 0 1.066 -2.573c-.94 -1.543 .826 -3.31 2.37 -2.37c1 .608 2.296 .07 2.572 -1.065z" }), _jsx("path", { d: "M9 12a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" })] }));
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const TranslateIcon = ({ onClick, width = 24, height = 24, color = "currentColor" }) => (_jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: width, height: height, viewBox: "0 0 24 24", fill: "none", stroke: color, strokeWidth: 2, strokeLinecap: "round", strokeLinejoin: "round", onClick: onClick, className: "icon icon-tabler icons-tabler-outline icon-tabler-a-b-2", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M16 21h3c.81 0 1.48 -.67 1.48 -1.48l.02 -.02c0 -.82 -.69 -1.5 -1.5 -1.5h-3v3z" }), _jsx("path", { d: "M16 15h2.5c.84 -.01 1.5 .66 1.5 1.5s-.66 1.5 -1.5 1.5h-2.5v-3z" }), _jsx("path", { d: "M4 9v-4c0 -1.036 .895 -2 2 -2s2 .964 2 2v4" }), _jsx("path", { d: "M2.99 11.98a9 9 0 0 0 9 9m9 -9a9 9 0 0 0 -9 -9" }), _jsx("path", { d: "M8 7h-4" })] }));
|
package/dist/index.d.ts
CHANGED
|
@@ -56,6 +56,7 @@ export * from './icons/InfoIcon';
|
|
|
56
56
|
export * from './icons/InformationCircleIcon';
|
|
57
57
|
export * from './icons/InformationTriangleIcon';
|
|
58
58
|
export * from './icons/LanguageIcon';
|
|
59
|
+
export * from './icons/MailIcon';
|
|
59
60
|
export * from './icons/MinusIcon';
|
|
60
61
|
export * from './icons/NotAllowIcon';
|
|
61
62
|
export * from './icons/PercentageIcon';
|
|
@@ -64,7 +65,9 @@ export * from './icons/ProgressIcon';
|
|
|
64
65
|
export * from './icons/RefreshIcon';
|
|
65
66
|
export * from './icons/SaveDiscIcon';
|
|
66
67
|
export * from './icons/SaveIcon';
|
|
68
|
+
export * from './icons/SettingsIcon';
|
|
67
69
|
export * from './icons/SquareCheckIcon';
|
|
68
70
|
export * from './icons/SquareEmptyIcon';
|
|
71
|
+
export * from './icons/TranslateIcon';
|
|
69
72
|
export * from './icons/TrashIcon';
|
|
70
73
|
export * from './icons/UserPlusIcon';
|
package/dist/index.js
CHANGED
|
@@ -56,6 +56,7 @@ export * from './icons/InfoIcon';
|
|
|
56
56
|
export * from './icons/InformationCircleIcon';
|
|
57
57
|
export * from './icons/InformationTriangleIcon';
|
|
58
58
|
export * from './icons/LanguageIcon';
|
|
59
|
+
export * from './icons/MailIcon';
|
|
59
60
|
export * from './icons/MinusIcon';
|
|
60
61
|
export * from './icons/NotAllowIcon';
|
|
61
62
|
export * from './icons/PercentageIcon';
|
|
@@ -64,7 +65,9 @@ export * from './icons/ProgressIcon';
|
|
|
64
65
|
export * from './icons/RefreshIcon';
|
|
65
66
|
export * from './icons/SaveDiscIcon';
|
|
66
67
|
export * from './icons/SaveIcon';
|
|
68
|
+
export * from './icons/SettingsIcon';
|
|
67
69
|
export * from './icons/SquareCheckIcon';
|
|
68
70
|
export * from './icons/SquareEmptyIcon';
|
|
71
|
+
export * from './icons/TranslateIcon';
|
|
69
72
|
export * from './icons/TrashIcon';
|
|
70
73
|
export * from './icons/UserPlusIcon';
|