@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.11 kB
JavaScript
const React = require("react");
function CameraLensIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M21.416 15.341a9.17 9.17 0 01-9.539.659M2.584 8.659a9.17 9.17 0 019.56-.648m3.23 6.113A9.17 9.17 0 0019.6 5.512M8.581 9.904A9.17 9.17 0 004.4 18.488m11.128-8.351a9.172 9.172 0 00-5.345-7.965M8.476 13.926a9.172 9.172 0 005.342 7.902m5.253-16.9c3.905 3.906 3.905 10.238 0 14.143-3.905 3.905-10.237 3.905-14.142 0-3.905-3.905-3.905-10.237 0-14.142 3.905-3.905 10.237-3.905 14.142 0zm-4.243 4.244a4 4 0 11-5.656 5.656 4 4 0 015.656-5.656z"
}));
}
const ForwardRef = React.forwardRef(CameraLensIcon);
module.exports = ForwardRef;