@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.21 kB
JavaScript
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",
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: "M6 9.5v-3c0-.473-.704-.888-1.007-1.178C4.18 4.546 3 5.26 3 6.53v7.9c0 1.858 2.038 3.44 3.077 4.126.356.235.595.687.595 1.186 0 .695.455 1.258 1.017 1.258h1.533c.982 0 1.778-.984 1.778-2.198v-2.114c0-.624-.215-1.22-.591-1.637zm0 0v4M18 9.5v-3c0-.473.704-.888 1.007-1.178C19.82 4.546 21 5.26 21 6.53v7.9c0 1.858-2.038 3.44-3.077 4.126-.356.235-.594.687-.594 1.186 0 .695-.456 1.258-1.018 1.258h-1.533C13.796 21 13 20.016 13 18.802v-2.114c0-.624.215-1.22.591-1.637zm0 0v4"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M12 3v7m-2-5h4",
opacity: 0.4
}));
const ForwardRef = forwardRef(PrayerIcon);
module.exports = ForwardRef;