@nomercyicons/react
Version:
24 lines • 861 B
JavaScript
import * as React from "react";
function WindowsphoneColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#00B6F0",
fillRule: "evenodd",
d: "M0 6.796l19.616-2.663.009 18.863-19.607.11L0 6.797zm19.607 18.373l.015 18.88L.015 41.36V25.043l19.592.126zm2.378-21.385L47.994 0v22.756l-26.01.206V3.784zM48 25.347L47.994 48l-26.01-3.66-.036-19.036L48 25.347z"
}));
}
const ForwardRef = React.forwardRef(WindowsphoneColorIcon);
export default ForwardRef;