@nomercyicons/react
Version:
24 lines • 1.21 kB
JavaScript
const React = require("react");
function VimeoColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 41",
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: "#00B2EA",
fillRule: "evenodd",
d: "M47.976 9.48c-.209 4.62-3.477 10.936-9.782 18.951C31.669 36.812 26.14 41 21.62 41c-2.794 0-5.161-2.548-7.095-7.66-1.295-4.69-2.582-9.381-3.875-14.058-1.44-5.115-2.98-7.671-4.628-7.671-.359 0-1.609.746-3.765 2.24L0 10.971A644.2 644.2 0 006.996 4.8c3.15-2.699 5.518-4.115 7.098-4.263 3.726-.358 6.023 2.165 6.89 7.56.922 5.824 1.572 9.445 1.93 10.864 1.078 4.827 2.258 7.235 3.55 7.235 1.002 0 2.51-1.558 4.519-4.679 2.01-3.126 3.079-5.5 3.226-7.138.288-2.698-.788-4.04-3.226-4.04-1.149 0-2.334.241-3.55.744C29.803 3.487 34.319-.207 40.99.009c4.942.137 7.276 3.3 6.985 9.47"
}));
}
const ForwardRef = React.forwardRef(VimeoColorIcon);
module.exports = ForwardRef;