@nomercyicons/react
Version:
25 lines • 2.65 kB
JavaScript
const React = require("react");
function AmazonIcon({
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("g", {
fill: "currentColor",
fillRule: "evenodd"
}, /*#__PURE__*/React.createElement("path", {
d: "M25.403 25.96c-.743 1.482-2.015 2.436-3.393 2.758-.208 0-.527.105-.846.105-2.329 0-3.706-1.802-3.706-4.45 0-3.394 2.012-4.981 4.552-5.726 1.378-.317 2.97-.424 4.558-.424v1.273c0 2.437.105 4.343-1.165 6.464zm1.165-12.608c-1.377.105-2.969.21-4.558.418-2.435.322-4.87.746-6.88 1.7-3.92 1.59-6.57 4.98-6.57 9.959 0 6.257 4.024 9.433 9.113 9.433 1.693 0 3.07-.214 4.337-.528 2.018-.638 3.709-1.804 5.721-3.925 1.166 1.59 1.487 2.335 3.497 4.03.53.209 1.06.209 1.481-.105 1.273-1.062 3.5-2.97 4.663-4.03.53-.423.426-1.06.104-1.586-1.163-1.485-2.331-2.758-2.331-5.619v-9.538c0-4.026.322-7.736-2.645-10.489C30.065.85 26.25 0 23.283 0H22.01C16.612.313 10.894 2.646 9.618 9.323c-.212.85.426 1.166.85 1.27l5.932.743c.635-.107.954-.638 1.058-1.163.528-2.332 2.436-3.498 4.552-3.713h.427c1.272 0 2.65.531 3.389 1.593.847 1.27.742 2.967.742 4.452v.847zM47.994 35.946l.006.302c-.034 1.895-.85 5.26-3.192 7.367-.248.195-.536.33-.875.333h-.011a1.04 1.04 0 01-.706-.276 1.015 1.015 0 01-.31-.743c0-.17.037-.325.093-.466.231-.613.581-1.536.87-2.456.296-.92.51-1.864.504-2.372a.955.955 0 00-.025-.266 1.208 1.208 0 00-.327-.11 5.398 5.398 0 00-1.081-.084c-.607 0-1.307.053-1.967.127-.77.107-1.428.172-1.88.268l-.034.006-.045.002a1.119 1.119 0 01-.86-.232.978.978 0 01-.35-.75c.014-.489.279-.808.6-1.048a8.17 8.17 0 011.685-.946v-.022l.522-.17.017-.008.923-.308.003.062c.917-.2 1.829-.28 2.656-.28 1.151.004 2.108.14 2.766.393.22.096.423.184.635.415l.025.031.023.031c.208.317.313.698.335 1.198v.002zm-6.945 2.92c.753 0 1.45.556 1.467 1.378 0 .463-.265.909-.649 1.194a17.54 17.54 0 01-1.927 1.333l-.031.02c-5.007 3.145-11.456 5.073-17.16 5.2-.177.003-.355.009-.53.009-8.966-.006-15.632-4.913-21.714-10.196-.296-.234-.508-.596-.505-.988a1.108 1.108 0 01.344-.805c.218-.203.517-.313.808-.313.225 0 .46.062.685.18 6.48 3.6 12.903 7.254 20.777 7.249.178 0 .364 0 .548-.006 5.006-.107 10.417-1.333 15.567-3.422v-.006l.474-.189.364-.152c.249-.105.511-.224.768-.325.229-.107.474-.164.714-.161z"
})));
}
const ForwardRef = React.forwardRef(AmazonIcon);
module.exports = ForwardRef;