@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.23 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 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: "M7 8c-1.156 0-2.185.376-2.904 1.095C3.376 9.815 3 10.842 3 11.998c0 1.083.19 1.96.71 2.651.412.546 1.08.872 1.77 1.213.002 1.097-.02 1.508-.88 3.012-.386.677.388 1.42 1.048 1.007 2.024-1.264 3.359-2.24 4.215-3.453.857-1.213 1.137-2.61 1.137-4.43 0-1.156-.374-2.183-1.094-2.903C9.186 8.375 8.156 8 7 8Zm10 0c-1.156 0-2.185.376-2.904 1.095-.72.72-1.096 1.747-1.096 2.903 0 1.083.19 1.96.71 2.651.412.546 1.08.872 1.77 1.213.002 1.097-.02 1.508-.88 3.012-.386.677.388 1.42 1.048 1.007 2.024-1.264 3.359-2.24 4.215-3.453.857-1.213 1.137-2.61 1.137-4.43 0-1.156-.374-2.183-1.094-2.903C19.186 8.375 18.156 8 17 8Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(QuotationMarkIcon);
module.exports = ForwardRef;