@ultraviolet/icons 3.11.4 → 3.12.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/components/Icon/__generatedIcons__/AsteriskIcon.d.ts +3 -0
- package/dist/components/Icon/__generatedIcons__/BoldIcon.cjs +11 -0
- package/dist/components/Icon/__generatedIcons__/BoldIcon.d.ts +2 -0
- package/dist/components/Icon/__generatedIcons__/BoldIcon.js +11 -0
- package/dist/components/Icon/__generatedIcons__/CrossCircleIcon.d.ts +3 -0
- package/dist/components/Icon/__generatedIcons__/CrossCircleOutlineIcon.d.ts +3 -0
- package/dist/components/Icon/__generatedIcons__/DragVariantIcon.d.ts +3 -0
- package/dist/components/Icon/__generatedIcons__/ItalicIcon.cjs +11 -0
- package/dist/components/Icon/__generatedIcons__/ItalicIcon.d.ts +2 -0
- package/dist/components/Icon/__generatedIcons__/ItalicIcon.js +11 -0
- package/dist/components/Icon/__generatedIcons__/ListBulletIcon.cjs +18 -0
- package/dist/components/Icon/__generatedIcons__/ListBulletIcon.d.ts +2 -0
- package/dist/components/Icon/__generatedIcons__/ListBulletIcon.js +18 -0
- package/dist/components/Icon/__generatedIcons__/ListNumberIcon.cjs +14 -0
- package/dist/components/Icon/__generatedIcons__/ListNumberIcon.d.ts +2 -0
- package/dist/components/Icon/__generatedIcons__/ListNumberIcon.js +14 -0
- package/dist/components/Icon/__generatedIcons__/UnderlineIcon.cjs +11 -0
- package/dist/components/Icon/__generatedIcons__/UnderlineIcon.d.ts +2 -0
- package/dist/components/Icon/__generatedIcons__/UnderlineIcon.js +11 -0
- package/dist/components/Icon/__generatedIcons__/index.d.ts +5 -0
- package/dist/components/ProductIcon/__generatedIcons__/DocumentDbProductIcon.d.ts +3 -0
- package/dist/components/ProductIcon/__generatedIcons__/MongoDbProductIcon.cjs +18 -0
- package/dist/components/ProductIcon/__generatedIcons__/MongoDbProductIcon.d.ts +2 -0
- package/dist/components/ProductIcon/__generatedIcons__/MongoDbProductIcon.js +18 -0
- package/dist/components/ProductIcon/__generatedIcons__/VpnProductIcon.cjs +24 -0
- package/dist/components/ProductIcon/__generatedIcons__/VpnProductIcon.d.ts +2 -0
- package/dist/components/ProductIcon/__generatedIcons__/VpnProductIcon.js +24 -0
- package/dist/components/ProductIcon/__generatedIcons__/WafProductIcon.cjs +20 -0
- package/dist/components/ProductIcon/__generatedIcons__/WafProductIcon.d.ts +2 -0
- package/dist/components/ProductIcon/__generatedIcons__/WafProductIcon.js +20 -0
- package/dist/components/ProductIcon/__generatedIcons__/index.d.ts +3 -0
- package/dist/components/ProductIcon/index.cjs +6 -0
- package/dist/components/ProductIcon/index.js +6 -0
- package/dist/deprecatedIcons.d.ts +12 -0
- package/dist/index.cjs +10 -0
- package/dist/index.js +10 -0
- package/package.json +1 -1
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const BoldIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.70483 3.75C4.70483 3.33579 5.04062 3 5.45483 3H10.8519C11.8795 3 12.865 3.40822 13.5917 4.13485C14.3183 4.86148 14.7265 5.84701 14.7265 6.87462C14.7265 7.86717 14.3457 8.82045 13.6649 9.53911C13.8092 9.64964 13.9469 9.7701 14.0769 9.90005C14.8568 10.68 15.295 11.7379 15.295 12.8409C15.295 13.944 14.8568 15.0019 14.0769 15.7818C13.2969 16.5618 12.239 17 11.136 17L5.45384 16.9992C5.04001 16.9987 4.70483 16.6631 4.70483 16.2492V3.75ZM7.34106 10.75V14.9311H10.5679C11.1223 14.9311 11.654 14.7109 12.0461 14.3188C12.4382 13.9268 12.6584 13.395 12.6584 12.8406C12.6584 12.2861 12.4382 11.7544 12.0461 11.3623C11.654 10.9703 11.1223 10.75 10.5679 10.75H7.34106ZM7.34106 8.68189H10.2838C10.7629 8.68189 11.2224 8.49156 11.5612 8.15277C11.9 7.81399 12.0903 7.35449 12.0903 6.87538C12.0903 6.39626 11.9 5.93677 11.5612 5.59798C11.2224 5.2592 10.7629 5.06887 10.2838 5.06887H7.34106V8.68189Z" }) })
|
|
10
|
+
);
|
|
11
|
+
exports.BoldIcon = BoldIcon;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const BoldIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M4.70483 3.75C4.70483 3.33579 5.04062 3 5.45483 3H10.8519C11.8795 3 12.865 3.40822 13.5917 4.13485C14.3183 4.86148 14.7265 5.84701 14.7265 6.87462C14.7265 7.86717 14.3457 8.82045 13.6649 9.53911C13.8092 9.64964 13.9469 9.7701 14.0769 9.90005C14.8568 10.68 15.295 11.7379 15.295 12.8409C15.295 13.944 14.8568 15.0019 14.0769 15.7818C13.2969 16.5618 12.239 17 11.136 17L5.45384 16.9992C5.04001 16.9987 4.70483 16.6631 4.70483 16.2492V3.75ZM7.34106 10.75V14.9311H10.5679C11.1223 14.9311 11.654 14.7109 12.0461 14.3188C12.4382 13.9268 12.6584 13.395 12.6584 12.8406C12.6584 12.2861 12.4382 11.7544 12.0461 11.3623C11.654 10.9703 11.1223 10.75 10.5679 10.75H7.34106ZM7.34106 8.68189H10.2838C10.7629 8.68189 11.2224 8.49156 11.5612 8.15277C11.9 7.81399 12.0903 7.35449 12.0903 6.87538C12.0903 6.39626 11.9 5.93677 11.5612 5.59798C11.2224 5.2592 10.7629 5.06887 10.2838 5.06887H7.34106V8.68189Z" }) })
|
|
8
|
+
);
|
|
9
|
+
export {
|
|
10
|
+
BoldIcon
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const ItalicIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.68108 3.75C8.68108 3.33579 9.01687 3 9.43108 3H15.1122C15.5264 3 15.8622 3.33579 15.8622 3.75C15.8622 4.16421 15.5264 4.5 15.1122 4.5H12.7601L8.83187 15.5H10.5673C10.9815 15.5 11.3173 15.8358 11.3173 16.25C11.3173 16.6642 10.9815 17 10.5673 17H4.8877C4.47348 17 4.1377 16.6642 4.1377 16.25C4.1377 15.8358 4.47348 15.5 4.8877 15.5H7.23909L11.1673 4.5H9.43108C9.01687 4.5 8.68108 4.16421 8.68108 3.75Z" }) })
|
|
10
|
+
);
|
|
11
|
+
exports.ItalicIcon = ItalicIcon;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const ItalicIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M8.68108 3.75C8.68108 3.33579 9.01687 3 9.43108 3H15.1122C15.5264 3 15.8622 3.33579 15.8622 3.75C15.8622 4.16421 15.5264 4.5 15.1122 4.5H12.7601L8.83187 15.5H10.5673C10.9815 15.5 11.3173 15.8358 11.3173 16.25C11.3173 16.6642 10.9815 17 10.5673 17H4.8877C4.47348 17 4.1377 16.6642 4.1377 16.25C4.1377 15.8358 4.47348 15.5 4.8877 15.5H7.23909L11.1673 4.5H9.43108C9.01687 4.5 8.68108 4.16421 8.68108 3.75Z" }) })
|
|
8
|
+
);
|
|
9
|
+
export {
|
|
10
|
+
ItalicIcon
|
|
11
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const ListBulletIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, { ...props, children: [
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.00688 6.09231C5.00688 6.64649 4.55762 7.09574 4.00344 7.09574C3.44925 7.09574 3 6.64649 3 6.09231C3 5.53812 3.44925 5.08887 4.00344 5.08887C4.55762 5.08887 5.00688 5.53812 5.00688 6.09231Z" }),
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.59178 6.09574C6.59178 5.68267 6.92663 5.34781 7.3397 5.34781H16.2521C16.6651 5.34781 17 5.68267 17 6.09574C17 6.5088 16.6651 6.84366 16.2521 6.84366H7.3397C6.92663 6.84366 6.59178 6.5088 6.59178 6.09574Z" }),
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.00688 9.99998C5.00688 10.5542 4.55762 11.0034 4.00344 11.0034C3.44925 11.0034 3 10.5542 3 9.99998C3 9.4458 3.44925 8.99654 4.00344 8.99654C4.55762 8.99654 5.00688 9.4458 5.00688 9.99998Z" }),
|
|
13
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.59178 10.0034C6.59178 9.59035 6.92663 9.25549 7.3397 9.25549H16.2521C16.6651 9.25549 17 9.59035 17 10.0034C17 10.4165 16.6651 10.7513 16.2521 10.7513H7.3397C6.92663 10.7513 6.59178 10.4165 6.59178 10.0034Z" }),
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5.00688 13.9074C5.00688 14.4616 4.55762 14.9109 4.00344 14.9109C3.44925 14.9109 3 14.4616 3 13.9074C3 13.3532 3.44925 12.904 4.00344 12.904C4.55762 12.904 5.00688 13.3532 5.00688 13.9074Z" }),
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M6.59178 13.9108C6.59178 13.4978 6.92663 13.1629 7.3397 13.1629H16.2521C16.6651 13.1629 17 13.4978 17 13.9108C17 14.3239 16.6651 14.6588 16.2521 14.6588H7.3397C6.92663 14.6588 6.59178 14.3239 6.59178 13.9108Z" })
|
|
16
|
+
] })
|
|
17
|
+
);
|
|
18
|
+
exports.ListBulletIcon = ListBulletIcon;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsxs, jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const ListBulletIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsxs(Icon, { ...props, children: [
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M5.00688 6.09231C5.00688 6.64649 4.55762 7.09574 4.00344 7.09574C3.44925 7.09574 3 6.64649 3 6.09231C3 5.53812 3.44925 5.08887 4.00344 5.08887C4.55762 5.08887 5.00688 5.53812 5.00688 6.09231Z" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M6.59178 6.09574C6.59178 5.68267 6.92663 5.34781 7.3397 5.34781H16.2521C16.6651 5.34781 17 5.68267 17 6.09574C17 6.5088 16.6651 6.84366 16.2521 6.84366H7.3397C6.92663 6.84366 6.59178 6.5088 6.59178 6.09574Z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M5.00688 9.99998C5.00688 10.5542 4.55762 11.0034 4.00344 11.0034C3.44925 11.0034 3 10.5542 3 9.99998C3 9.4458 3.44925 8.99654 4.00344 8.99654C4.55762 8.99654 5.00688 9.4458 5.00688 9.99998Z" }),
|
|
11
|
+
/* @__PURE__ */ jsx("path", { d: "M6.59178 10.0034C6.59178 9.59035 6.92663 9.25549 7.3397 9.25549H16.2521C16.6651 9.25549 17 9.59035 17 10.0034C17 10.4165 16.6651 10.7513 16.2521 10.7513H7.3397C6.92663 10.7513 6.59178 10.4165 6.59178 10.0034Z" }),
|
|
12
|
+
/* @__PURE__ */ jsx("path", { d: "M5.00688 13.9074C5.00688 14.4616 4.55762 14.9109 4.00344 14.9109C3.44925 14.9109 3 14.4616 3 13.9074C3 13.3532 3.44925 12.904 4.00344 12.904C4.55762 12.904 5.00688 13.3532 5.00688 13.9074Z" }),
|
|
13
|
+
/* @__PURE__ */ jsx("path", { d: "M6.59178 13.9108C6.59178 13.4978 6.92663 13.1629 7.3397 13.1629H16.2521C16.6651 13.1629 17 13.4978 17 13.9108C17 14.3239 16.6651 14.6588 16.2521 14.6588H7.3397C6.92663 14.6588 6.59178 14.3239 6.59178 13.9108Z" })
|
|
14
|
+
] })
|
|
15
|
+
);
|
|
16
|
+
export {
|
|
17
|
+
ListBulletIcon
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const ListNumberIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsxs(Icon.Icon, { ...props, children: [
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.79076 5.65132C6.79076 5.2371 7.12655 4.90132 7.54076 4.90132H16.2354C16.6496 4.90132 16.9854 5.2371 16.9854 5.65132C16.9854 6.06553 16.6496 6.40132 16.2354 6.40132H7.54076C7.12655 6.40132 6.79076 6.06553 6.79076 5.65132ZM6.79076 10.0008C6.79076 9.5866 7.12655 9.25081 7.54076 9.25081H16.234C16.6482 9.25081 16.984 9.5866 16.984 10.0008C16.984 10.415 16.6482 10.7508 16.234 10.7508H7.54076C7.12655 10.7508 6.79076 10.415 6.79076 10.0008ZM6.78931 14.3474C6.78931 13.9332 7.1251 13.5974 7.53931 13.5974H16.234C16.6482 13.5974 16.984 13.9332 16.984 14.3474C16.984 14.7616 16.6482 15.0974 16.234 15.0974H7.53931C7.1251 15.0974 6.78931 14.7616 6.78931 14.3474Z" }),
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.01453 4.07859C3.01453 3.67625 3.34068 3.3501 3.74302 3.3501H4.55203C4.95437 3.3501 5.28052 3.67625 5.28052 4.07859V6.04203H5.35818C5.76051 6.04203 6.08667 6.36819 6.08667 6.77052C6.08667 7.17286 5.76051 7.49901 5.35818 7.49901H3.74302C3.34068 7.49901 3.01453 7.17286 3.01453 6.77052C3.01453 6.36819 3.34068 6.04203 3.74302 6.04203H3.82354V4.80708H3.74302C3.34068 4.80708 3.01453 4.48092 3.01453 4.07859ZM4.59492 9.10367C4.58514 9.09969 4.57467 9.09771 4.56412 9.09785C4.55357 9.09798 4.54315 9.10023 4.53348 9.10445C4.52381 9.10867 4.51508 9.11478 4.50781 9.12243C4.23056 9.41398 3.76945 9.42558 3.4779 9.14832C3.18634 8.87107 3.17475 8.40996 3.452 8.11841C3.59322 7.96991 3.76273 7.85116 3.95054 7.76917C4.13835 7.68718 4.34067 7.64359 4.54558 7.64099C4.75049 7.63838 4.95385 7.6768 5.14369 7.75398C5.33352 7.83117 5.506 7.94556 5.65095 8.09042C5.7959 8.23529 5.9104 8.40769 5.98771 8.59747C6.06502 8.78726 6.10356 8.9906 6.10108 9.19551C6.0986 9.40043 6.05515 9.60277 5.97327 9.79064C5.89278 9.97533 5.77675 10.1424 5.63183 10.2822L5.54348 10.3706C5.85643 10.4523 6.08739 10.7369 6.08739 11.0755C6.08739 11.4778 5.76123 11.804 5.3589 11.804H3.80834C3.51369 11.804 3.24806 11.6265 3.1353 11.3542C3.02255 11.082 3.08487 10.7687 3.29322 10.5603L4.61951 9.23405C4.62715 9.22678 4.63341 9.2182 4.63763 9.20853C4.64184 9.19886 4.64408 9.18844 4.64421 9.17789C4.64434 9.16734 4.64235 9.15687 4.63837 9.1471C4.63439 9.13732 4.6285 9.12845 4.62103 9.12099C4.61357 9.11353 4.60469 9.10764 4.59492 9.10367ZM3.01453 12.6928C3.01453 12.2904 3.34068 11.9643 3.74302 11.9643H4.5506C4.95799 11.9643 5.34869 12.1261 5.63676 12.4142C5.92483 12.7023 6.08667 13.093 6.08667 13.5004C6.08667 13.7877 6.00618 14.0667 5.85769 14.3072C6.00618 14.5478 6.08667 14.8268 6.08667 15.1141C6.08667 15.5215 5.92483 15.9122 5.63676 16.2002C5.34869 16.4883 4.95799 16.6502 4.5506 16.6502H3.74302C3.34068 16.6502 3.01453 16.324 3.01453 15.9217C3.01453 15.5193 3.34068 15.1932 3.74302 15.1932H4.5506C4.57157 15.1932 4.59169 15.1848 4.60652 15.17C4.62135 15.1552 4.62969 15.1351 4.62969 15.1141C4.62969 15.0931 4.62135 15.073 4.60652 15.0582C4.59403 15.0457 4.57491 15.0364 4.5506 15.0364H4.2814C3.87907 15.0364 3.55291 14.7103 3.55291 14.3079C3.55291 13.9056 3.87907 13.5794 4.2814 13.5794H4.5506C4.57157 13.5794 4.59169 13.5711 4.60652 13.5563C4.62135 13.5415 4.62969 13.5213 4.62969 13.5004C4.62969 13.4794 4.62135 13.4593 4.60652 13.4444C4.59169 13.4296 4.57157 13.4213 4.5506 13.4213H3.74302C3.34068 13.4213 3.01453 13.0951 3.01453 12.6928Z" })
|
|
12
|
+
] })
|
|
13
|
+
);
|
|
14
|
+
exports.ListNumberIcon = ListNumberIcon;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsxs, jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const ListNumberIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsxs(Icon, { ...props, children: [
|
|
8
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M6.79076 5.65132C6.79076 5.2371 7.12655 4.90132 7.54076 4.90132H16.2354C16.6496 4.90132 16.9854 5.2371 16.9854 5.65132C16.9854 6.06553 16.6496 6.40132 16.2354 6.40132H7.54076C7.12655 6.40132 6.79076 6.06553 6.79076 5.65132ZM6.79076 10.0008C6.79076 9.5866 7.12655 9.25081 7.54076 9.25081H16.234C16.6482 9.25081 16.984 9.5866 16.984 10.0008C16.984 10.415 16.6482 10.7508 16.234 10.7508H7.54076C7.12655 10.7508 6.79076 10.415 6.79076 10.0008ZM6.78931 14.3474C6.78931 13.9332 7.1251 13.5974 7.53931 13.5974H16.234C16.6482 13.5974 16.984 13.9332 16.984 14.3474C16.984 14.7616 16.6482 15.0974 16.234 15.0974H7.53931C7.1251 15.0974 6.78931 14.7616 6.78931 14.3474Z" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M3.01453 4.07859C3.01453 3.67625 3.34068 3.3501 3.74302 3.3501H4.55203C4.95437 3.3501 5.28052 3.67625 5.28052 4.07859V6.04203H5.35818C5.76051 6.04203 6.08667 6.36819 6.08667 6.77052C6.08667 7.17286 5.76051 7.49901 5.35818 7.49901H3.74302C3.34068 7.49901 3.01453 7.17286 3.01453 6.77052C3.01453 6.36819 3.34068 6.04203 3.74302 6.04203H3.82354V4.80708H3.74302C3.34068 4.80708 3.01453 4.48092 3.01453 4.07859ZM4.59492 9.10367C4.58514 9.09969 4.57467 9.09771 4.56412 9.09785C4.55357 9.09798 4.54315 9.10023 4.53348 9.10445C4.52381 9.10867 4.51508 9.11478 4.50781 9.12243C4.23056 9.41398 3.76945 9.42558 3.4779 9.14832C3.18634 8.87107 3.17475 8.40996 3.452 8.11841C3.59322 7.96991 3.76273 7.85116 3.95054 7.76917C4.13835 7.68718 4.34067 7.64359 4.54558 7.64099C4.75049 7.63838 4.95385 7.6768 5.14369 7.75398C5.33352 7.83117 5.506 7.94556 5.65095 8.09042C5.7959 8.23529 5.9104 8.40769 5.98771 8.59747C6.06502 8.78726 6.10356 8.9906 6.10108 9.19551C6.0986 9.40043 6.05515 9.60277 5.97327 9.79064C5.89278 9.97533 5.77675 10.1424 5.63183 10.2822L5.54348 10.3706C5.85643 10.4523 6.08739 10.7369 6.08739 11.0755C6.08739 11.4778 5.76123 11.804 5.3589 11.804H3.80834C3.51369 11.804 3.24806 11.6265 3.1353 11.3542C3.02255 11.082 3.08487 10.7687 3.29322 10.5603L4.61951 9.23405C4.62715 9.22678 4.63341 9.2182 4.63763 9.20853C4.64184 9.19886 4.64408 9.18844 4.64421 9.17789C4.64434 9.16734 4.64235 9.15687 4.63837 9.1471C4.63439 9.13732 4.6285 9.12845 4.62103 9.12099C4.61357 9.11353 4.60469 9.10764 4.59492 9.10367ZM3.01453 12.6928C3.01453 12.2904 3.34068 11.9643 3.74302 11.9643H4.5506C4.95799 11.9643 5.34869 12.1261 5.63676 12.4142C5.92483 12.7023 6.08667 13.093 6.08667 13.5004C6.08667 13.7877 6.00618 14.0667 5.85769 14.3072C6.00618 14.5478 6.08667 14.8268 6.08667 15.1141C6.08667 15.5215 5.92483 15.9122 5.63676 16.2002C5.34869 16.4883 4.95799 16.6502 4.5506 16.6502H3.74302C3.34068 16.6502 3.01453 16.324 3.01453 15.9217C3.01453 15.5193 3.34068 15.1932 3.74302 15.1932H4.5506C4.57157 15.1932 4.59169 15.1848 4.60652 15.17C4.62135 15.1552 4.62969 15.1351 4.62969 15.1141C4.62969 15.0931 4.62135 15.073 4.60652 15.0582C4.59403 15.0457 4.57491 15.0364 4.5506 15.0364H4.2814C3.87907 15.0364 3.55291 14.7103 3.55291 14.3079C3.55291 13.9056 3.87907 13.5794 4.2814 13.5794H4.5506C4.57157 13.5794 4.59169 13.5711 4.60652 13.5563C4.62135 13.5415 4.62969 13.5213 4.62969 13.5004C4.62969 13.4794 4.62135 13.4593 4.60652 13.4444C4.59169 13.4296 4.57157 13.4213 4.5506 13.4213H3.74302C3.34068 13.4213 3.01453 13.0951 3.01453 12.6928Z" })
|
|
10
|
+
] })
|
|
11
|
+
);
|
|
12
|
+
export {
|
|
13
|
+
ListNumberIcon
|
|
14
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const UnderlineIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.45507 3C5.86928 3 6.20507 3.33579 6.20507 3.75V9.43113C6.20507 9.92948 6.30323 10.423 6.49394 10.8834C6.68465 11.3438 6.96418 11.7621 7.31657 12.1145C7.66896 12.4669 8.08731 12.7465 8.54773 12.9372C9.00815 13.1279 9.50162 13.226 9.99997 13.226C10.4983 13.226 10.9918 13.1279 11.4522 12.9372C11.9126 12.7465 12.331 12.4669 12.6834 12.1145C13.0358 11.7621 13.3153 11.3438 13.506 10.8834C13.6967 10.423 13.7949 9.92948 13.7949 9.43113V3.75C13.7949 3.33579 14.1307 3 14.5449 3C14.9591 3 15.2949 3.33579 15.2949 3.75V9.43113C15.2949 10.1265 15.1579 10.815 14.8918 11.4574C14.6257 12.0998 14.2357 12.6835 13.744 13.1752C13.2524 13.6669 12.6687 14.0569 12.0262 14.323C11.3838 14.5891 10.6953 14.726 9.99997 14.726C9.30464 14.726 8.61611 14.5891 7.9737 14.323C7.3313 14.0569 6.74759 13.6669 6.25591 13.1752C5.76424 12.6835 5.37422 12.0998 5.10812 11.4574C4.84203 10.815 4.70507 10.1265 4.70507 9.43113L4.70507 3.75C4.70507 3.33579 5.04086 3 5.45507 3ZM3.00073 16.25C3.00073 15.8358 3.33652 15.5 3.75073 15.5H16.2492C16.6634 15.5 16.9992 15.8358 16.9992 16.25C16.9992 16.6642 16.6634 17 16.2492 17H3.75073C3.33652 17 3.00073 16.6642 3.00073 16.25Z" }) })
|
|
10
|
+
);
|
|
11
|
+
exports.UnderlineIcon = UnderlineIcon;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { jsx } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const UnderlineIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsx("path", { fillRule: "evenodd", clipRule: "evenodd", d: "M5.45507 3C5.86928 3 6.20507 3.33579 6.20507 3.75V9.43113C6.20507 9.92948 6.30323 10.423 6.49394 10.8834C6.68465 11.3438 6.96418 11.7621 7.31657 12.1145C7.66896 12.4669 8.08731 12.7465 8.54773 12.9372C9.00815 13.1279 9.50162 13.226 9.99997 13.226C10.4983 13.226 10.9918 13.1279 11.4522 12.9372C11.9126 12.7465 12.331 12.4669 12.6834 12.1145C13.0358 11.7621 13.3153 11.3438 13.506 10.8834C13.6967 10.423 13.7949 9.92948 13.7949 9.43113V3.75C13.7949 3.33579 14.1307 3 14.5449 3C14.9591 3 15.2949 3.33579 15.2949 3.75V9.43113C15.2949 10.1265 15.1579 10.815 14.8918 11.4574C14.6257 12.0998 14.2357 12.6835 13.744 13.1752C13.2524 13.6669 12.6687 14.0569 12.0262 14.323C11.3838 14.5891 10.6953 14.726 9.99997 14.726C9.30464 14.726 8.61611 14.5891 7.9737 14.323C7.3313 14.0569 6.74759 13.6669 6.25591 13.1752C5.76424 12.6835 5.37422 12.0998 5.10812 11.4574C4.84203 10.815 4.70507 10.1265 4.70507 9.43113L4.70507 3.75C4.70507 3.33579 5.04086 3 5.45507 3ZM3.00073 16.25C3.00073 15.8358 3.33652 15.5 3.75073 15.5H16.2492C16.6634 15.5 16.9992 15.8358 16.9992 16.25C16.9992 16.6642 16.6634 17 16.2492 17H3.75073C3.33652 17 3.00073 16.6642 3.00073 16.25Z" }) })
|
|
8
|
+
);
|
|
9
|
+
export {
|
|
10
|
+
UnderlineIcon
|
|
11
|
+
};
|
|
@@ -15,6 +15,7 @@ export { ArrowRightIcon } from './ArrowRightIcon';
|
|
|
15
15
|
export { ArrowUpIcon } from './ArrowUpIcon';
|
|
16
16
|
export { AsteriskIcon } from './AsteriskIcon';
|
|
17
17
|
export { AttachIcon } from './AttachIcon';
|
|
18
|
+
export { BoldIcon } from './BoldIcon';
|
|
18
19
|
export { BurgerIcon } from './BurgerIcon';
|
|
19
20
|
export { CancelIcon } from './CancelIcon';
|
|
20
21
|
export { CheckIcon } from './CheckIcon';
|
|
@@ -35,8 +36,11 @@ export { ExpandMoreIcon } from './ExpandMoreIcon';
|
|
|
35
36
|
export { ExpandIcon } from './ExpandIcon';
|
|
36
37
|
export { GithubIcon } from './GithubIcon';
|
|
37
38
|
export { InstagramIcon } from './InstagramIcon';
|
|
39
|
+
export { ItalicIcon } from './ItalicIcon';
|
|
38
40
|
export { LeftRightArrowIcon } from './LeftRightArrowIcon';
|
|
39
41
|
export { LinkedinIcon } from './LinkedinIcon';
|
|
42
|
+
export { ListBulletIcon } from './ListBulletIcon';
|
|
43
|
+
export { ListNumberIcon } from './ListNumberIcon';
|
|
40
44
|
export { LogoutIcon } from './LogoutIcon';
|
|
41
45
|
export { MinusIcon } from './MinusIcon';
|
|
42
46
|
export { NorthShortIcon } from './NorthShortIcon';
|
|
@@ -60,6 +64,7 @@ export { SouthShortIcon } from './SouthShortIcon';
|
|
|
60
64
|
export { SouthIcon } from './SouthIcon';
|
|
61
65
|
export { SwitchOrgaIcon } from './SwitchOrgaIcon';
|
|
62
66
|
export { TwitterIcon } from './TwitterIcon';
|
|
67
|
+
export { UnderlineIcon } from './UnderlineIcon';
|
|
63
68
|
export { UploadIcon } from './UploadIcon';
|
|
64
69
|
export { ViewIcon } from './ViewIcon';
|
|
65
70
|
export { WestShortIcon } from './WestShortIcon';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const MongoDbProductIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsxs("g", { className: "Managed-Database-Document", children: [
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { className: ".Square", children: /* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#F1EEFC", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z", className: "fillWeak" }) }),
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { className: "icon", children: [
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#A060F6", d: "M16.852 24.977a1 1 0 0 0-1.72 1.02L16 25.5c-.868.496-.867.497-.867.498l.002.003.002.005.007.01.015.025a3 3 0 0 0 .176.242c.114.14.277.316.507.517.459.401 1.173.892 2.257 1.366C20.264 29.113 23.911 30 30 30a1 1 0 1 0 0-2c-5.91 0-9.263-.863-11.099-1.666-.915-.4-1.451-.785-1.742-1.04a2.4 2.4 0 0 1-.307-.317m0 9.5a1 1 0 0 0-1.72 1.02L16 35c-.868.496-.867.497-.867.498l.001.002.002.004.006.01.012.02a2 2 0 0 0 .136.193c.086.11.207.25.373.41.334.32.844.718 1.605 1.127 1.52.816 4.033 1.67 8.142 2.043a1 1 0 1 0 .18-1.992c-3.915-.355-6.151-1.156-7.376-1.813-.61-.328-.97-.621-1.165-.808a2 2 0 0 1-.197-.217", className: "fillStrong", clipRule: "evenodd", fillRule: "evenodd" }),
|
|
13
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#521094", d: "m30 12-.788.006C21.248 12.122 15 14.002 15 17v25.455l.006.163C15.274 45.906 21.886 48 30 48q.523 0 1.037-.011A12.99 12.99 0 0 0 42 54c7.18 0 13-5.82 13-13 0-6.147-4.266-11.298-10-12.652V17c0-3.096-6.664-5-15-5m13 16.038V19.65c-2.46 1.424-6.964 2.267-12.211 2.343h-.008a50 50 0 0 1-.777.006H30c-5.583 0-10.416-.854-13-2.349v22.763l.002.082c.137 1.669 5.929 3.503 12.995 3.504A13 13 0 0 1 29 41c0-7.18 5.82-13 13-13q.505 0 1 .038m0-11.053c-.026-.448-1.196-1.23-3.375-1.852C37.113 14.415 33.676 14 30 14s-7.112.415-9.625 1.133C18.173 15.763 17 16.555 17 17l.006.055c.086.435 1.16 1.146 3.114 1.737l.252.074h.003C22.889 19.586 26.325 20 30 20c2.505 0 4.898-.193 6.964-.543q.882-.15 1.677-.335.513-.12.984-.255l.046-.013q.488-.141.906-.29c1.532-.545 2.364-1.145 2.42-1.524zM31 41c0-6.075 4.925-11 11-11s11 4.925 11 11-4.925 11-11 11-11-4.925-11-11", className: "fill", clipRule: "evenodd", fillRule: "evenodd" }),
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#A060F6", d: "M36.475 40.535a1 1 0 0 0 0 1.377l.964 1.016v2.011a2.51 2.51 0 0 0 2.508 2.508 1 1 0 0 0 0-2 .51.51 0 0 1-.508-.508v-2.41a1 1 0 0 0-.275-.688l-.586-.617.586-.618a1 1 0 0 0 .275-.688v-2.41c0-.28.227-.508.508-.508a1 1 0 0 0 0-2 2.51 2.51 0 0 0-2.508 2.508v2.01zm10.487-1.016.964 1.016a1 1 0 0 1 0 1.377l-.964 1.016v2.011a2.51 2.51 0 0 1-2.508 2.508 1 1 0 0 1 0-2c.28 0 .508-.227.508-.508v-2.41a1 1 0 0 1 .274-.688l.586-.617-.586-.618a1 1 0 0 1-.274-.688v-2.41a.51.51 0 0 0-.508-.508 1 1 0 1 1 0-2 2.51 2.51 0 0 1 2.508 2.508v2.01Z", className: "fillStrong" })
|
|
15
|
+
] })
|
|
16
|
+
] }) })
|
|
17
|
+
);
|
|
18
|
+
exports.MongoDbProductIcon = MongoDbProductIcon;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const MongoDbProductIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsxs("g", { className: "Managed-Database-Document", children: [
|
|
8
|
+
/* @__PURE__ */ jsx("g", { className: ".Square", children: /* @__PURE__ */ jsx("path", { fill: "#F1EEFC", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48z", className: "fillWeak" }) }),
|
|
9
|
+
/* @__PURE__ */ jsxs("g", { className: "icon", children: [
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "#A060F6", d: "M16.852 24.977a1 1 0 0 0-1.72 1.02L16 25.5c-.868.496-.867.497-.867.498l.002.003.002.005.007.01.015.025a3 3 0 0 0 .176.242c.114.14.277.316.507.517.459.401 1.173.892 2.257 1.366C20.264 29.113 23.911 30 30 30a1 1 0 1 0 0-2c-5.91 0-9.263-.863-11.099-1.666-.915-.4-1.451-.785-1.742-1.04a2.4 2.4 0 0 1-.307-.317m0 9.5a1 1 0 0 0-1.72 1.02L16 35c-.868.496-.867.497-.867.498l.001.002.002.004.006.01.012.02a2 2 0 0 0 .136.193c.086.11.207.25.373.41.334.32.844.718 1.605 1.127 1.52.816 4.033 1.67 8.142 2.043a1 1 0 1 0 .18-1.992c-3.915-.355-6.151-1.156-7.376-1.813-.61-.328-.97-.621-1.165-.808a2 2 0 0 1-.197-.217", className: "fillStrong", clipRule: "evenodd", fillRule: "evenodd" }),
|
|
11
|
+
/* @__PURE__ */ jsx("path", { fill: "#521094", d: "m30 12-.788.006C21.248 12.122 15 14.002 15 17v25.455l.006.163C15.274 45.906 21.886 48 30 48q.523 0 1.037-.011A12.99 12.99 0 0 0 42 54c7.18 0 13-5.82 13-13 0-6.147-4.266-11.298-10-12.652V17c0-3.096-6.664-5-15-5m13 16.038V19.65c-2.46 1.424-6.964 2.267-12.211 2.343h-.008a50 50 0 0 1-.777.006H30c-5.583 0-10.416-.854-13-2.349v22.763l.002.082c.137 1.669 5.929 3.503 12.995 3.504A13 13 0 0 1 29 41c0-7.18 5.82-13 13-13q.505 0 1 .038m0-11.053c-.026-.448-1.196-1.23-3.375-1.852C37.113 14.415 33.676 14 30 14s-7.112.415-9.625 1.133C18.173 15.763 17 16.555 17 17l.006.055c.086.435 1.16 1.146 3.114 1.737l.252.074h.003C22.889 19.586 26.325 20 30 20c2.505 0 4.898-.193 6.964-.543q.882-.15 1.677-.335.513-.12.984-.255l.046-.013q.488-.141.906-.29c1.532-.545 2.364-1.145 2.42-1.524zM31 41c0-6.075 4.925-11 11-11s11 4.925 11 11-4.925 11-11 11-11-4.925-11-11", className: "fill", clipRule: "evenodd", fillRule: "evenodd" }),
|
|
12
|
+
/* @__PURE__ */ jsx("path", { fill: "#A060F6", d: "M36.475 40.535a1 1 0 0 0 0 1.377l.964 1.016v2.011a2.51 2.51 0 0 0 2.508 2.508 1 1 0 0 0 0-2 .51.51 0 0 1-.508-.508v-2.41a1 1 0 0 0-.275-.688l-.586-.617.586-.618a1 1 0 0 0 .275-.688v-2.41c0-.28.227-.508.508-.508a1 1 0 0 0 0-2 2.51 2.51 0 0 0-2.508 2.508v2.01zm10.487-1.016.964 1.016a1 1 0 0 1 0 1.377l-.964 1.016v2.011a2.51 2.51 0 0 1-2.508 2.508 1 1 0 0 1 0-2c.28 0 .508-.227.508-.508v-2.41a1 1 0 0 1 .274-.688l.586-.617-.586-.618a1 1 0 0 1-.274-.688v-2.41a.51.51 0 0 0-.508-.508 1 1 0 1 1 0-2 2.51 2.51 0 0 1 2.508 2.508v2.01Z", className: "fillStrong" })
|
|
13
|
+
] })
|
|
14
|
+
] }) })
|
|
15
|
+
);
|
|
16
|
+
export {
|
|
17
|
+
MongoDbProductIcon
|
|
18
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const VpnProductIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsxs("g", { className: "sentiment=original, size=xlarge, disabled=false", children: [
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { className: ".Square", children: /* @__PURE__ */ jsxRuntime.jsxs("g", { className: "fillWeak", children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#521094", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48V16Z" }),
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#521094", fillRule: "evenodd", d: "M48 2H16C8.268 2 2 8.268 2 16v32c0 7.732 6.268 14 14 14h32c7.732 0 14-6.268 14-14V16c0-7.732-6.268-14-14-14ZM16 0C7.163 0 0 7.163 0 16v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V16c0-8.837-7.163-16-16-16H16Z", clipRule: "evenodd" })
|
|
13
|
+
] }) }),
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { className: "Icon", children: [
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#BF95F9", d: "M39.327 28.779a4.018 4.018 0 0 0-1.582-1.38l10.884-6.614 1.039 1.709-10.341 6.285Zm.639 8.744A4.04 4.04 0 0 0 40 37v-1.734l9.808 5.321-.953 1.758-8.889-4.822Zm-8.967-17.459v-7.93h2v7.93a7.54 7.54 0 0 0-1-.064 7.53 7.53 0 0 0-1 .064Zm0 20.936h2v10.88h-2V41Z", className: "fillStrong" }),
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { className: "fill", children: [
|
|
17
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M28 9a4 4 0 0 1 4-4l.2.005a4 4 0 0 1 3.655 5.066l12.974 7.49A3.993 3.993 0 0 1 52 16l.2.005a4 4 0 0 1 .719 7.889v15.212A4.002 4.002 0 0 1 52 47l-.2-.005a3.982 3.982 0 0 1-2.351-.914l-13.594 7.848A4.003 4.003 0 0 1 32 59l-.2-.005A4 4 0 0 1 32 51l.2.005a3.988 3.988 0 0 1 2.654 1.192l13.417-7.746a4.002 4.002 0 0 1 2.647-5.303V23.852a4.002 4.002 0 0 1-2.876-4.435l-13.188-7.615A3.988 3.988 0 0 1 32 13l-.2-.005A4 4 0 0 1 28 9Zm4 44a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm20-12a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm0-23a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM32 7a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z", clipRule: "evenodd" }),
|
|
18
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#fff", d: "M32 32a1 1 0 0 1 .993.883L33 33v2a1 1 0 0 1-1.993.117L31 35v-2a1 1 0 0 1 1-1Z" }),
|
|
19
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M12 26a6 6 0 1 0 5.917 7H24v4a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4v-6a4.002 4.002 0 0 0-3-3.874V25.48l-.003-.248C36.924 21.961 35.382 20 32 20c-3.467 0-5 2.06-5 5.48v1.646c-1.725.444-3 2.01-3 3.874h-6.083A6.002 6.002 0 0 0 12 26Zm-4 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm27-5v-1.52c0-2.422-.788-3.48-3-3.48-2.141 0-2.948.99-2.997 3.25l-.003.23V27h6Zm1 2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h8Z", clipRule: "evenodd" })
|
|
20
|
+
] })
|
|
21
|
+
] })
|
|
22
|
+
] }) })
|
|
23
|
+
);
|
|
24
|
+
exports.VpnProductIcon = VpnProductIcon;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const VpnProductIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsxs("g", { className: "sentiment=original, size=xlarge, disabled=false", children: [
|
|
8
|
+
/* @__PURE__ */ jsx("g", { className: ".Square", children: /* @__PURE__ */ jsxs("g", { className: "fillWeak", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "#521094", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48V16Z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "#521094", fillRule: "evenodd", d: "M48 2H16C8.268 2 2 8.268 2 16v32c0 7.732 6.268 14 14 14h32c7.732 0 14-6.268 14-14V16c0-7.732-6.268-14-14-14ZM16 0C7.163 0 0 7.163 0 16v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V16c0-8.837-7.163-16-16-16H16Z", clipRule: "evenodd" })
|
|
11
|
+
] }) }),
|
|
12
|
+
/* @__PURE__ */ jsxs("g", { className: "Icon", children: [
|
|
13
|
+
/* @__PURE__ */ jsx("path", { fill: "#BF95F9", d: "M39.327 28.779a4.018 4.018 0 0 0-1.582-1.38l10.884-6.614 1.039 1.709-10.341 6.285Zm.639 8.744A4.04 4.04 0 0 0 40 37v-1.734l9.808 5.321-.953 1.758-8.889-4.822Zm-8.967-17.459v-7.93h2v7.93a7.54 7.54 0 0 0-1-.064 7.53 7.53 0 0 0-1 .064Zm0 20.936h2v10.88h-2V41Z", className: "fillStrong" }),
|
|
14
|
+
/* @__PURE__ */ jsxs("g", { className: "fill", children: [
|
|
15
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M28 9a4 4 0 0 1 4-4l.2.005a4 4 0 0 1 3.655 5.066l12.974 7.49A3.993 3.993 0 0 1 52 16l.2.005a4 4 0 0 1 .719 7.889v15.212A4.002 4.002 0 0 1 52 47l-.2-.005a3.982 3.982 0 0 1-2.351-.914l-13.594 7.848A4.003 4.003 0 0 1 32 59l-.2-.005A4 4 0 0 1 32 51l.2.005a3.988 3.988 0 0 1 2.654 1.192l13.417-7.746a4.002 4.002 0 0 1 2.647-5.303V23.852a4.002 4.002 0 0 1-2.876-4.435l-13.188-7.615A3.988 3.988 0 0 1 32 13l-.2-.005A4 4 0 0 1 28 9Zm4 44a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm20-12a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm0-23a2 2 0 1 1 0 4 2 2 0 0 1 0-4ZM32 7a2 2 0 1 1 0 4 2 2 0 0 1 0-4Z", clipRule: "evenodd" }),
|
|
16
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", d: "M32 32a1 1 0 0 1 .993.883L33 33v2a1 1 0 0 1-1.993.117L31 35v-2a1 1 0 0 1 1-1Z" }),
|
|
17
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M12 26a6 6 0 1 0 5.917 7H24v4a4 4 0 0 0 4 4h8a4 4 0 0 0 4-4v-6a4.002 4.002 0 0 0-3-3.874V25.48l-.003-.248C36.924 21.961 35.382 20 32 20c-3.467 0-5 2.06-5 5.48v1.646c-1.725.444-3 2.01-3 3.874h-6.083A6.002 6.002 0 0 0 12 26Zm-4 6a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm27-5v-1.52c0-2.422-.788-3.48-3-3.48-2.141 0-2.948.99-2.997 3.25l-.003.23V27h6Zm1 2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2v-6a2 2 0 0 1 2-2h8Z", clipRule: "evenodd" })
|
|
18
|
+
] })
|
|
19
|
+
] })
|
|
20
|
+
] }) })
|
|
21
|
+
);
|
|
22
|
+
export {
|
|
23
|
+
VpnProductIcon
|
|
24
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const jsxRuntime = require("@emotion/react/jsx-runtime");
|
|
4
|
+
const Icon = require("../Icon.cjs");
|
|
5
|
+
const WafProductIcon = ({
|
|
6
|
+
...props
|
|
7
|
+
}) => (
|
|
8
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx(Icon.Icon, { ...props, children: /* @__PURE__ */ jsxRuntime.jsxs("g", { className: "sentiment=original, size=xlarge, disabled=false", children: [
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("g", { className: ".Square", children: /* @__PURE__ */ jsxRuntime.jsxs("g", { className: "fillWeak", children: [
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#521094", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48V16Z" }),
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#521094", fillRule: "evenodd", d: "M48 2H16C8.268 2 2 8.268 2 16v32c0 7.732 6.268 14 14 14h32c7.732 0 14-6.268 14-14V16c0-7.732-6.268-14-14-14ZM16 0C7.163 0 0 7.163 0 16v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V16c0-8.837-7.163-16-16-16H16Z", clipRule: "evenodd" })
|
|
13
|
+
] }) }),
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsxs("g", { className: "Icon", children: [
|
|
15
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#BF95F9", d: "M9 12a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v1.218l-2 .811V12a1 1 0 0 0-1-1H12a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3.369c.075.653.165 1.32.274 2H12a3 3 0 0 1-3-3V12Zm8.09 23H12a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-1.66a29.626 29.626 0 0 1-2-1.369V52a1 1 0 0 1-1 1H12a1 1 0 0 1-1-1V38a1 1 0 0 1 1-1h5.827a32.62 32.62 0 0 1-.738-2ZM35 50.342V52a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V38a3 3 0 0 0-3-3h-5.09a32.619 32.619 0 0 1-.737 2H52a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H38a1 1 0 0 1-1-1v-3.026c-.633.473-1.299.93-2 1.368ZM48.356 29H52a3 3 0 0 0 3-3V12a3 3 0 0 0-3-3H38a3 3 0 0 0-3 3v1.216l2 .811V12a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3.37c-.075.653-.165 1.32-.274 2ZM30.8 28.01l-1.95 6.98H27.2l-1.31-4.97-1.37 4.97-1.64.01L21 28.01h1.5l1.23 5.42 1.42-5.42h1.56l1.34 5.39 1.24-5.39h1.51Zm5.194 5.65h-2.78l-.46 1.33h-1.47l2.51-6.99h1.63l2.51 6.99h-1.48l-.46-1.33Zm-.38-1.12-1.01-2.92-1.01 2.92h2.02Zm7.568-4.53v1.13h-2.91v1.79h2.23v1.11h-2.23v2.95h-1.4v-6.98h4.31Z", className: "fillStrong" }),
|
|
16
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M16.245 35.627c-2.005-5.85-2.218-11.59-2.242-15.381a2.984 2.984 0 0 1 1.87-2.782l15.003-6.086a3 3 0 0 1 2.255 0l14.997 6.085a2.984 2.984 0 0 1 1.869 2.783 68.59 68.59 0 0 1-.196 5.038c-.669 8.432-3.596 20.425-16.458 27.16a2.902 2.902 0 0 1-2.68 0c-8.122-4.25-12.284-10.595-14.418-16.818ZM31.627 13.23a1 1 0 0 1 .752 0l14.997 6.086a.984.984 0 0 1 .62.916A77.93 77.93 0 0 1 47.935 23H16.066a77.875 77.875 0 0 1-.062-2.767.984.984 0 0 1 .621-.916l15.003-6.085ZM16.203 25.266a43.486 43.486 0 0 1-.02-.265h31.634c-.063.814-.146 1.66-.258 2.528-.427 3.306-1.267 6.944-2.914 10.472h-25.29a30.231 30.231 0 0 1-.918-2.187c-1.369-3.655-1.97-7.333-2.234-10.548ZM20.387 40h23.226c-2.307 4.064-5.827 7.86-11.197 10.672a.902.902 0 0 1-.825 0C26.217 47.86 22.695 44.064 20.387 40Z", className: "fill", clipRule: "evenodd" })
|
|
17
|
+
] })
|
|
18
|
+
] }) })
|
|
19
|
+
);
|
|
20
|
+
exports.WafProductIcon = WafProductIcon;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { jsx, jsxs } from "@emotion/react/jsx-runtime";
|
|
2
|
+
import { Icon } from "../Icon.js";
|
|
3
|
+
const WafProductIcon = ({
|
|
4
|
+
...props
|
|
5
|
+
}) => (
|
|
6
|
+
// eslint-disable-next-line react/jsx-props-no-spreading
|
|
7
|
+
/* @__PURE__ */ jsx(Icon, { ...props, children: /* @__PURE__ */ jsxs("g", { className: "sentiment=original, size=xlarge, disabled=false", children: [
|
|
8
|
+
/* @__PURE__ */ jsx("g", { className: ".Square", children: /* @__PURE__ */ jsxs("g", { className: "fillWeak", children: [
|
|
9
|
+
/* @__PURE__ */ jsx("path", { fill: "#521094", d: "M0 16C0 7.163 7.163 0 16 0h32c8.837 0 16 7.163 16 16v32c0 8.837-7.163 16-16 16H16C7.163 64 0 56.837 0 48V16Z" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { fill: "#521094", fillRule: "evenodd", d: "M48 2H16C8.268 2 2 8.268 2 16v32c0 7.732 6.268 14 14 14h32c7.732 0 14-6.268 14-14V16c0-7.732-6.268-14-14-14ZM16 0C7.163 0 0 7.163 0 16v32c0 8.837 7.163 16 16 16h32c8.837 0 16-7.163 16-16V16c0-8.837-7.163-16-16-16H16Z", clipRule: "evenodd" })
|
|
11
|
+
] }) }),
|
|
12
|
+
/* @__PURE__ */ jsxs("g", { className: "Icon", children: [
|
|
13
|
+
/* @__PURE__ */ jsx("path", { fill: "#BF95F9", d: "M9 12a3 3 0 0 1 3-3h14a3 3 0 0 1 3 3v1.218l-2 .811V12a1 1 0 0 0-1-1H12a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h3.369c.075.653.165 1.32.274 2H12a3 3 0 0 1-3-3V12Zm8.09 23H12a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3v-1.66a29.626 29.626 0 0 1-2-1.369V52a1 1 0 0 1-1 1H12a1 1 0 0 1-1-1V38a1 1 0 0 1 1-1h5.827a32.62 32.62 0 0 1-.738-2ZM35 50.342V52a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V38a3 3 0 0 0-3-3h-5.09a32.619 32.619 0 0 1-.737 2H52a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H38a1 1 0 0 1-1-1v-3.026c-.633.473-1.299.93-2 1.368ZM48.356 29H52a3 3 0 0 0 3-3V12a3 3 0 0 0-3-3H38a3 3 0 0 0-3 3v1.216l2 .811V12a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-3.37c-.075.653-.165 1.32-.274 2ZM30.8 28.01l-1.95 6.98H27.2l-1.31-4.97-1.37 4.97-1.64.01L21 28.01h1.5l1.23 5.42 1.42-5.42h1.56l1.34 5.39 1.24-5.39h1.51Zm5.194 5.65h-2.78l-.46 1.33h-1.47l2.51-6.99h1.63l2.51 6.99h-1.48l-.46-1.33Zm-.38-1.12-1.01-2.92-1.01 2.92h2.02Zm7.568-4.53v1.13h-2.91v1.79h2.23v1.11h-2.23v2.95h-1.4v-6.98h4.31Z", className: "fillStrong" }),
|
|
14
|
+
/* @__PURE__ */ jsx("path", { fill: "#fff", fillRule: "evenodd", d: "M16.245 35.627c-2.005-5.85-2.218-11.59-2.242-15.381a2.984 2.984 0 0 1 1.87-2.782l15.003-6.086a3 3 0 0 1 2.255 0l14.997 6.085a2.984 2.984 0 0 1 1.869 2.783 68.59 68.59 0 0 1-.196 5.038c-.669 8.432-3.596 20.425-16.458 27.16a2.902 2.902 0 0 1-2.68 0c-8.122-4.25-12.284-10.595-14.418-16.818ZM31.627 13.23a1 1 0 0 1 .752 0l14.997 6.086a.984.984 0 0 1 .62.916A77.93 77.93 0 0 1 47.935 23H16.066a77.875 77.875 0 0 1-.062-2.767.984.984 0 0 1 .621-.916l15.003-6.085ZM16.203 25.266a43.486 43.486 0 0 1-.02-.265h31.634c-.063.814-.146 1.66-.258 2.528-.427 3.306-1.267 6.944-2.914 10.472h-25.29a30.231 30.231 0 0 1-.918-2.187c-1.369-3.655-1.97-7.333-2.234-10.548ZM20.387 40h23.226c-2.307 4.064-5.827 7.86-11.197 10.672a.902.902 0 0 1-.825 0C26.217 47.86 22.695 44.064 20.387 40Z", className: "fill", clipRule: "evenodd" })
|
|
15
|
+
] })
|
|
16
|
+
] }) })
|
|
17
|
+
);
|
|
18
|
+
export {
|
|
19
|
+
WafProductIcon
|
|
20
|
+
};
|
|
@@ -96,6 +96,7 @@ export { MacMiniM2ProductIcon } from './MacMiniM2ProductIcon';
|
|
|
96
96
|
export { MacMiniM4ProductIcon } from './MacMiniM4ProductIcon';
|
|
97
97
|
export { MacMiniProductIcon } from './MacMiniProductIcon';
|
|
98
98
|
export { ManagedSearchDatabaseProductIcon } from './ManagedSearchDatabaseProductIcon';
|
|
99
|
+
export { MongoDbProductIcon } from './MongoDbProductIcon';
|
|
99
100
|
export { MonitoringProductIcon } from './MonitoringProductIcon';
|
|
100
101
|
export { MultiUserProductIcon } from './MultiUserProductIcon';
|
|
101
102
|
export { NabuProductIcon } from './NabuProductIcon';
|
|
@@ -152,9 +153,11 @@ export { VerifyCardProductIcon } from './VerifyCardProductIcon';
|
|
|
152
153
|
export { VideoProductIcon } from './VideoProductIcon';
|
|
153
154
|
export { VolumeProductIcon } from './VolumeProductIcon';
|
|
154
155
|
export { VpcProductIcon } from './VpcProductIcon';
|
|
156
|
+
export { VpnProductIcon } from './VpnProductIcon';
|
|
155
157
|
export { VpsProServersProductIcon } from './VpsProServersProductIcon';
|
|
156
158
|
export { VpsServersProductIcon } from './VpsServersProductIcon';
|
|
157
159
|
export { VpsStartServersProductIcon } from './VpsStartServersProductIcon';
|
|
160
|
+
export { WafProductIcon } from './WafProductIcon';
|
|
158
161
|
export { WebPlatformProductIcon } from './WebPlatformProductIcon';
|
|
159
162
|
export { WebhostingProductIcon } from './WebhostingProductIcon';
|
|
160
163
|
export { ZoneProductIcon } from './ZoneProductIcon';
|
|
@@ -93,6 +93,7 @@ const MacMiniM2ProductIcon = require("./__generatedIcons__/MacMiniM2ProductIcon.
|
|
|
93
93
|
const MacMiniM4ProductIcon = require("./__generatedIcons__/MacMiniM4ProductIcon.cjs");
|
|
94
94
|
const MacMiniProductIcon = require("./__generatedIcons__/MacMiniProductIcon.cjs");
|
|
95
95
|
const ManagedSearchDatabaseProductIcon = require("./__generatedIcons__/ManagedSearchDatabaseProductIcon.cjs");
|
|
96
|
+
const MongoDbProductIcon = require("./__generatedIcons__/MongoDbProductIcon.cjs");
|
|
96
97
|
const MonitoringProductIcon = require("./__generatedIcons__/MonitoringProductIcon.cjs");
|
|
97
98
|
const MultiUserProductIcon = require("./__generatedIcons__/MultiUserProductIcon.cjs");
|
|
98
99
|
const NabuProductIcon = require("./__generatedIcons__/NabuProductIcon.cjs");
|
|
@@ -149,9 +150,11 @@ const VerifyCardProductIcon = require("./__generatedIcons__/VerifyCardProductIco
|
|
|
149
150
|
const VideoProductIcon = require("./__generatedIcons__/VideoProductIcon.cjs");
|
|
150
151
|
const VolumeProductIcon = require("./__generatedIcons__/VolumeProductIcon.cjs");
|
|
151
152
|
const VpcProductIcon = require("./__generatedIcons__/VpcProductIcon.cjs");
|
|
153
|
+
const VpnProductIcon = require("./__generatedIcons__/VpnProductIcon.cjs");
|
|
152
154
|
const VpsProServersProductIcon = require("./__generatedIcons__/VpsProServersProductIcon.cjs");
|
|
153
155
|
const VpsServersProductIcon = require("./__generatedIcons__/VpsServersProductIcon.cjs");
|
|
154
156
|
const VpsStartServersProductIcon = require("./__generatedIcons__/VpsStartServersProductIcon.cjs");
|
|
157
|
+
const WafProductIcon = require("./__generatedIcons__/WafProductIcon.cjs");
|
|
155
158
|
const WebPlatformProductIcon = require("./__generatedIcons__/WebPlatformProductIcon.cjs");
|
|
156
159
|
const WebhostingProductIcon = require("./__generatedIcons__/WebhostingProductIcon.cjs");
|
|
157
160
|
const ZoneProductIcon = require("./__generatedIcons__/ZoneProductIcon.cjs");
|
|
@@ -248,6 +251,7 @@ exports.MacMiniM2ProductIcon = MacMiniM2ProductIcon.MacMiniM2ProductIcon;
|
|
|
248
251
|
exports.MacMiniM4ProductIcon = MacMiniM4ProductIcon.MacMiniM4ProductIcon;
|
|
249
252
|
exports.MacMiniProductIcon = MacMiniProductIcon.MacMiniProductIcon;
|
|
250
253
|
exports.ManagedSearchDatabaseProductIcon = ManagedSearchDatabaseProductIcon.ManagedSearchDatabaseProductIcon;
|
|
254
|
+
exports.MongoDbProductIcon = MongoDbProductIcon.MongoDbProductIcon;
|
|
251
255
|
exports.MonitoringProductIcon = MonitoringProductIcon.MonitoringProductIcon;
|
|
252
256
|
exports.MultiUserProductIcon = MultiUserProductIcon.MultiUserProductIcon;
|
|
253
257
|
exports.NabuProductIcon = NabuProductIcon.NabuProductIcon;
|
|
@@ -304,9 +308,11 @@ exports.VerifyCardProductIcon = VerifyCardProductIcon.VerifyCardProductIcon;
|
|
|
304
308
|
exports.VideoProductIcon = VideoProductIcon.VideoProductIcon;
|
|
305
309
|
exports.VolumeProductIcon = VolumeProductIcon.VolumeProductIcon;
|
|
306
310
|
exports.VpcProductIcon = VpcProductIcon.VpcProductIcon;
|
|
311
|
+
exports.VpnProductIcon = VpnProductIcon.VpnProductIcon;
|
|
307
312
|
exports.VpsProServersProductIcon = VpsProServersProductIcon.VpsProServersProductIcon;
|
|
308
313
|
exports.VpsServersProductIcon = VpsServersProductIcon.VpsServersProductIcon;
|
|
309
314
|
exports.VpsStartServersProductIcon = VpsStartServersProductIcon.VpsStartServersProductIcon;
|
|
315
|
+
exports.WafProductIcon = WafProductIcon.WafProductIcon;
|
|
310
316
|
exports.WebPlatformProductIcon = WebPlatformProductIcon.WebPlatformProductIcon;
|
|
311
317
|
exports.WebhostingProductIcon = WebhostingProductIcon.WebhostingProductIcon;
|
|
312
318
|
exports.ZoneProductIcon = ZoneProductIcon.ZoneProductIcon;
|
|
@@ -91,6 +91,7 @@ import { MacMiniM2ProductIcon } from "./__generatedIcons__/MacMiniM2ProductIcon.
|
|
|
91
91
|
import { MacMiniM4ProductIcon } from "./__generatedIcons__/MacMiniM4ProductIcon.js";
|
|
92
92
|
import { MacMiniProductIcon } from "./__generatedIcons__/MacMiniProductIcon.js";
|
|
93
93
|
import { ManagedSearchDatabaseProductIcon } from "./__generatedIcons__/ManagedSearchDatabaseProductIcon.js";
|
|
94
|
+
import { MongoDbProductIcon } from "./__generatedIcons__/MongoDbProductIcon.js";
|
|
94
95
|
import { MonitoringProductIcon } from "./__generatedIcons__/MonitoringProductIcon.js";
|
|
95
96
|
import { MultiUserProductIcon } from "./__generatedIcons__/MultiUserProductIcon.js";
|
|
96
97
|
import { NabuProductIcon } from "./__generatedIcons__/NabuProductIcon.js";
|
|
@@ -147,9 +148,11 @@ import { VerifyCardProductIcon } from "./__generatedIcons__/VerifyCardProductIco
|
|
|
147
148
|
import { VideoProductIcon } from "./__generatedIcons__/VideoProductIcon.js";
|
|
148
149
|
import { VolumeProductIcon } from "./__generatedIcons__/VolumeProductIcon.js";
|
|
149
150
|
import { VpcProductIcon } from "./__generatedIcons__/VpcProductIcon.js";
|
|
151
|
+
import { VpnProductIcon } from "./__generatedIcons__/VpnProductIcon.js";
|
|
150
152
|
import { VpsProServersProductIcon } from "./__generatedIcons__/VpsProServersProductIcon.js";
|
|
151
153
|
import { VpsServersProductIcon } from "./__generatedIcons__/VpsServersProductIcon.js";
|
|
152
154
|
import { VpsStartServersProductIcon } from "./__generatedIcons__/VpsStartServersProductIcon.js";
|
|
155
|
+
import { WafProductIcon } from "./__generatedIcons__/WafProductIcon.js";
|
|
153
156
|
import { WebPlatformProductIcon } from "./__generatedIcons__/WebPlatformProductIcon.js";
|
|
154
157
|
import { WebhostingProductIcon } from "./__generatedIcons__/WebhostingProductIcon.js";
|
|
155
158
|
import { ZoneProductIcon } from "./__generatedIcons__/ZoneProductIcon.js";
|
|
@@ -247,6 +250,7 @@ export {
|
|
|
247
250
|
MacMiniM4ProductIcon,
|
|
248
251
|
MacMiniProductIcon,
|
|
249
252
|
ManagedSearchDatabaseProductIcon,
|
|
253
|
+
MongoDbProductIcon,
|
|
250
254
|
MonitoringProductIcon,
|
|
251
255
|
MultiUserProductIcon,
|
|
252
256
|
NabuProductIcon,
|
|
@@ -303,9 +307,11 @@ export {
|
|
|
303
307
|
VideoProductIcon,
|
|
304
308
|
VolumeProductIcon,
|
|
305
309
|
VpcProductIcon,
|
|
310
|
+
VpnProductIcon,
|
|
306
311
|
VpsProServersProductIcon,
|
|
307
312
|
VpsServersProductIcon,
|
|
308
313
|
VpsStartServersProductIcon,
|
|
314
|
+
WafProductIcon,
|
|
309
315
|
WebPlatformProductIcon,
|
|
310
316
|
WebhostingProductIcon,
|
|
311
317
|
ZoneProductIcon
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
type DeprecatedIconsType = {
|
|
2
|
+
name: string;
|
|
3
|
+
deprecated: boolean;
|
|
4
|
+
deprecatedReason: string;
|
|
5
|
+
}[];
|
|
6
|
+
/**
|
|
7
|
+
* If an icon becomes deprecated add it in this array. You will need to run `pnpm run icons:update`.
|
|
8
|
+
* It will automatically add JSDoc comments to the icon file and update the icon list in the story.
|
|
9
|
+
* In the next major consider all icons in this array to be removed
|
|
10
|
+
*/
|
|
11
|
+
export declare const DEPRECATED_ICONS: DeprecatedIconsType;
|
|
12
|
+
export {};
|
package/dist/index.cjs
CHANGED
|
@@ -12,6 +12,7 @@ const ArrowRightIcon = require("./components/Icon/__generatedIcons__/ArrowRightI
|
|
|
12
12
|
const ArrowUpIcon = require("./components/Icon/__generatedIcons__/ArrowUpIcon.cjs");
|
|
13
13
|
const AsteriskIcon = require("./components/Icon/__generatedIcons__/AsteriskIcon.cjs");
|
|
14
14
|
const AttachIcon = require("./components/Icon/__generatedIcons__/AttachIcon.cjs");
|
|
15
|
+
const BoldIcon = require("./components/Icon/__generatedIcons__/BoldIcon.cjs");
|
|
15
16
|
const BurgerIcon = require("./components/Icon/__generatedIcons__/BurgerIcon.cjs");
|
|
16
17
|
const CancelIcon = require("./components/Icon/__generatedIcons__/CancelIcon.cjs");
|
|
17
18
|
const CheckIcon = require("./components/Icon/__generatedIcons__/CheckIcon.cjs");
|
|
@@ -32,8 +33,11 @@ const ExpandMoreIcon = require("./components/Icon/__generatedIcons__/ExpandMoreI
|
|
|
32
33
|
const ExpandIcon = require("./components/Icon/__generatedIcons__/ExpandIcon.cjs");
|
|
33
34
|
const GithubIcon = require("./components/Icon/__generatedIcons__/GithubIcon.cjs");
|
|
34
35
|
const InstagramIcon = require("./components/Icon/__generatedIcons__/InstagramIcon.cjs");
|
|
36
|
+
const ItalicIcon = require("./components/Icon/__generatedIcons__/ItalicIcon.cjs");
|
|
35
37
|
const LeftRightArrowIcon = require("./components/Icon/__generatedIcons__/LeftRightArrowIcon.cjs");
|
|
36
38
|
const LinkedinIcon = require("./components/Icon/__generatedIcons__/LinkedinIcon.cjs");
|
|
39
|
+
const ListBulletIcon = require("./components/Icon/__generatedIcons__/ListBulletIcon.cjs");
|
|
40
|
+
const ListNumberIcon = require("./components/Icon/__generatedIcons__/ListNumberIcon.cjs");
|
|
37
41
|
const LogoutIcon = require("./components/Icon/__generatedIcons__/LogoutIcon.cjs");
|
|
38
42
|
const MinusIcon = require("./components/Icon/__generatedIcons__/MinusIcon.cjs");
|
|
39
43
|
const NorthShortIcon = require("./components/Icon/__generatedIcons__/NorthShortIcon.cjs");
|
|
@@ -57,6 +61,7 @@ const SouthShortIcon = require("./components/Icon/__generatedIcons__/SouthShortI
|
|
|
57
61
|
const SouthIcon = require("./components/Icon/__generatedIcons__/SouthIcon.cjs");
|
|
58
62
|
const SwitchOrgaIcon = require("./components/Icon/__generatedIcons__/SwitchOrgaIcon.cjs");
|
|
59
63
|
const TwitterIcon = require("./components/Icon/__generatedIcons__/TwitterIcon.cjs");
|
|
64
|
+
const UnderlineIcon = require("./components/Icon/__generatedIcons__/UnderlineIcon.cjs");
|
|
60
65
|
const UploadIcon = require("./components/Icon/__generatedIcons__/UploadIcon.cjs");
|
|
61
66
|
const ViewIcon = require("./components/Icon/__generatedIcons__/ViewIcon.cjs");
|
|
62
67
|
const WestShortIcon = require("./components/Icon/__generatedIcons__/WestShortIcon.cjs");
|
|
@@ -186,6 +191,7 @@ exports.ArrowRightIcon = ArrowRightIcon.ArrowRightIcon;
|
|
|
186
191
|
exports.ArrowUpIcon = ArrowUpIcon.ArrowUpIcon;
|
|
187
192
|
exports.AsteriskIcon = AsteriskIcon.AsteriskIcon;
|
|
188
193
|
exports.AttachIcon = AttachIcon.AttachIcon;
|
|
194
|
+
exports.BoldIcon = BoldIcon.BoldIcon;
|
|
189
195
|
exports.BurgerIcon = BurgerIcon.BurgerIcon;
|
|
190
196
|
exports.CancelIcon = CancelIcon.CancelIcon;
|
|
191
197
|
exports.CheckIcon = CheckIcon.CheckIcon;
|
|
@@ -206,8 +212,11 @@ exports.ExpandMoreIcon = ExpandMoreIcon.ExpandMoreIcon;
|
|
|
206
212
|
exports.ExpandIcon = ExpandIcon.ExpandIcon;
|
|
207
213
|
exports.GithubIcon = GithubIcon.GithubIcon;
|
|
208
214
|
exports.InstagramIcon = InstagramIcon.InstagramIcon;
|
|
215
|
+
exports.ItalicIcon = ItalicIcon.ItalicIcon;
|
|
209
216
|
exports.LeftRightArrowIcon = LeftRightArrowIcon.LeftRightArrowIcon;
|
|
210
217
|
exports.LinkedinIcon = LinkedinIcon.LinkedinIcon;
|
|
218
|
+
exports.ListBulletIcon = ListBulletIcon.ListBulletIcon;
|
|
219
|
+
exports.ListNumberIcon = ListNumberIcon.ListNumberIcon;
|
|
211
220
|
exports.LogoutIcon = LogoutIcon.LogoutIcon;
|
|
212
221
|
exports.MinusIcon = MinusIcon.MinusIcon;
|
|
213
222
|
exports.NorthShortIcon = NorthShortIcon.NorthShortIcon;
|
|
@@ -231,6 +240,7 @@ exports.SouthShortIcon = SouthShortIcon.SouthShortIcon;
|
|
|
231
240
|
exports.SouthIcon = SouthIcon.SouthIcon;
|
|
232
241
|
exports.SwitchOrgaIcon = SwitchOrgaIcon.SwitchOrgaIcon;
|
|
233
242
|
exports.TwitterIcon = TwitterIcon.TwitterIcon;
|
|
243
|
+
exports.UnderlineIcon = UnderlineIcon.UnderlineIcon;
|
|
234
244
|
exports.UploadIcon = UploadIcon.UploadIcon;
|
|
235
245
|
exports.ViewIcon = ViewIcon.ViewIcon;
|
|
236
246
|
exports.WestShortIcon = WestShortIcon.WestShortIcon;
|
package/dist/index.js
CHANGED
|
@@ -10,6 +10,7 @@ import { ArrowRightIcon } from "./components/Icon/__generatedIcons__/ArrowRightI
|
|
|
10
10
|
import { ArrowUpIcon } from "./components/Icon/__generatedIcons__/ArrowUpIcon.js";
|
|
11
11
|
import { AsteriskIcon } from "./components/Icon/__generatedIcons__/AsteriskIcon.js";
|
|
12
12
|
import { AttachIcon } from "./components/Icon/__generatedIcons__/AttachIcon.js";
|
|
13
|
+
import { BoldIcon } from "./components/Icon/__generatedIcons__/BoldIcon.js";
|
|
13
14
|
import { BurgerIcon } from "./components/Icon/__generatedIcons__/BurgerIcon.js";
|
|
14
15
|
import { CancelIcon } from "./components/Icon/__generatedIcons__/CancelIcon.js";
|
|
15
16
|
import { CheckIcon } from "./components/Icon/__generatedIcons__/CheckIcon.js";
|
|
@@ -30,8 +31,11 @@ import { ExpandMoreIcon } from "./components/Icon/__generatedIcons__/ExpandMoreI
|
|
|
30
31
|
import { ExpandIcon } from "./components/Icon/__generatedIcons__/ExpandIcon.js";
|
|
31
32
|
import { GithubIcon } from "./components/Icon/__generatedIcons__/GithubIcon.js";
|
|
32
33
|
import { InstagramIcon } from "./components/Icon/__generatedIcons__/InstagramIcon.js";
|
|
34
|
+
import { ItalicIcon } from "./components/Icon/__generatedIcons__/ItalicIcon.js";
|
|
33
35
|
import { LeftRightArrowIcon } from "./components/Icon/__generatedIcons__/LeftRightArrowIcon.js";
|
|
34
36
|
import { LinkedinIcon } from "./components/Icon/__generatedIcons__/LinkedinIcon.js";
|
|
37
|
+
import { ListBulletIcon } from "./components/Icon/__generatedIcons__/ListBulletIcon.js";
|
|
38
|
+
import { ListNumberIcon } from "./components/Icon/__generatedIcons__/ListNumberIcon.js";
|
|
35
39
|
import { LogoutIcon } from "./components/Icon/__generatedIcons__/LogoutIcon.js";
|
|
36
40
|
import { MinusIcon } from "./components/Icon/__generatedIcons__/MinusIcon.js";
|
|
37
41
|
import { NorthShortIcon } from "./components/Icon/__generatedIcons__/NorthShortIcon.js";
|
|
@@ -55,6 +59,7 @@ import { SouthShortIcon } from "./components/Icon/__generatedIcons__/SouthShortI
|
|
|
55
59
|
import { SouthIcon } from "./components/Icon/__generatedIcons__/SouthIcon.js";
|
|
56
60
|
import { SwitchOrgaIcon } from "./components/Icon/__generatedIcons__/SwitchOrgaIcon.js";
|
|
57
61
|
import { TwitterIcon } from "./components/Icon/__generatedIcons__/TwitterIcon.js";
|
|
62
|
+
import { UnderlineIcon } from "./components/Icon/__generatedIcons__/UnderlineIcon.js";
|
|
58
63
|
import { UploadIcon } from "./components/Icon/__generatedIcons__/UploadIcon.js";
|
|
59
64
|
import { ViewIcon } from "./components/Icon/__generatedIcons__/ViewIcon.js";
|
|
60
65
|
import { WestShortIcon } from "./components/Icon/__generatedIcons__/WestShortIcon.js";
|
|
@@ -193,6 +198,7 @@ export {
|
|
|
193
198
|
AttachIcon,
|
|
194
199
|
AutoFixIcon,
|
|
195
200
|
AutoFixOutlineIcon,
|
|
201
|
+
BoldIcon,
|
|
196
202
|
BookOpenOutlineIcon,
|
|
197
203
|
BookOpenOutlineOutlineIcon,
|
|
198
204
|
BullhornIcon,
|
|
@@ -261,12 +267,15 @@ export {
|
|
|
261
267
|
InformationIcon,
|
|
262
268
|
InformationOutlineIcon,
|
|
263
269
|
InstagramIcon,
|
|
270
|
+
ItalicIcon,
|
|
264
271
|
LeafIcon,
|
|
265
272
|
LeafOutlineIcon,
|
|
266
273
|
LeftRightArrowIcon,
|
|
267
274
|
LightBulbIcon,
|
|
268
275
|
LightBulbOutlineIcon,
|
|
269
276
|
LinkedinIcon,
|
|
277
|
+
ListBulletIcon,
|
|
278
|
+
ListNumberIcon,
|
|
270
279
|
LockIcon,
|
|
271
280
|
LockOutlineIcon,
|
|
272
281
|
LogoutIcon,
|
|
@@ -336,6 +345,7 @@ export {
|
|
|
336
345
|
ThumbsUpIcon,
|
|
337
346
|
ThumbsUpOutlineIcon,
|
|
338
347
|
TwitterIcon,
|
|
348
|
+
UnderlineIcon,
|
|
339
349
|
UnlockIcon,
|
|
340
350
|
UnlockOutlineIcon,
|
|
341
351
|
UnpinIcon,
|