@harnessio/icons 2.1.0 → 2.1.1
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.es.js +17 -0
- package/dist/icons.umd.js +4 -4
- package/dist/src/HarnessIcons.d.ts +1 -1
- package/package.json +1 -1
package/dist/icons.es.js
CHANGED
|
@@ -21108,6 +21108,22 @@ function SvgSuccessTick(props) {
|
|
|
21108
21108
|
d: "M15.004 21.538l8.92-7.913a2 2 0 10-2.653-2.992l.663.748a1 1 0 111.327 1.496l-8.22 7.292-4.575-4.523a1 1 0 111.406-1.422l3.243 3.206 6.82-6.05-.664-.747-6.12 5.427-2.576-2.548a2 2 0 00-2.813 2.845zM16 27.995c-6.627 0-12-5.373-12-12 0-6.628 5.373-12 12-12 6.628 0 12 5.372 12 12 0 6.627-5.372 12-12 12zm-13-12c0 7.18 5.82 13 13 13s13-5.82 13-13-5.82-13-13-13-13 5.82-13 13z"
|
|
21109
21109
|
})));
|
|
21110
21110
|
}
|
|
21111
|
+
function SvgSuggestion(props) {
|
|
21112
|
+
return /* @__PURE__ */ React.createElement("svg", Object.assign({
|
|
21113
|
+
fill: "none",
|
|
21114
|
+
viewBox: "0 0 16 16",
|
|
21115
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21116
|
+
}, props), /* @__PURE__ */ React.createElement("g", {
|
|
21117
|
+
stroke: "currentColor"
|
|
21118
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
21119
|
+
d: "M4 3h6l1 1 1 1v8H4z",
|
|
21120
|
+
strokeLinejoin: "round"
|
|
21121
|
+
}), /* @__PURE__ */ React.createElement("g", {
|
|
21122
|
+
strokeLinecap: "round"
|
|
21123
|
+
}, /* @__PURE__ */ React.createElement("path", {
|
|
21124
|
+
d: "M7 7h2M7 10h2M8 8V6"
|
|
21125
|
+
}))));
|
|
21126
|
+
}
|
|
21111
21127
|
function SvgSupportAccount(props) {
|
|
21112
21128
|
return /* @__PURE__ */ React.createElement("svg", Object.assign({
|
|
21113
21129
|
viewBox: "0 0 60 60",
|
|
@@ -24301,6 +24317,7 @@ const HarnessIcons = {
|
|
|
24301
24317
|
"store-artifact-bundle": SvgStoreArtifactBundle,
|
|
24302
24318
|
subscriptions: SvgSubscriptions,
|
|
24303
24319
|
"success-tick": SvgSuccessTick,
|
|
24320
|
+
suggestion: SvgSuggestion,
|
|
24304
24321
|
"support-account": SvgSupportAccount,
|
|
24305
24322
|
"support-api": SvgSupportApi,
|
|
24306
24323
|
"support-code": SvgSupportCode,
|