@nomercyicons/react
Version:
27 lines • 1.93 kB
JavaScript
import * as React from "react";
function ViadeoIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 46 54",
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: "M21.038.011c4.436 7.491 6.845 14.205 7.39 15.804v-.065C27.338 4.206 21.038.01 21.038.01zm7.39 15.804c.099 1.479 1.723 27.82-12.154 33.098 0 0 1.276.241 2.715.176 0 0 17.658-11.194 9.56-32.912 0 0-.033-.132-.12-.362zM43.21 1.227c-2.256 4.819-6.43 5.706-6.43 5.706-4.176 1.062-5.636 2.683-5.636 2.683-4.175 4.217-.883 9.332-.883 9.332 9.014-2.06 12.306-9.507 12.306-9.507-.403 5.005-11.129 10.909-11.129 10.909 3.554 3.493 6.944 3.066 9.178 1.73 2.965-1.774 4.393-5.662 4.393-5.662 2.878-8.63-1.799-15.191-1.799-15.191z"
}), /*#__PURE__*/React.createElement("path", {
d: "M32.985 34.467c0 2.662-.632 5.137-1.897 7.437-1.264 2.3-2.965 4.074-5.123 5.323-2.147 1.248-4.513 1.873-7.074 1.873-2.573 0-4.927-.625-7.075-1.873-2.147-1.249-3.859-3.023-5.123-5.323-1.265-2.3-1.897-4.775-1.897-7.437 0-4.118 1.385-7.634 4.153-10.547 2.769-2.902 6.083-4.359 9.942-4.359 1.83 0 3.542.34 5.134.997.163-1.687.752-3.253 1.395-4.535-2.006-.733-4.175-1.095-6.519-1.095-5.57 0-10.18 2.06-13.832 6.188C1.755 24.851.087 29.276.087 34.358c0 5.136 1.755 9.627 5.254 13.46 3.51 3.844 8.023 5.761 13.55 5.761 5.504 0 10.017-1.917 13.516-5.76 3.51-3.845 5.254-8.336 5.254-13.461 0-2.75-.48-5.301-1.439-7.645a13.948 13.948 0 01-4.404 1.785c.785 1.818 1.167 3.812 1.167 5.97z"
})));
}
const ForwardRef = React.forwardRef(ViadeoIcon);
export default ForwardRef;