UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

26 lines 880 B
const React = require("react"); const { forwardRef } = require("react"); const NoteTextIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M16 4h.5A4.5 4.5 0 0 1 21 8.5v8a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5v-8A4.5 4.5 0 0 1 7.5 4H8m2 0h4" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M6.75 9.25h6.5M6.75 12.25h4.5M6.75 15.25h1.5M9 5.286V3M15 5.286V3", opacity: 0.4 })); const ForwardRef = forwardRef(NoteTextIcon); module.exports = ForwardRef;