@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.33 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 24 24",
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: "M19.25 1.5a.75.75 0 0 0-.75.75V4h-1.75a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h1.75v1.75a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V5.5h1.75a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75H20V2.25a.75.75 0 0 0-.75-.75ZM3.75 3.75A2.25 2.25 0 0 0 1.5 6v12a2.25 2.25 0 0 0 2.25 2.25h16.5A2.25 2.25 0 0 0 22.5 18V6.861a2.25 2.25 0 0 1-.75.139h-.25v.25a2.25 2.25 0 0 1-2.25 2.25A2.25 2.25 0 0 1 17 7.25V7h-.25a2.25 2.25 0 0 1-2.25-2.25 2.25 2.25 0 0 1 .246-1zm10.5 3.375a1.125 1.125 0 1 1 0 2.25 1.125 1.125 0 0 1 0-2.25zM9 10.682c.384 0 .768.146 1.06.44l5.159 5.16a.752.752 0 0 0 1.062-1.063l-.97-.969.878-.879a1.5 1.5 0 0 1 2.122 0L21 16.061V18a.75.75 0 0 1-.75.75H3.75A.75.75 0 0 1 3 18v-1.94l4.94-4.939c.292-.293.676-.44 1.06-.44Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(PhotoPlusIcon);
module.exports = ForwardRef;