@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.42 kB
JavaScript
import * as React from "react";
function PhoneIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M8.38 8.853a14.605 14.605 0 002.847 4.01 14.605 14.605 0 004.01 2.846c.124.06.187.09.265.113.28.082.625.023.862-.147.067-.048.124-.105.239-.22.35-.349.524-.524.7-.638a2 2 0 012.18 0c.176.114.35.29.7.639l.195.195c.532.531.797.797.942 1.082a2 2 0 010 1.806c-.145.285-.41.55-.942 1.082l-.157.158c-.53.53-.795.794-1.155.997-.4.224-1.02.385-1.478.384-.413-.001-.695-.081-1.26-.241a19.038 19.038 0 01-8.283-4.874A19.038 19.038 0 013.17 7.761c-.16-.564-.24-.846-.241-1.26a3.377 3.377 0 01.384-1.478c.202-.36.467-.624.997-1.154l.157-.158c.532-.531.798-.797 1.083-.941a2 2 0 011.805 0c.286.144.551.41 1.083.941l.195.195c.35.35.524.525.638.7a2 2 0 010 2.18c-.114.177-.289.351-.638.701a2.02 2.02 0 00-.22.238c-.17.238-.228.582-.147.862.023.08.053.142.113.266z"
}));
}
const ForwardRef = React.forwardRef(PhoneIcon);
export default ForwardRef;