@pushwoosh/kit-icons 2.1.15 → 2.1.16
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/icons/danger-triangle-icon/assets/index.d.ts +2 -0
- package/icons/danger-triangle-icon/assets/index.js +5 -1
- package/icons/danger-triangle-icon/assets/name_danger_triangle_size_medium_view_shaded.js +17 -0
- package/icons/danger-triangle-icon/assets/name_danger_triangle_size_small_view_shaded.js +23 -0
- package/icons/danger-triangle-icon/danger-triangle-icon.types.d.ts +1 -1
- package/icons/warning-round-icon/assets/index.d.ts +2 -0
- package/icons/warning-round-icon/assets/index.js +5 -1
- package/icons/warning-round-icon/assets/name_warning_round_size_medium_view_shaded.js +17 -0
- package/icons/warning-round-icon/assets/name_warning_round_size_small_view_shaded.js +19 -0
- package/icons/warning-round-icon/warning-round-icon.types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
declare const _default: {
|
|
3
3
|
'medium-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
4
4
|
'medium-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
5
|
+
'medium-shaded': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
5
6
|
'small-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
6
7
|
'small-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
8
|
+
'small-shaded': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
7
9
|
};
|
|
8
10
|
export default _default;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import medium_filled from "./name_danger_triangle_size_medium_view_filled.js";
|
|
2
2
|
import medium_lined from "./name_danger_triangle_size_medium_view_lined.js";
|
|
3
|
+
import medium_shaded from "./name_danger_triangle_size_medium_view_shaded.js";
|
|
3
4
|
import small_filled from "./name_danger_triangle_size_small_view_filled.js";
|
|
4
5
|
import small_lined from "./name_danger_triangle_size_small_view_lined.js";
|
|
6
|
+
import small_shaded from "./name_danger_triangle_size_small_view_shaded.js";
|
|
5
7
|
export default {
|
|
6
8
|
'medium-filled': medium_filled,
|
|
7
9
|
'medium-lined': medium_lined,
|
|
10
|
+
'medium-shaded': medium_shaded,
|
|
8
11
|
'small-filled': small_filled,
|
|
9
|
-
'small-lined': small_lined
|
|
12
|
+
'small-lined': small_lined,
|
|
13
|
+
'small-shaded': small_shaded
|
|
10
14
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const NameDangerTriangleSizeMediumViewShadedSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 24,
|
|
5
|
+
height: 24,
|
|
6
|
+
fill: "none"
|
|
7
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
d: "M7.145 9.443c1.593-2.77 2.389-4.154 3.43-4.618a3.5 3.5 0 0 1 2.85 0c1.041.464 1.837 1.849 3.43 4.618l1.82 3.166c1.584 2.754 2.376 4.131 2.255 5.261a3.5 3.5 0 0 1-1.424 2.463c-.92.667-2.508.667-5.686.667h-3.64c-3.178 0-4.766 0-5.686-.667A3.5 3.5 0 0 1 3.07 17.87c-.12-1.13.672-2.507 2.256-5.261z",
|
|
10
|
+
opacity: 0.1
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
fillRule: "evenodd",
|
|
14
|
+
d: "M11.27 8a.5.5 0 0 0-.5.52l.193 5.018a1 1 0 0 0 1 .962h.075a1 1 0 0 0 .999-.962l.193-5.019a.5.5 0 0 0-.5-.519zm.23 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
}));
|
|
17
|
+
export default NameDangerTriangleSizeMediumViewShadedSvg;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const NameDangerTriangleSizeSmallViewShadedSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 16,
|
|
5
|
+
height: 16,
|
|
6
|
+
fill: "none"
|
|
7
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
clipPath: "url(#prefix__a)"
|
|
10
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
11
|
+
d: "M4.55 5.382c1.134-1.936 1.701-2.904 2.44-3.23a2.5 2.5 0 0 1 2.02 0c.739.326 1.306 1.294 2.44 3.23l1.52 2.59c1.157 1.975 1.736 2.962 1.654 3.773a2.5 2.5 0 0 1-1.014 1.77c-.658.48-1.803.48-4.091.48H6.48c-2.288 0-3.433 0-4.091-.48a2.5 2.5 0 0 1-1.014-1.77c-.082-.811.497-1.798 1.655-3.773z",
|
|
12
|
+
opacity: 0.1
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fillRule: "evenodd",
|
|
15
|
+
d: "M7.527 5.245a.5.5 0 0 0-.499.527L7.2 8.995a.793.793 0 0 0 1.583.003l.186-3.224a.5.5 0 0 0-.499-.529zm.223 5.5a.5.5 0 0 0-.5.5v.5a.5.5 0 0 0 .5.5h.5a.5.5 0 0 0 .5-.5v-.5a.5.5 0 0 0-.5-.5z",
|
|
16
|
+
clipRule: "evenodd"
|
|
17
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
18
|
+
id: "prefix__a"
|
|
19
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
fill: "#fff",
|
|
21
|
+
d: "M0 0h16v16H0z"
|
|
22
|
+
}))));
|
|
23
|
+
export default NameDangerTriangleSizeSmallViewShadedSvg;
|
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
declare const _default: {
|
|
3
3
|
'medium-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
4
4
|
'medium-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
5
|
+
'medium-shaded': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
5
6
|
'small-filled': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
6
7
|
'small-lined': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
8
|
+
'small-shaded': import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement>>;
|
|
7
9
|
};
|
|
8
10
|
export default _default;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import medium_filled from "./name_warning_round_size_medium_view_filled.js";
|
|
2
2
|
import medium_lined from "./name_warning_round_size_medium_view_lined.js";
|
|
3
|
+
import medium_shaded from "./name_warning_round_size_medium_view_shaded.js";
|
|
3
4
|
import small_filled from "./name_warning_round_size_small_view_filled.js";
|
|
4
5
|
import small_lined from "./name_warning_round_size_small_view_lined.js";
|
|
6
|
+
import small_shaded from "./name_warning_round_size_small_view_shaded.js";
|
|
5
7
|
export default {
|
|
6
8
|
'medium-filled': medium_filled,
|
|
7
9
|
'medium-lined': medium_lined,
|
|
10
|
+
'medium-shaded': medium_shaded,
|
|
8
11
|
'small-filled': small_filled,
|
|
9
|
-
'small-lined': small_lined
|
|
12
|
+
'small-lined': small_lined,
|
|
13
|
+
'small-shaded': small_shaded
|
|
10
14
|
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const NameWarningRoundSizeMediumViewShadedSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 24,
|
|
5
|
+
height: 24,
|
|
6
|
+
fill: "none"
|
|
7
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
8
|
+
fill: "currentColor",
|
|
9
|
+
d: "M12 3c-4.975 0-9 4.026-9 9s4.026 9 9 9 9-4.026 9-9-4.026-9-9-9",
|
|
10
|
+
opacity: 0.1
|
|
11
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
12
|
+
fill: "currentColor",
|
|
13
|
+
fillRule: "evenodd",
|
|
14
|
+
d: "M11.27 7a.5.5 0 0 0-.5.52l.193 5.018a1 1 0 0 0 1 .962h.075a1 1 0 0 0 .999-.962l.193-5.019a.5.5 0 0 0-.5-.519zm.23 8a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z",
|
|
15
|
+
clipRule: "evenodd"
|
|
16
|
+
}));
|
|
17
|
+
export default NameWarningRoundSizeMediumViewShadedSvg;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
const NameWarningRoundSizeSmallViewShadedSvg = props => /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
width: 16,
|
|
5
|
+
height: 16,
|
|
6
|
+
fill: "none"
|
|
7
|
+
}, props), /*#__PURE__*/React.createElement("circle", {
|
|
8
|
+
cx: 8,
|
|
9
|
+
cy: 8,
|
|
10
|
+
r: 7,
|
|
11
|
+
fill: "currentColor",
|
|
12
|
+
opacity: 0.1
|
|
13
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
14
|
+
fill: "currentColor",
|
|
15
|
+
fillRule: "evenodd",
|
|
16
|
+
d: "M7.527 4.24a.5.5 0 0 0-.499.527L7.2 7.989a.793.793 0 0 0 1.583.004l.186-3.224a.5.5 0 0 0-.499-.529zM7.75 10a.5.5 0 0 0-.5.5v.5a.5.5 0 0 0 .5.5h.5a.5.5 0 0 0 .5-.5v-.5a.5.5 0 0 0-.5-.5z",
|
|
17
|
+
clipRule: "evenodd"
|
|
18
|
+
}));
|
|
19
|
+
export default NameWarningRoundSizeSmallViewShadedSvg;
|