@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.67 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 Phone({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Phone",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M3.263 3A.263.263 0 0 0 3 3.263C3 8.641 7.36 13 12.737 13a.263.263 0 0 0 .263-.263v-1.834a.333.333 0 0 0-.209-.31l-1.758-.703a.333.333 0 0 0-.337.054c-.48.4-1.11.571-1.669.58-.552.008-1.236-.143-1.734-.641a.997.997 0 0 1-.038-.04L5.77 8.183a1.752 1.752 0 0 1-.47-.853 1.716 1.716 0 0 1 .062-.92c.158-.463.49-.863.694-1.107a.334.334 0 0 0 .054-.337L5.407 3.21a.334.334 0 0 0-.31-.21H3.263ZM1 3.263A2.263 2.263 0 0 1 3.263 1h1.834c.954 0 1.812.58 2.166 1.467l.704 1.757a2.334 2.334 0 0 1-.375 2.36 4.48 4.48 0 0 0-.264.342L8.71 8.469c.018.01.104.058.287.055a.74.74 0 0 0 .419-.117 2.333 2.333 0 0 1 2.36-.374l1.758.703A2.333 2.333 0 0 1 15 10.903v1.834A2.263 2.263 0 0 1 12.737 15C6.255 15 1 9.745 1 3.263Z",
clipRule: "evenodd",
shapeRendering: "geometricPrecision"
}));
}
Phone.displayName = 'Phone';
export default createBaseComponent(Phone);