@homecode/ui 4.27.3 → 4.27.5
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.
|
@@ -83,6 +83,7 @@ var ICONS = {
|
|
|
83
83
|
soundWave: () => import('./soundWave.svg.js'),
|
|
84
84
|
sparks: () => import('./sparks.svg.js'),
|
|
85
85
|
star: () => import('./star.svg.js'),
|
|
86
|
+
stop: () => import('./stop.svg.js'),
|
|
86
87
|
stopInCircle: () => import('./stopInCircle.svg.js'),
|
|
87
88
|
syncArrows: () => import('./syncArrows.svg.js'),
|
|
88
89
|
table: () => import('./table.svg.js'),
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
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); }
|
|
4
|
+
var SvgStop = function SvgStop(props) {
|
|
5
|
+
return /*#__PURE__*/React.createElement("svg", _extends({
|
|
6
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7
|
+
fill: "currentColor",
|
|
8
|
+
viewBox: "0 0 24 24"
|
|
9
|
+
}, props), /*#__PURE__*/React.createElement("path", {
|
|
10
|
+
d: "M5.254 5.312h13.449v13.449H5.254Z",
|
|
11
|
+
style: {
|
|
12
|
+
stroke: "currentColor",
|
|
13
|
+
strokeWidth: 5.50889,
|
|
14
|
+
strokeLinecap: "round",
|
|
15
|
+
strokeLinejoin: "round",
|
|
16
|
+
strokeMiterlimit: 0.6,
|
|
17
|
+
strokeDasharray: "none"
|
|
18
|
+
}
|
|
19
|
+
}));
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
export { SvgStop as default };
|