@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
22 lines • 1.21 kB
JavaScript
const React = require("react");
function PhotoPlusIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
fill: "currentColor",
"aria-hidden": "true",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M12.5 1a.75.75 0 0 0-.75.75v1h-1a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h1v1a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-1h1A.75.75 0 0 0 15 3.5a.75.75 0 0 0-.75-.75h-1v-1A.75.75 0 0 0 12.5 1ZM4 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V6.809a2.25 2.25 0 0 1-1.5.691 2.25 2.25 0 0 1-2.104-1.896A2.25 2.25 0 0 1 8.5 3.5 2.25 2.25 0 0 1 9.191 2H5.086Zm1 2a1 1 0 1 1 0 2 1 1 0 0 1 0-2Zm5 3.207c.128 0 .256.049.354.147l2 2a.5.5 0 0 1 .146.353V12a.5.5 0 0 1-.5.5H4a.5.5 0 0 1-.5-.5V9.707a.5.5 0 0 1 .146-.353l1-1a.5.5 0 0 1 .708 0l1.292 1.292a.5.5 0 0 0 .708 0l2.292-2.292A.498.498 0 0 1 10 7.207Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PhotoPlusIcon);
module.exports = ForwardRef;