@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.51 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 20 20",
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: "M2.625 7.5A.625.625 0 0 0 2 8.125v3.75a.625.625 0 0 0 .625.625H4c.821 0 1.5-.679 1.5-1.5v-.125c0-.34-.171-.622-.365-.875.194-.253.365-.536.365-.875V9c0-.821-.679-1.5-1.5-1.5Zm.625 1.25H4c.145 0 .25.105.25.25v.125c0 .145-.105.25-.25.25h-.75Zm0 1.875H4c.145 0 .25.105.25.25V11c0 .145-.105.25-.25.25h-.75Zm.5-9.375C2.792 1.25 2 2.042 2 3v2.5a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75v-.375H4V5.5a.75.75 0 0 0 .75.75.75.75 0 0 0 .75-.75V3c0-.958-.792-1.75-1.75-1.75Zm0 1.5A.24.24 0 0 1 4 3v.625h-.5V3a.24.24 0 0 1 .25-.25Zm.125 11A1.886 1.886 0 0 0 2 15.625v1.25c0 1.027.848 1.875 1.875 1.875h.875A.75.75 0 0 0 5.5 18a.75.75 0 0 0-.75-.75h-.875a.364.364 0 0 1-.375-.375v-1.25c0-.216.159-.375.375-.375h.875a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75ZM7.75 3a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5zm0 6.25a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5zm0 6.25a.75.75 0 0 0 0 1.5h9.5a.75.75 0 0 0 0-1.5z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(LetteredListIcon);
module.exports = ForwardRef;