@nomercyicons/react
Version:
24 lines • 2.77 kB
JavaScript
import * as React from "react";
function AirbnbColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 44 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: "#FF7977",
fillRule: "nonzero",
d: "M43.998 37.069c-.015-1.38-.314-2.789-.857-4.195-.269-.699-.506-1.248-1.044-2.448l-.031-.07-.15-.333A537.145 537.145 0 0031.182 7.596l-.007-.013a78.345 78.345 0 00-1.227-2.362c-.654-1.189-1.32-2.118-2.126-2.878A8.462 8.462 0 0022.496.002L21.629 0a8.464 8.464 0 00-5.53 2.423c-.764.736-1.403 1.638-2.042 2.797a74.069 74.069 0 00-1.216 2.337l-.066.131-.257.507a540.848 540.848 0 00-7.093 14.56C3.738 26.367 2.546 28.97 1.4 31.568.692 33.182.29 34.387.116 35.668a10.889 10.889 0 001.467 7.218 10.647 10.647 0 004.785 4.215c1.533.674 3.222.98 4.886.88 2.102-.114 4.213-.852 6.168-2.086 1.79-1.119 3.399-2.568 5.286-4.63l-1.41-.002c1.73 1.898 3.23 3.275 4.877 4.37 1.934 1.295 4.008 2.108 6.101 2.31a10.57 10.57 0 006.978-1.735c1.79-1.2 3.203-2.97 3.997-5.002.516-1.314.772-2.732.747-4.143v.006zm-4.952 1.992c-.42 1.477-1.434 2.772-2.75 3.513a5.93 5.93 0 01-3.898.672c-1.593-.253-3.16-1.076-4.789-2.413-.957-.784-1.875-1.699-2.983-2.937l.043 1.232c1.825-2.351 3.14-4.344 4.157-6.425 1.14-2.34 1.782-4.525 1.85-6.695.045-1.63-.275-3.2-.97-4.548-.937-1.857-2.622-3.32-4.606-4.03a9.154 9.154 0 00-5.645-.18c-1.776.511-3.363 1.597-4.448 3.067-.945 1.269-1.512 2.846-1.642 4.491-.173 2.055.253 4.194 1.17 6.458 1.085 2.633 2.663 5.15 4.809 7.847l.018-1.22a24.789 24.789 0 01-2.61 2.64c-1.624 1.4-3.165 2.29-4.748 2.638-1.392.319-2.858.149-4.077-.48-1.453-.737-2.573-2.131-2.994-3.726-.316-1.153-.262-2.43.137-3.628.234-.702.471-1.267 1.029-2.511l.047-.105.235-.527a535.287 535.287 0 0110.526-22.007l.014-.027a84.426 84.426 0 011.322-2.555c.51-.924.96-1.525 1.502-1.944a3.545 3.545 0 012.269-.777c.86-.01 1.7.302 2.35.859.58.49 1.023 1.137 1.616 2.265.853 1.63 1.595 3.103 2.954 5.837l.243.489.027.054a524.632 524.632 0 018.732 18.498l.138.314.052.118c.521 1.182.735 1.719.92 2.385a6.254 6.254 0 01.001 3.356v.002zm-16.3-3.471c-.4-.48-.723-.927-1.349-1.837l-.082-.12-.049-.07c-.856-1.28-1.55-2.506-2.094-3.73-.517-1.182-.842-2.249-.972-3.28-.11-.956-.05-1.778.211-2.464a3.35 3.35 0 011.315-1.659c1.496-.983 3.63-.857 4.946.302.63.546 1.043 1.383 1.147 2.298.131 1.17-.088 2.444-.615 3.877-.809 2.163-2.064 4.238-3.95 6.716l.76.583.733-.616z"
}));
}
const ForwardRef = React.forwardRef(AirbnbColorIcon);
export default ForwardRef;