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 806 B
const React = require("react"); function PilcrowIcon({ 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: "M15.25 3.75h2m-5 0H10.5A3.75 3.75 0 0 0 6.75 7.5a3.75 3.75 0 0 0 3.75 3.75h1.75m0 9V3.75h3v16.5" })); } const ForwardRef = /*#__PURE__*/ React.forwardRef(PilcrowIcon); module.exports = ForwardRef;