@scaleflex/icons
Version:
SVG icons as React components
27 lines • 1.83 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Comment2Left = function Comment2Left(_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,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Comment2Left",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 46",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M43.1264 0H6.87363C3.08101 0 0 3.0758 0 6.86199V29.0093C0 32.7877 3.07319 35.8557 6.85017 35.8713V45.9184L21.3169 35.8713H43.1264C46.919 35.8713 50 32.7955 50 29.0093V6.86199C50 3.0758 46.9112 0 43.1264 0ZM13.3836 11.1841C13.3836 10.8389 13.6635 10.5591 14.0086 10.5591H35.9914C36.3365 10.5591 36.6164 10.8389 36.6164 11.1841V12.8616C36.6164 13.2067 36.3365 13.4866 35.9914 13.4866H14.0086C13.6635 13.4866 13.3836 13.2067 13.3836 12.8616V11.1841ZM13.3836 17.4215C13.3836 17.0764 13.6635 16.7965 14.0086 16.7965H35.9914C36.3365 16.7965 36.6164 17.0764 36.6164 17.4215V19.099C36.6164 19.4442 36.3365 19.724 35.9914 19.724H14.0086C13.6635 19.724 13.3836 19.4442 13.3836 19.099V17.4215ZM14.0086 23.034C13.6635 23.034 13.3836 23.3138 13.3836 23.659V25.3365C13.3836 25.6817 13.6635 25.9615 14.0086 25.9615H35.9914C36.3365 25.9615 36.6164 25.6817 36.6164 25.3365V23.659C36.6164 23.3138 36.3365 23.034 35.9914 23.034H14.0086Z",
fill: color
}));
};
export default Comment2Left;