@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 kB
JavaScript
const React = require("react");
function QuotationMarkIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 20 20",
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: "M5.5 6.5C3.583 6.5 2 8.084 2 10c0 .875.237 1.633.691 2.211.332.423.823.653 1.3.9.026.799-.02 1.018-.66 2.3-.337.674.419 1.368 1.062.975C7.798 14.29 9 11.833 9 10c0-1.916-1.583-3.5-3.5-3.5Zm9 0C12.583 6.5 11 8.084 11 10c0 .875.237 1.633.691 2.211.332.423.823.653 1.3.9.026.799-.02 1.018-.66 2.3-.337.674.419 1.368 1.062.975C16.798 14.29 18 11.833 18 10c0-1.916-1.583-3.5-3.5-3.5Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(QuotationMarkIcon);
module.exports = ForwardRef;