@nomercyicons/react
Version:
24 lines • 886 B
JavaScript
import * as React from "react";
function OperaColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 46 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: "#D00003",
fillRule: "evenodd",
d: "M23.007 0C9.93 0 0 9.095 0 23.771 0 36.451 9.198 48 23 48c13.803 0 23-11.549 23-24.229C46 9.111 36.085 0 23.007 0zm0 4.24c7.403 0 8.91 9.999 8.91 19.078 0 8.41-.839 19.67-8.82 19.67-7.98 0-9.013-11.37-9.013-19.78 0-9.078 1.518-18.968 8.923-18.968z"
}));
}
const ForwardRef = React.forwardRef(OperaColorIcon);
export default ForwardRef;