UNPKG

@astraicons/react

Version:

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

20 lines 1.41 kB
const React = require("react"); const { forwardRef } = require("react"); const PrayerIcon = ({ 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 2.25a.75.75 0 0 1 .75.75v1.25H14a.75.75 0 0 1 0 1.5h-1.25V10a.75.75 0 0 1-1.5 0V5.75H10a.75.75 0 0 1 0-1.5h1.25V3a.75.75 0 0 1 .75-.75M3.303 4.517C2.656 4.91 2.25 5.665 2.25 6.53v7.9c0 1.201.652 2.235 1.34 3.003.7.781 1.529 1.389 2.074 1.749.124.082.258.285.258.56 0 .952.65 2.008 1.767 2.008h1.533c1.537 0 2.528-1.476 2.528-2.948v-2.114c0-.779-.264-1.551-.768-2.12L6.75 9.238V6.5c0-.587-.414-1.007-.629-1.207a7 7 0 0 0-.374-.317 4 4 0 0 1-.236-.196c-.66-.63-1.532-.672-2.208-.263M20.697 4.517c.647.392 1.053 1.148 1.053 2.013v7.9c0 1.201-.652 2.235-1.34 3.003-.7.781-1.529 1.389-2.074 1.749-.124.082-.258.285-.258.56 0 .952-.65 2.008-1.767 2.008h-1.533c-1.537 0-2.528-1.476-2.528-2.948v-2.114c0-.779.264-1.551.768-2.12l4.232-5.33V6.5c0-.587.414-1.007.629-1.207.13-.121.267-.231.374-.317a4 4 0 0 0 .236-.196c.66-.63 1.532-.672 2.208-.263" })); const ForwardRef = forwardRef(PrayerIcon); module.exports = ForwardRef;