@veeqo/ui 15.18.0 → 15.19.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.
- package/dist/icons/custom/components/CreditIcon.cjs +34 -0
- package/dist/icons/custom/components/CreditIcon.cjs.map +1 -0
- package/dist/icons/custom/components/CreditIcon.d.ts +3 -0
- package/dist/icons/custom/components/CreditIcon.js +12 -0
- package/dist/icons/custom/components/CreditIcon.js.map +1 -0
- package/dist/icons/custom/index.d.ts +1 -0
- package/dist/index.cjs +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var React = require('react');
|
|
4
|
+
|
|
5
|
+
function _interopNamespaceCompat(e) {
|
|
6
|
+
if (e && typeof e === 'object' && 'default' in e) return e;
|
|
7
|
+
var n = Object.create(null);
|
|
8
|
+
if (e) {
|
|
9
|
+
Object.keys(e).forEach(function (k) {
|
|
10
|
+
if (k !== 'default') {
|
|
11
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
12
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () { return e[k]; }
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
n.default = e;
|
|
20
|
+
return Object.freeze(n);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
var React__namespace = /*#__PURE__*/_interopNamespaceCompat(React);
|
|
24
|
+
|
|
25
|
+
const CreditIcon = (props) => (React__namespace.createElement("svg", { viewBox: "0 0 28 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Veeqo Credits", ...props },
|
|
26
|
+
React__namespace.createElement("path", { d: "M14.036 27.93c7.622 0 13.8-6.179 13.8-13.8 0-7.622-6.178-13.8-13.8-13.8-7.621 0-13.8 6.178-13.8 13.8 0 7.621 6.179 13.8 13.8 13.8Z", fill: "#05AD12" }),
|
|
27
|
+
React__namespace.createElement("path", { d: "m20.928 2.949-1.542-.918-1.059 1.78 1.542.917 1.059-1.78ZM10.512 25.048l-2.863-1.576-.998 1.813 2.862 1.576.999-1.813Zm-3.198-2.01-.937-.551-1.05 1.784.937.55 1.05-1.783ZM22.031 3.264l-.566-.337-1.059 1.78.566.336 1.059-1.779Z", fill: "#fff" }),
|
|
28
|
+
React__namespace.createElement("path", { d: "M14.036 27.628c7.455 0 13.498-6.043 13.498-13.498 0-7.455-6.043-13.498-13.498-13.498C6.581.632.538 6.675.538 14.13c0 7.455 6.043 13.498 13.498 13.498Z", stroke: "#070F17", strokeWidth: ".574" }),
|
|
29
|
+
React__namespace.createElement("path", { d: "M14.036 25.17c6.097 0 11.04-4.943 11.04-11.04 0-6.097-4.943-11.04-11.04-11.04-6.097 0-11.04 4.943-11.04 11.04 0 6.097 4.943 11.04 11.04 11.04Z", fill: "#fff", stroke: "#070F17", strokeWidth: ".574" }),
|
|
30
|
+
React__namespace.createElement("path", { d: "M13.897 20.582c-.905 0-1.723-.155-2.454-.463-.72-.31-1.29-.754-1.711-1.335-.422-.58-.639-1.267-.651-2.057h2.79c.036.53.222.951.557 1.26.347.309.818.463 1.413.463.608 0 1.085-.142 1.432-.426.347-.297.52-.68.52-1.15 0-.382-.117-.697-.352-.944a2.366 2.366 0 0 0-.893-.575c-.347-.148-.83-.309-1.45-.482-.844-.247-1.532-.488-2.065-.723a3.824 3.824 0 0 1-1.357-1.094c-.372-.494-.558-1.149-.558-1.964 0-.766.192-1.434.576-2.002.385-.568.924-1 1.618-1.298.695-.308 1.488-.463 2.38-.463 1.34 0 2.424.328 3.255.982.843.643 1.308 1.545 1.395 2.707h-2.864a1.443 1.443 0 0 0-.577-1.094c-.347-.297-.812-.445-1.394-.445-.509 0-.918.13-1.228.39-.297.259-.446.636-.446 1.13 0 .346.112.636.335.871.235.223.52.408.855.556.347.136.83.297 1.45.482.844.247 1.532.495 2.065.742.533.247.991.617 1.376 1.112.384.494.576 1.143.576 1.946 0 .692-.18 1.335-.539 1.928-.36.593-.886 1.069-1.58 1.427-.695.346-1.52.519-2.474.519Z", fill: "#196F3F" }),
|
|
31
|
+
React__namespace.createElement("path", { d: "M13.322 6.135h.928v15.771h-.928V6.136Z", fill: "#196F3F" })));
|
|
32
|
+
|
|
33
|
+
exports.CreditIcon = CreditIcon;
|
|
34
|
+
//# sourceMappingURL=CreditIcon.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreditIcon.cjs","sources":["../../../../src/icons/custom/components/CreditIcon.tsx"],"sourcesContent":["import * as React from 'react';\nimport { IconComponentProps } from 'src/icons/types';\n\nexport const CreditIcon = (props: IconComponentProps) => (\n <svg\n viewBox=\"0 0 28 28\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n aria-label=\"Veeqo Credits\"\n {...props}\n >\n <path\n d=\"M14.036 27.93c7.622 0 13.8-6.179 13.8-13.8 0-7.622-6.178-13.8-13.8-13.8-7.621 0-13.8 6.178-13.8 13.8 0 7.621 6.179 13.8 13.8 13.8Z\"\n fill=\"#05AD12\"\n />\n <path\n d=\"m20.928 2.949-1.542-.918-1.059 1.78 1.542.917 1.059-1.78ZM10.512 25.048l-2.863-1.576-.998 1.813 2.862 1.576.999-1.813Zm-3.198-2.01-.937-.551-1.05 1.784.937.55 1.05-1.783ZM22.031 3.264l-.566-.337-1.059 1.78.566.336 1.059-1.779Z\"\n fill=\"#fff\"\n />\n <path\n d=\"M14.036 27.628c7.455 0 13.498-6.043 13.498-13.498 0-7.455-6.043-13.498-13.498-13.498C6.581.632.538 6.675.538 14.13c0 7.455 6.043 13.498 13.498 13.498Z\"\n stroke=\"#070F17\"\n strokeWidth=\".574\"\n />\n <path\n d=\"M14.036 25.17c6.097 0 11.04-4.943 11.04-11.04 0-6.097-4.943-11.04-11.04-11.04-6.097 0-11.04 4.943-11.04 11.04 0 6.097 4.943 11.04 11.04 11.04Z\"\n fill=\"#fff\"\n stroke=\"#070F17\"\n strokeWidth=\".574\"\n />\n <path\n d=\"M13.897 20.582c-.905 0-1.723-.155-2.454-.463-.72-.31-1.29-.754-1.711-1.335-.422-.58-.639-1.267-.651-2.057h2.79c.036.53.222.951.557 1.26.347.309.818.463 1.413.463.608 0 1.085-.142 1.432-.426.347-.297.52-.68.52-1.15 0-.382-.117-.697-.352-.944a2.366 2.366 0 0 0-.893-.575c-.347-.148-.83-.309-1.45-.482-.844-.247-1.532-.488-2.065-.723a3.824 3.824 0 0 1-1.357-1.094c-.372-.494-.558-1.149-.558-1.964 0-.766.192-1.434.576-2.002.385-.568.924-1 1.618-1.298.695-.308 1.488-.463 2.38-.463 1.34 0 2.424.328 3.255.982.843.643 1.308 1.545 1.395 2.707h-2.864a1.443 1.443 0 0 0-.577-1.094c-.347-.297-.812-.445-1.394-.445-.509 0-.918.13-1.228.39-.297.259-.446.636-.446 1.13 0 .346.112.636.335.871.235.223.52.408.855.556.347.136.83.297 1.45.482.844.247 1.532.495 2.065.742.533.247.991.617 1.376 1.112.384.494.576 1.143.576 1.946 0 .692-.18 1.335-.539 1.928-.36.593-.886 1.069-1.58 1.427-.695.346-1.52.519-2.474.519Z\"\n fill=\"#196F3F\"\n />\n <path d=\"M13.322 6.135h.928v15.771h-.928V6.136Z\" fill=\"#196F3F\" />\n </svg>\n);\n"],"names":["React"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AAGO,MAAM,UAAU,GAAG,CAAC,KAAyB,MAClDA,gBAAA,CAAA,aAAA,CAAA,KAAA,EAAA,EACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,EAAA,YAAA,EACvB,eAAe,EAAA,GACtB,KAAK,EAAA;AAET,IAAAA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,oIAAoI,EACtI,IAAI,EAAC,SAAS,EAAA,CACd;AACF,IAAAA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,oOAAoO,EACtO,IAAI,EAAC,MAAM,EAAA,CACX;IACFA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,wJAAwJ,EAC1J,MAAM,EAAC,SAAS,EAChB,WAAW,EAAC,MAAM,EAAA,CAClB;AACF,IAAAA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,gJAAgJ,EAClJ,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,SAAS,EAChB,WAAW,EAAC,MAAM,EAAA,CAClB;AACF,IAAAA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,m4BAAm4B,EACr4B,IAAI,EAAC,SAAS,EAAA,CACd;IACFA,gBAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,CAAC,EAAC,wCAAwC,EAAC,IAAI,EAAC,SAAS,EAAA,CAAG,CAC9D;;;;"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
const CreditIcon = (props) => (React.createElement("svg", { viewBox: "0 0 28 28", fill: "none", xmlns: "http://www.w3.org/2000/svg", "aria-label": "Veeqo Credits", ...props },
|
|
4
|
+
React.createElement("path", { d: "M14.036 27.93c7.622 0 13.8-6.179 13.8-13.8 0-7.622-6.178-13.8-13.8-13.8-7.621 0-13.8 6.178-13.8 13.8 0 7.621 6.179 13.8 13.8 13.8Z", fill: "#05AD12" }),
|
|
5
|
+
React.createElement("path", { d: "m20.928 2.949-1.542-.918-1.059 1.78 1.542.917 1.059-1.78ZM10.512 25.048l-2.863-1.576-.998 1.813 2.862 1.576.999-1.813Zm-3.198-2.01-.937-.551-1.05 1.784.937.55 1.05-1.783ZM22.031 3.264l-.566-.337-1.059 1.78.566.336 1.059-1.779Z", fill: "#fff" }),
|
|
6
|
+
React.createElement("path", { d: "M14.036 27.628c7.455 0 13.498-6.043 13.498-13.498 0-7.455-6.043-13.498-13.498-13.498C6.581.632.538 6.675.538 14.13c0 7.455 6.043 13.498 13.498 13.498Z", stroke: "#070F17", strokeWidth: ".574" }),
|
|
7
|
+
React.createElement("path", { d: "M14.036 25.17c6.097 0 11.04-4.943 11.04-11.04 0-6.097-4.943-11.04-11.04-11.04-6.097 0-11.04 4.943-11.04 11.04 0 6.097 4.943 11.04 11.04 11.04Z", fill: "#fff", stroke: "#070F17", strokeWidth: ".574" }),
|
|
8
|
+
React.createElement("path", { d: "M13.897 20.582c-.905 0-1.723-.155-2.454-.463-.72-.31-1.29-.754-1.711-1.335-.422-.58-.639-1.267-.651-2.057h2.79c.036.53.222.951.557 1.26.347.309.818.463 1.413.463.608 0 1.085-.142 1.432-.426.347-.297.52-.68.52-1.15 0-.382-.117-.697-.352-.944a2.366 2.366 0 0 0-.893-.575c-.347-.148-.83-.309-1.45-.482-.844-.247-1.532-.488-2.065-.723a3.824 3.824 0 0 1-1.357-1.094c-.372-.494-.558-1.149-.558-1.964 0-.766.192-1.434.576-2.002.385-.568.924-1 1.618-1.298.695-.308 1.488-.463 2.38-.463 1.34 0 2.424.328 3.255.982.843.643 1.308 1.545 1.395 2.707h-2.864a1.443 1.443 0 0 0-.577-1.094c-.347-.297-.812-.445-1.394-.445-.509 0-.918.13-1.228.39-.297.259-.446.636-.446 1.13 0 .346.112.636.335.871.235.223.52.408.855.556.347.136.83.297 1.45.482.844.247 1.532.495 2.065.742.533.247.991.617 1.376 1.112.384.494.576 1.143.576 1.946 0 .692-.18 1.335-.539 1.928-.36.593-.886 1.069-1.58 1.427-.695.346-1.52.519-2.474.519Z", fill: "#196F3F" }),
|
|
9
|
+
React.createElement("path", { d: "M13.322 6.135h.928v15.771h-.928V6.136Z", fill: "#196F3F" })));
|
|
10
|
+
|
|
11
|
+
export { CreditIcon };
|
|
12
|
+
//# sourceMappingURL=CreditIcon.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CreditIcon.js","sources":["../../../../src/icons/custom/components/CreditIcon.tsx"],"sourcesContent":["import * as React from 'react';\nimport { IconComponentProps } from 'src/icons/types';\n\nexport const CreditIcon = (props: IconComponentProps) => (\n <svg\n viewBox=\"0 0 28 28\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n aria-label=\"Veeqo Credits\"\n {...props}\n >\n <path\n d=\"M14.036 27.93c7.622 0 13.8-6.179 13.8-13.8 0-7.622-6.178-13.8-13.8-13.8-7.621 0-13.8 6.178-13.8 13.8 0 7.621 6.179 13.8 13.8 13.8Z\"\n fill=\"#05AD12\"\n />\n <path\n d=\"m20.928 2.949-1.542-.918-1.059 1.78 1.542.917 1.059-1.78ZM10.512 25.048l-2.863-1.576-.998 1.813 2.862 1.576.999-1.813Zm-3.198-2.01-.937-.551-1.05 1.784.937.55 1.05-1.783ZM22.031 3.264l-.566-.337-1.059 1.78.566.336 1.059-1.779Z\"\n fill=\"#fff\"\n />\n <path\n d=\"M14.036 27.628c7.455 0 13.498-6.043 13.498-13.498 0-7.455-6.043-13.498-13.498-13.498C6.581.632.538 6.675.538 14.13c0 7.455 6.043 13.498 13.498 13.498Z\"\n stroke=\"#070F17\"\n strokeWidth=\".574\"\n />\n <path\n d=\"M14.036 25.17c6.097 0 11.04-4.943 11.04-11.04 0-6.097-4.943-11.04-11.04-11.04-6.097 0-11.04 4.943-11.04 11.04 0 6.097 4.943 11.04 11.04 11.04Z\"\n fill=\"#fff\"\n stroke=\"#070F17\"\n strokeWidth=\".574\"\n />\n <path\n d=\"M13.897 20.582c-.905 0-1.723-.155-2.454-.463-.72-.31-1.29-.754-1.711-1.335-.422-.58-.639-1.267-.651-2.057h2.79c.036.53.222.951.557 1.26.347.309.818.463 1.413.463.608 0 1.085-.142 1.432-.426.347-.297.52-.68.52-1.15 0-.382-.117-.697-.352-.944a2.366 2.366 0 0 0-.893-.575c-.347-.148-.83-.309-1.45-.482-.844-.247-1.532-.488-2.065-.723a3.824 3.824 0 0 1-1.357-1.094c-.372-.494-.558-1.149-.558-1.964 0-.766.192-1.434.576-2.002.385-.568.924-1 1.618-1.298.695-.308 1.488-.463 2.38-.463 1.34 0 2.424.328 3.255.982.843.643 1.308 1.545 1.395 2.707h-2.864a1.443 1.443 0 0 0-.577-1.094c-.347-.297-.812-.445-1.394-.445-.509 0-.918.13-1.228.39-.297.259-.446.636-.446 1.13 0 .346.112.636.335.871.235.223.52.408.855.556.347.136.83.297 1.45.482.844.247 1.532.495 2.065.742.533.247.991.617 1.376 1.112.384.494.576 1.143.576 1.946 0 .692-.18 1.335-.539 1.928-.36.593-.886 1.069-1.58 1.427-.695.346-1.52.519-2.474.519Z\"\n fill=\"#196F3F\"\n />\n <path d=\"M13.322 6.135h.928v15.771h-.928V6.136Z\" fill=\"#196F3F\" />\n </svg>\n);\n"],"names":[],"mappings":";;AAGO,MAAM,UAAU,GAAG,CAAC,KAAyB,MAClD,KAAA,CAAA,aAAA,CAAA,KAAA,EAAA,EACE,OAAO,EAAC,WAAW,EACnB,IAAI,EAAC,MAAM,EACX,KAAK,EAAC,4BAA4B,EAAA,YAAA,EACvB,eAAe,EAAA,GACtB,KAAK,EAAA;AAET,IAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,oIAAoI,EACtI,IAAI,EAAC,SAAS,EAAA,CACd;AACF,IAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,oOAAoO,EACtO,IAAI,EAAC,MAAM,EAAA,CACX;IACF,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,wJAAwJ,EAC1J,MAAM,EAAC,SAAS,EAChB,WAAW,EAAC,MAAM,EAAA,CAClB;AACF,IAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,gJAAgJ,EAClJ,IAAI,EAAC,MAAM,EACX,MAAM,EAAC,SAAS,EAChB,WAAW,EAAC,MAAM,EAAA,CAClB;AACF,IAAA,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EACE,CAAC,EAAC,m4BAAm4B,EACr4B,IAAI,EAAC,SAAS,EAAA,CACd;IACF,KAAA,CAAA,aAAA,CAAA,MAAA,EAAA,EAAM,CAAC,EAAC,wCAAwC,EAAC,IAAI,EAAC,SAAS,EAAA,CAAG,CAC9D;;;;"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export { ActiveCheckboxIcon } from './components/ActiveCheckboxIcon';
|
|
2
2
|
export { ActiveRadioIcon } from './components/ActiveRadioIcon';
|
|
3
3
|
export { AmazonSmileIcon } from './components/AmazonSmileIcon';
|
|
4
|
+
export { CreditIcon } from './components/CreditIcon';
|
|
4
5
|
export { DashboardIcon } from './components/DashboardIcon';
|
|
5
6
|
export { DestructiveIcon } from './components/DestructiveIcon';
|
|
6
7
|
export { DoubleArrowAscIcon } from './components/DoubleArrowAscIcon';
|
package/dist/index.cjs
CHANGED
|
@@ -315,6 +315,7 @@ var WooCommerceIcon = require('./icons/design-system/components/WooCommerceIcon.
|
|
|
315
315
|
var ActiveCheckboxIcon = require('./icons/custom/components/ActiveCheckboxIcon.cjs');
|
|
316
316
|
var ActiveRadioIcon = require('./icons/custom/components/ActiveRadioIcon.cjs');
|
|
317
317
|
var AmazonSmileIcon = require('./icons/custom/components/AmazonSmileIcon.cjs');
|
|
318
|
+
var CreditIcon = require('./icons/custom/components/CreditIcon.cjs');
|
|
318
319
|
var DashboardIcon = require('./icons/custom/components/DashboardIcon.cjs');
|
|
319
320
|
var DestructiveIcon = require('./icons/custom/components/DestructiveIcon.cjs');
|
|
320
321
|
var DoubleArrowAscIcon = require('./icons/custom/components/DoubleArrowAscIcon.cjs');
|
|
@@ -684,6 +685,7 @@ exports.WooCommerceIcon = WooCommerceIcon.ReactComponent;
|
|
|
684
685
|
exports.ActiveCheckboxIcon = ActiveCheckboxIcon.ActiveCheckboxIcon;
|
|
685
686
|
exports.ActiveRadioIcon = ActiveRadioIcon.ActiveRadioIcon;
|
|
686
687
|
exports.AmazonSmileIcon = AmazonSmileIcon.AmazonSmileIcon;
|
|
688
|
+
exports.CreditIcon = CreditIcon.CreditIcon;
|
|
687
689
|
exports.DashboardIcon = DashboardIcon.DashboardIcon;
|
|
688
690
|
exports.DestructiveIcon = DestructiveIcon.DestructiveIcon;
|
|
689
691
|
exports.DoubleArrowAscIcon = DoubleArrowAscIcon.DoubleArrowAscIcon;
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -313,6 +313,7 @@ export { ReactComponent as WooCommerceIcon } from './icons/design-system/compone
|
|
|
313
313
|
export { ActiveCheckboxIcon } from './icons/custom/components/ActiveCheckboxIcon.js';
|
|
314
314
|
export { ActiveRadioIcon } from './icons/custom/components/ActiveRadioIcon.js';
|
|
315
315
|
export { AmazonSmileIcon } from './icons/custom/components/AmazonSmileIcon.js';
|
|
316
|
+
export { CreditIcon } from './icons/custom/components/CreditIcon.js';
|
|
316
317
|
export { DashboardIcon } from './icons/custom/components/DashboardIcon.js';
|
|
317
318
|
export { DestructiveIcon } from './icons/custom/components/DestructiveIcon.js';
|
|
318
319
|
export { DoubleArrowAscIcon } from './icons/custom/components/DoubleArrowAscIcon.js';
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|