@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.29 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 Sent({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Sent",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M22.698 1.178c.154-.86-.794-1.49-1.528-1.014L1.456 12.944a1 1 0 0 0 .067 1.718l5.585 3.036.863 4.745a1 1 0 0 0 1.399.732l4.38-1.996 3.691 2.005a1 1 0 0 0 1.462-.703l3.795-21.303ZM11.551 19.983l-1.657-.9.944-2.185-1.545 1.637.416 2.287 1.842-.839Zm.904-1.785 4.722-10.933-8.5 9.009-4.722-2.566 16.37-10.613-3.148 17.67-4.722-2.567Z",
shapeRendering: "geometricPrecision"
}));
}
Sent.displayName = 'Sent';
export default createBaseComponent(Sent);