@nomercyicons/react
Version:
24 lines • 2.36 kB
JavaScript
const React = require("react");
function SkypeColorIcon({
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: "#00AEF3",
fillRule: "evenodd",
d: "M46.62 29.095A12.875 12.875 0 0148 34.91C48 42.138 42.056 48 34.724 48c-2.272 0-4.405-.565-6.276-1.555-1.36.247-2.76.378-4.194.378-12.643 0-22.894-10.105-22.894-22.574 0-1.552.161-3.071.463-4.535A12.912 12.912 0 010 13.093C0 5.859 5.944 0 13.278 0c2.594 0 5.016.737 7.062 2.009a23.317 23.317 0 013.914-.331c12.646 0 22.894 10.107 22.894 22.571 0 1.664-.18 3.283-.528 4.846zm-10.623 5.943c1.061-1.483 1.603-3.177 1.603-5.036 0-1.555-.313-2.89-.931-3.978-.618-1.08-1.485-1.98-2.58-2.685-1.078-.693-2.393-1.282-3.92-1.76a53.15 53.15 0 00-5.06-1.308 82.215 82.215 0 01-3.166-.768 10.063 10.063 0 01-1.843-.704c-.582-.29-1.042-.629-1.363-1.024-.31-.367-.46-.798-.46-1.31 0-.84.465-1.55 1.42-2.165.99-.643 2.327-.965 3.964-.965 1.77 0 3.054.29 3.824.868.793.595 1.485 1.438 2.055 2.506.494.835.94 1.42 1.369 1.795.457.4 1.123.606 1.97.606.931 0 1.724-.325 2.35-.97.624-.638.94-1.372.94-2.179 0-.837-.242-1.703-.717-2.573-.468-.863-1.219-1.69-2.226-2.468-1-.77-2.27-1.394-3.78-1.856-1.5-.462-3.298-.695-5.342-.695-2.56 0-4.817.35-6.716 1.043-1.928.698-3.424 1.728-4.445 3.044-1.033 1.324-1.555 2.862-1.555 4.565 0 1.789.5 3.31 1.481 4.527.968 1.193 2.292 2.147 3.934 2.835 1.603.676 3.621 1.268 6 1.769 1.747.362 3.158.71 4.2 1.027.996.311 1.817.756 2.444 1.33.593.55.883 1.251.883 2.139 0 1.13-.553 2.053-1.696 2.818-1.166.785-2.718 1.185-4.611 1.185-1.375 0-2.495-.2-3.325-.584-.824-.387-1.47-.879-1.922-1.469-.466-.604-.906-1.377-1.312-2.295-.364-.838-.816-1.491-1.344-1.934-.55-.459-1.23-.69-2.015-.69-.96 0-1.764.292-2.39.877-.632.587-.954 1.305-.954 2.128 0 1.327.491 2.699 1.465 4.079.962 1.374 2.23 2.481 3.767 3.3 2.154 1.126 4.911 1.696 8.199 1.696 2.74 0 5.145-.42 7.151-1.243 2.032-.83 3.596-1.998 4.654-3.478z"
}));
}
const ForwardRef = React.forwardRef(SkypeColorIcon);
module.exports = ForwardRef;