UNPKG

@astraicons/react

Version:

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

30 lines 1.04 kB
const React = require("react"); const { forwardRef } = require("react"); const ScripturIcon = ({ 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", { strokeLinecap: "round", d: "M20.262 16H6.122C4.397 16 3 17.12 3 18.5S4.398 21 6.121 21h14.141c.751 0 1.02-.795.372-1.1-1.336-.626-1.336-2.173 0-2.8.649-.305.38-1.1-.372-1.1Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 16.5V6.58A3.58 3.58 0 0 0 17.42 3H6.58A3.58 3.58 0 0 0 3 6.58V18" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M12 6v7m-2-5h4", opacity: 0.4 })); const ForwardRef = forwardRef(ScripturIcon); module.exports = ForwardRef;