pmg-ui-kit 0.0.62 → 0.0.64
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/CsvIcon.d.ts +8 -0
- package/dist/icons/CsvIcon.js +2 -0
- package/dist/icons/ListIcon.d.ts +8 -0
- package/dist/icons/ListIcon.js +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -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 CsvIcon = ({ 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-file-type-csv", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M14 3v4a1 1 0 0 0 1 1h4" }), _jsx("path", { d: "M5 12v-7a2 2 0 0 1 2 -2h7l5 5v4" }), _jsx("path", { d: "M7 16.5a1.5 1.5 0 0 0 -3 0v3a1.5 1.5 0 0 0 3 0" }), _jsx("path", { d: "M10 20.25c0 .414 .336 .75 .75 .75h1.25a1 1 0 0 0 1 -1v-1a1 1 0 0 0 -1 -1h-1a1 1 0 0 1 -1 -1v-1a1 1 0 0 1 1 -1h1.25a.75 .75 0 0 1 .75 .75" }), _jsx("path", { d: "M16 15l2 6l2 -6" })] }));
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
2
|
+
export const ListIcon = ({ 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-list", children: [_jsx("path", { stroke: "none", d: "M0 0h24v24H0z", fill: "none" }), _jsx("path", { d: "M9 6l11 0" }), _jsx("path", { d: "M9 12l11 0" }), _jsx("path", { d: "M9 18l11 0" }), _jsx("path", { d: "M5 6l0 .01" }), _jsx("path", { d: "M5 12l0 .01" }), _jsx("path", { d: "M5 18l0 .01" })] }));
|
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,7 @@ export * from './icons/CloudUploadIcon';
|
|
|
48
48
|
export * from './icons/CogIcon';
|
|
49
49
|
export * from './icons/CopyIcon';
|
|
50
50
|
export * from './icons/CrossRedIcon';
|
|
51
|
+
export * from './icons/CsvIcon';
|
|
51
52
|
export * from './icons/DbIcon';
|
|
52
53
|
export * from './icons/DeFlagIcon';
|
|
53
54
|
export * from './icons/EditIcon';
|
|
@@ -60,6 +61,7 @@ export * from './icons/InfoIcon';
|
|
|
60
61
|
export * from './icons/InformationCircleIcon';
|
|
61
62
|
export * from './icons/InformationTriangleIcon';
|
|
62
63
|
export * from './icons/LanguageIcon';
|
|
64
|
+
export * from './icons/ListIcon';
|
|
63
65
|
export * from './icons/MailIcon';
|
|
64
66
|
export * from './icons/MinusIcon';
|
|
65
67
|
export * from './icons/NotAllowIcon';
|
package/dist/index.js
CHANGED
|
@@ -48,6 +48,7 @@ export * from './icons/CloudUploadIcon';
|
|
|
48
48
|
export * from './icons/CogIcon';
|
|
49
49
|
export * from './icons/CopyIcon';
|
|
50
50
|
export * from './icons/CrossRedIcon';
|
|
51
|
+
export * from './icons/CsvIcon';
|
|
51
52
|
export * from './icons/DbIcon';
|
|
52
53
|
export * from './icons/DeFlagIcon';
|
|
53
54
|
export * from './icons/EditIcon';
|
|
@@ -60,6 +61,7 @@ export * from './icons/InfoIcon';
|
|
|
60
61
|
export * from './icons/InformationCircleIcon';
|
|
61
62
|
export * from './icons/InformationTriangleIcon';
|
|
62
63
|
export * from './icons/LanguageIcon';
|
|
64
|
+
export * from './icons/ListIcon';
|
|
63
65
|
export * from './icons/MailIcon';
|
|
64
66
|
export * from './icons/MinusIcon';
|
|
65
67
|
export * from './icons/NotAllowIcon';
|