UNPKG

@astraicons/react

Version:

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

20 lines 989 B
const React = require("react"); const { forwardRef } = require("react"); const ParagraphIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M12 5.802a.75.75 0 0 0 0-1.5H4a.75.75 0 0 0 0 1.5zM12 10.508a.75.75 0 0 0 0-1.5H4a.75.75 0 0 0 0 1.5zM19.5 15.214a.75.75 0 0 0 0-1.5H4a.75.75 0 0 0 0 1.5zM19.5 19.92a.75.75 0 0 0 0-1.5H4a.75.75 0 0 0 0 1.5zM18.917 6.556a.806.806 0 0 0-.806-.806H15.75v2.662h2.361c.445 0 .806-.36.806-.806zm1.5 1.05a2.306 2.306 0 0 1-2.306 2.306H15.75V12a.75.75 0 0 1-1.5 0V5a.75.75 0 0 1 .75-.75h3.111a2.306 2.306 0 0 1 2.306 2.306z" })); const ForwardRef = forwardRef(ParagraphIcon); module.exports = ForwardRef;