@nomercyicons/react
Version:
24 lines • 1.05 kB
JavaScript
const React = require("react");
function DailymotionColorIcon({
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: "#0066DC",
fillRule: "evenodd",
d: "M0 48V0h48v48H0zm41.39-6.435V6.787l-7.388 1.53V19.26c-1.683-2.15-4.021-3.18-7.06-3.18-3.18 0-6.033 1.17-8.371 3.46-2.619 2.526-4.022 5.752-4.022 9.353 0 3.928 1.497 7.295 4.396 9.867 2.198 1.964 4.817 2.946 7.856 2.946 2.993 0 5.237-.795 7.435-2.946v2.805h7.155zM28.158 22.627c3.46 0 6.126 2.712 6.126 6.313 0 3.46-2.665 6.079-5.845 6.079-3.788 0-6.5-2.666-6.5-6.173 0-3.367 2.712-6.219 6.22-6.219z"
}));
}
const ForwardRef = React.forwardRef(DailymotionColorIcon);
module.exports = ForwardRef;