@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.81 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 Transcode = 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": "Transcode",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M45.0889 20.9916L9.85678 0.632911C8.48548 -0.21097 6.69223 -0.21097 5.32092 0.632911C3.84413 1.47679 3.00024 3.05907 3.00024 4.64135V45.3586C3.00024 47.0464 3.84413 48.5232 5.32092 49.3671C6.05932 49.789 6.79771 50 7.64159 50C8.48548 50 9.22387 49.789 9.96227 49.3671L45.1943 29.0084C46.5656 28.1646 47.515 26.6878 47.515 25C47.515 23.3122 46.4602 21.8354 45.0889 20.9916ZM12.072 12.5527L33.591 25L12.072 37.4473V12.5527ZM43.5066 25.5274C43.4011 26.0549 43.0846 26.4768 42.6627 26.7932L8.69645 47.1519C8.37999 47.3629 8.06353 47.4683 7.64159 47.4683C7.32514 47.4683 7.00868 47.3629 6.69223 47.2574C6.05932 46.9409 5.63737 46.2025 5.63737 45.4641V31.6456C5.63737 30.5907 6.58674 29.6413 7.64159 29.6413C8.69645 29.6413 9.64581 30.5907 9.64581 31.6456V41.8776L40.553 23.3122C40.9749 22.9958 41.5023 22.9958 42.0298 23.1013C42.5572 23.2068 42.9791 23.5232 43.2956 24.0506C43.6121 24.4726 43.6121 25 43.5066 25.5274Z",
fill: color
}));
});
export default Transcode;