@scaleflex/icons
Version:
SVG icons as React components
28 lines • 1.42 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Pause = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Pause",
ref: ref,
width: size,
height: size,
viewBox: "0 0 28 46",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M0.111115 4.94511C0.111115 2.64392 1.97659 0.778442 4.27778 0.778442C6.57897 0.778442 8.44445 2.64392 8.44445 4.94511V41.0562C8.44445 43.3574 6.57897 45.2229 4.27778 45.2229C1.97659 45.2229 0.111115 43.3574 0.111115 41.0562V4.94511Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
d: "M19.5556 4.94511C19.5556 2.64392 21.421 0.778442 23.7222 0.778442C26.0234 0.778442 27.8889 2.64392 27.8889 4.94511V41.0562C27.8889 43.3574 26.0234 45.2229 23.7222 45.2229C21.421 45.2229 19.5556 43.3574 19.5556 41.0562V4.94511Z",
fill: color
}));
});
export default Pause;