@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.24 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const ScripturIcon = ({
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", {
fillRule: "evenodd",
d: "M2.25 6.58a4.33 4.33 0 0 1 4.33-4.33h10.84a4.33 4.33 0 0 1 4.33 4.33v9.92h-.004a1.23 1.23 0 0 1-.11.614c-.139.301-.387.525-.683.665-.445.208-.57.51-.57.721s.125.513.57.721c.296.14.544.364.683.665.14.301.146.629.047.919-.199.588-.776.945-1.421.945H6.122c-1.975 0-3.872-1.308-3.872-3.25q0-.17.019-.332A.8.8 0 0 1 2.25 18zm1.826 11.05c-.212.273-.326.579-.326.87 0 .82.898 1.75 2.371 1.75h13.655c-.566-.442-.894-1.068-.894-1.75s.328-1.308.894-1.75H6.5c-.811 0-1.6.263-2.25.75zM12 5.25a.75.75 0 0 1 .75.75v1.25H14a.75.75 0 0 1 0 1.5h-1.25V13a.75.75 0 0 1-1.5 0V8.75H10a.75.75 0 0 1 0-1.5h1.25V6a.75.75 0 0 1 .75-.75m8.316 11.506.003.001z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(ScripturIcon);
export default ForwardRef;