@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.41 kB
JavaScript
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); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function TwitterReply({
width = '20',
height = '20',
viewBox = '0 0 20 20',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TwitterReply",
"data-group": "twitter",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M8.956 18c-.527-.002-.954-.428-.956-.955v-3.045h-.5c-3.038 0-5.5-2.463-5.5-5.5 0-3.038 2.462-5.5 5.5-5.5h3.868c1.512.009 2.958.616 4.025 1.687 1.028 1.013 1.606 2.396 1.607 3.839-.012 2.946-1.943 4.84-3.4 6.009l-4.048 3.253c-.169.137-.379.211-.596.212zm-1.456-14c-2.485 0-4.5 2.015-4.5 4.5s2.015 4.5 4.5 4.5h.5c.552 0 1 .447 1 1v3.045l3.978-3.289c1.4-1.128 3.012-2.742 3.022-5.233-.002-1.177-.477-2.305-1.316-3.13-.878-.884-2.07-1.384-3.316-1.393h-3.868z",
shapeRendering: "geometricPrecision"
}));
}
TwitterReply.displayName = 'TwitterReply';
export default createBaseComponent(TwitterReply);