symbols-react 1.0.3 → 1.0.4
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/package.json +2 -2
- package/src/icons/IconMango.js +30 -0
- package/src/icons/IconMangoFill.js +27 -0
- package/src/index.js +2 -0
- package/types/IconMango.d.ts +1 -0
- package/types/IconMangoFill.d.ts +1 -0
- package/types/icons/IconMango.d.ts +1 -0
- package/types/icons/IconMangoFill.d.ts +1 -0
- package/types/index.d.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export const IconMango = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
4
|
+
ref: ref,
|
|
5
|
+
width: props.width || "28",
|
|
6
|
+
height: props.height || "28",
|
|
7
|
+
viewBox: "0 0 28 28",
|
|
8
|
+
fill: props.fill || "'none' || '#000000",
|
|
9
|
+
stroke: props.stroke || "black",
|
|
10
|
+
strokeWidth: props.strokeWidth || "2",
|
|
11
|
+
strokeLinecap: props.strokeLinecap || "round",
|
|
12
|
+
strokeLinejoin: props.strokeLinejoin || "round"
|
|
13
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_2_17)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M15.2418 5.19409C15.5198 4.10149 15.9654 3.15323 16.5825 2.36891C16.9537 1.89709 16.9625 1.19736 16.5144 0.797891L16.4504 0.740833C15.9924 0.332591 15.2754 0.429929 15.0214 0.988413C14.6132 1.88619 14.173 3.26014 14.1239 5.11805C14.1239 5.11805 14.5 5 15.2418 5.19409Z"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M5.98795 1.74779C5.95506 1.63476 6.0496 1.45083 6.1616 1.39843C9.31096 0.0287401 12.1356 0.8672 13.5659 3.57473C13.5156 3.95491 13.4837 4.36489 13.4652 4.79748L9.46406 2.84827C9.29863 2.76812 9.09826 2.83594 9.01709 3.00137C8.93591 3.16783 9.00476 3.36717 9.17019 3.44834L12.9227 5.27631C11.9784 5.44379 11.0834 5.77466 10.2707 6.25862C8.17657 5.89796 6.65686 4.30735 5.98795 1.74779Z"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M11.8818 26.0492C13.3408 27.4133 15.3638 27.3946 16.7967 26.0031C18.7555 24.0809 20.2449 20.9498 20.7831 17.6994C21.3236 14.436 20.872 11.2787 19.2462 9.19982C18.0497 7.67574 16.2547 6.80859 14.3201 6.80859C12.376 6.80859 10.5908 7.67526 9.3939 9.20013L11.8818 26.0492ZM11.8818 26.0492C11.8574 26.0189 11.8311 25.99 11.8033 25.9628C9.86082 24.0625 8.37811 20.9423 7.84452 17.6954C7.309 14.4369 7.76285 11.2794 9.39375 9.20033L11.8818 26.0492Z",
|
|
21
|
+
stroke: "black",
|
|
22
|
+
"stroke-width": "2",
|
|
23
|
+
"stroke-linejoin": "round"
|
|
24
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
25
|
+
id: "clip0_2_17"
|
|
26
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
27
|
+
width: "28",
|
|
28
|
+
height: "28"
|
|
29
|
+
})))));
|
|
30
|
+
IconMango.displayName = 'IconMango';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
2
|
+
import React from 'react';
|
|
3
|
+
export const IconMangoFill = /*#__PURE__*/React.forwardRef((props, ref) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
4
|
+
ref: ref,
|
|
5
|
+
width: props.width || "28",
|
|
6
|
+
height: props.height || "28",
|
|
7
|
+
viewBox: "0 0 28 28",
|
|
8
|
+
fill: props.fill || "'none' || '#000000",
|
|
9
|
+
stroke: props.stroke || "none",
|
|
10
|
+
strokeWidth: props.strokeWidth || "2",
|
|
11
|
+
strokeLinecap: props.strokeLinecap || "round",
|
|
12
|
+
strokeLinejoin: props.strokeLinejoin || "round"
|
|
13
|
+
}, props), /*#__PURE__*/React.createElement("g", {
|
|
14
|
+
"clip-path": "url(#clip0_2_7)"
|
|
15
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
16
|
+
d: "M15.2418 5.19409C15.5198 4.10149 15.9654 3.15323 16.5825 2.36891C16.9537 1.89709 16.9625 1.19736 16.5144 0.797891L16.4504 0.740833C15.9924 0.332591 15.2754 0.42993 15.0214 0.988413C14.6132 1.88619 14.173 3.26014 14.1239 5.11805L14.1856 5.14785C14.2308 5.14785 14.2749 5.14066 14.3202 5.14066C14.6305 5.14066 14.9377 5.15915 15.2418 5.19409Z"
|
|
17
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
18
|
+
d: "M5.98795 1.74779C5.95506 1.63476 6.0496 1.45083 6.1616 1.39843C9.31096 0.0287401 12.1356 0.8672 13.5659 3.57473C13.5156 3.95491 13.4837 4.36489 13.4652 4.79748L9.46406 2.84827C9.29863 2.76812 9.09826 2.83594 9.01709 3.00137C8.93591 3.16783 9.00476 3.36717 9.17019 3.44834L12.9227 5.27631C11.9784 5.44379 11.0834 5.77466 10.2707 6.25862C8.17657 5.89796 6.65686 4.30735 5.98795 1.74779Z"
|
|
19
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
20
|
+
d: "M17.4952 26.7187C15.6559 28.5066 12.9844 28.5066 11.1348 26.7187L11.104 26.6776C6.85005 22.5161 4.86692 13.3506 8.60711 8.58291C9.99427 6.81557 12.0699 5.80859 14.3201 5.80859C16.5602 5.80859 18.646 6.81557 20.0332 8.58291C23.7631 13.3506 21.78 22.5161 17.4952 26.7187Z"
|
|
21
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("clipPath", {
|
|
22
|
+
id: "clip0_2_7"
|
|
23
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
24
|
+
width: "28",
|
|
25
|
+
height: "28"
|
|
26
|
+
})))));
|
|
27
|
+
IconMangoFill.displayName = 'IconMangoFill';
|
package/src/index.js
CHANGED
|
@@ -3318,6 +3318,8 @@ export { IconManatsignCircle } from './icons/IconManatsignCircle';
|
|
|
3318
3318
|
export { IconManatsignSquareFill } from './icons/IconManatsignSquareFill';
|
|
3319
3319
|
export { IconManatsignSquare } from './icons/IconManatsignSquare';
|
|
3320
3320
|
export { IconManatsign } from './icons/IconManatsign';
|
|
3321
|
+
export { IconMangoFill } from './IconMangoFill';
|
|
3322
|
+
export { IconMango } from './IconMango';
|
|
3321
3323
|
export { IconMapCircleFill } from './icons/IconMapCircleFill';
|
|
3322
3324
|
export { IconMapCircle } from './icons/IconMapCircle';
|
|
3323
3325
|
export { IconMapFill } from './icons/IconMapFill';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const IconMango: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const IconMangoFill: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const IconMango: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const IconMangoFill: any;
|
package/types/index.d.ts
CHANGED
|
@@ -3318,6 +3318,8 @@ export { IconManatsignCircle } from "./icons/IconManatsignCircle";
|
|
|
3318
3318
|
export { IconManatsignSquareFill } from "./icons/IconManatsignSquareFill";
|
|
3319
3319
|
export { IconManatsignSquare } from "./icons/IconManatsignSquare";
|
|
3320
3320
|
export { IconManatsign } from "./icons/IconManatsign";
|
|
3321
|
+
export { IconMangoFill } from "./icons/IconMangoFill";
|
|
3322
|
+
export { IconMango } from "./icons/IconMango";
|
|
3321
3323
|
export { IconMapCircleFill } from "./icons/IconMapCircleFill";
|
|
3322
3324
|
export { IconMapCircle } from "./icons/IconMapCircle";
|
|
3323
3325
|
export { IconMapFill } from "./icons/IconMapFill";
|