@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.12 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const SunsetIcon = ({
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: "M11.246 2.842a.75.75 0 0 0 1.5 0V2a.75.75 0 0 0-1.5 0zM12 5.25c-3.728 0-6.5 2.522-6.5 6.25h13c0-3.728-2.772-6.25-6.5-6.25M19.275 4.47a.75.75 0 0 1 0 1.06l-.744.744a.75.75 0 0 1-1.061-1.06l.744-.744a.75.75 0 0 1 1.06 0M5.214 6.274a.75.75 0 0 0 1.06-1.06l-.743-.744A.75.75 0 0 0 4.47 5.53zM2.25 14a.75.75 0 0 1 .75-.75h18a.75.75 0 0 1 0 1.5H3a.75.75 0 0 1-.75-.75M6.25 17a.75.75 0 0 1 .75-.75h10a.75.75 0 0 1 0 1.5H7a.75.75 0 0 1-.75-.75M11.526 19.466a.75.75 0 0 0-1.052 1.068l1.015 1a.75.75 0 0 0 1.053 0l.984-.97a.75.75 0 1 0-1.052-1.068l-.459.451z"
}));
const ForwardRef = forwardRef(SunsetIcon);
module.exports = ForwardRef;