@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.05 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const Sunset1Icon = ({
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.746 2a.75.75 0 1 0-1.5 0v.842a.75.75 0 0 0 1.5 0zM5.53 4.47a.75.75 0 0 0-1.06 1.06l.744.744a.75.75 0 0 0 1.06-1.06zM19.274 5.53a.75.75 0 1 0-1.06-1.06l-.744.744a.75.75 0 0 0 1.06 1.06zM3 13.25a.75.75 0 0 0 0 1.5h18a.75.75 0 0 0 0-1.5zM7 16.25a.75.75 0 0 0 0 1.5h10a.75.75 0 0 0 0-1.5zM12.511 19.466a.75.75 0 0 0-1.053 0l-.984.97a.75.75 0 0 0 1.052 1.068l.459-.451.489.481a.75.75 0 1 0 1.052-1.068zM12 5.25c-3.728 0-6.786 2.711-6.786 6.44H18.81c0-3.729-3.083-6.44-6.811-6.44"
}));
const ForwardRef = forwardRef(Sunset1Icon);
module.exports = ForwardRef;