@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 • 1.02 kB
JavaScript
const React = require("react");
function LetteredListIcon({
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: "M3 6h2.5M3 7.75V4.5a1.25 1.25 0 0 1 1.25-1.25A1.25 1.25 0 0 1 5.5 4.5v3.25m0 8.5h-1a1.5 1.5 0 0 0-1.5 1.5v1.5a1.5 1.5 0 0 0 1.5 1.5h1M3 9.75v4.5h1.375A1.125 1.125 0 0 0 5.5 13.125 1.125 1.125 0 0 0 4.375 12H3.5h.875A1.125 1.125 0 0 0 5.5 10.875 1.125 1.125 0 0 0 4.375 9.75ZM8.25 6h12m-12 6h12m-12 6h12"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LetteredListIcon);
module.exports = ForwardRef;