@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.6 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",
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: "M4.25 2.5c-1.096 0-2 .904-2 2v3.25A.75.75 0 0 0 3 8.5a.75.75 0 0 0 .75-.75v-1h1v1a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V4.5c0-1.096-.904-2-2-2zm0 1.5c.285 0 .5.215.5.5v.75h-1V4.5c0-.285.215-.5.5-.5Zm4 1.25A.75.75 0 0 0 7.5 6a.75.75 0 0 0 .75.75h12A.75.75 0 0 0 21 6a.75.75 0 0 0-.75-.75ZM3 9a.75.75 0 0 0-.75.75v4.5A.75.75 0 0 0 3 15h1.375a1.886 1.886 0 0 0 1.875-1.875c0-.437-.215-.804-.47-1.125.255-.32.47-.688.47-1.125A1.886 1.886 0 0 0 4.375 9Zm.75 1.5h.625c.216 0 .375.159.375.375a.364.364 0 0 1-.375.375H3.75Zm4.5.75a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h12A.75.75 0 0 0 21 12a.75.75 0 0 0-.75-.75Zm-4.5 1.5h.625c.216 0 .375.159.375.375a.364.364 0 0 1-.375.375H3.75Zm.75 2.75a2.261 2.261 0 0 0-2.25 2.25v1.5A2.261 2.261 0 0 0 4.5 21.5h1a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75h-1a.739.739 0 0 1-.75-.75v-1.5c0-.423.327-.75.75-.75h1a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75Zm3.75 1.75a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h12A.75.75 0 0 0 21 18a.75.75 0 0 0-.75-.75Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LetteredListIcon);
module.exports = ForwardRef;