@semcore/icon
Version:
Semrush Icon Component
24 lines • 1.45 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 TwitterClick({
width = '20',
height = '20',
viewBox = '0 0 20 20',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "TwitterClick",
"data-group": "twitter",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M2.849 2.001l.001-.001.257.04 13.459 4.094c.242.075.415.291.431.545.016.253-.126.489-.357.594l-4.382 1.985 4.564 4.564c.114.113.178.267.178.427 0 .161-.064.314-.178.427l-2.146 2.145c-.113.115-.267.179-.427.179-.16 0-.314-.064-.427-.179l-4.564-4.563-1.984 4.381c-.105.233-.342.376-.597.36-.254-.018-.473-.19-.546-.435l-4.092-13.456c-.081-.258-.034-.539.126-.757.16-.219.414-.348.684-.35zm12.748 4.836l-12.596-3.836 3.848 12.598 2.192-4.852 5.245 5.253 1.714-1.719-5.243-5.25 4.84-2.194z",
shapeRendering: "geometricPrecision"
}));
}
TwitterClick.displayName = 'TwitterClick';
export default createBaseComponent(TwitterClick);