UNPKG

@astraicons/react

Version:

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

21 lines 1.18 kB
import * as React from "react"; function SunIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M12 3.75a.75.75 0 0 1-.75-.75V2a.75.75 0 0 1 1.5 0v1a.75.75 0 0 1-.75.75M18 12a6 6 0 1 1-12 0 6 6 0 0 1 12 0M11.25 22a.75.75 0 0 0 1.5 0v-1a.75.75 0 0 0-1.5 0zM3.75 12a.75.75 0 0 1-.75.75H2a.75.75 0 0 1 0-1.5h1a.75.75 0 0 1 .75.75M22 12.75a.75.75 0 0 0 0-1.5h-1a.75.75 0 0 0 0 1.5zM6.343 17.657a.75.75 0 0 1 0 1.06l-.884.885a.75.75 0 0 1-1.06-1.06l.883-.885a.75.75 0 0 1 1.06 0M19.665 5.03a.75.75 0 1 0-1.06-1.06l-.884.884a.75.75 0 0 0 1.06 1.06zM6.343 6.343a.75.75 0 0 1-1.06 0l-.885-.884a.75.75 0 1 1 1.061-1.06l.884.883a.75.75 0 0 1 0 1.06M18.604 19.665a.75.75 0 0 0 1.061-1.06l-.884-.884a.75.75 0 1 0-1.06 1.06z" })); } const ForwardRef = React.forwardRef(SunIcon); export default ForwardRef;