UNPKG

@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-

26 lines 946 B
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", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", "data-slot": "icon", fill: "none", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M16.25 15.5c-1.837-.794-2.5-1.5-2.5-3.5S15 8.75 17 8.75 20.25 10 20.25 12c0 3.5-1 4.75-5 7.25 1-1.75 1-2.25 1-3.75zm-10 0c-1.837-.794-2.5-1.5-2.5-3.5S5 8.75 7 8.75 10.25 10 10.25 12c0 3.5-1 4.75-5 7.25 1-1.75 1-2.25 1-3.75z" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(QuotationMarkIcon); module.exports = ForwardRef;