@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.23 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 = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Sent",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M14.334 1.917A1 1 0 0 0 12.828 1l-11 6c-1 .5-1 1.5-.5 2l3.026 1.87-.024.002 1.185 4.407A1 1 0 0 0 7 16l3.257-2.093 1.986 1.13a1 1 0 0 0 1.493-.814l.598-12.306Zm-6.097 10.84-1.777-.976.54 1.973 1.237-.996ZM10.828 5.5 6.46 9.594 3.828 8l8.5-4.5-.5 9-3.59-2 2.59-5Z",
shapeRendering: "geometricPrecision"
}));
}
Sent.displayName = 'Sent';
export default createBaseComponent(Sent);