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.36 kB
import * as React from "react"; import { forwardRef } from "react"; const StarSlashIcon = ({ 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: "M14.036 3.777c-.635-2.036-3.438-2.036-4.073 0L8.79 7.543a.65.65 0 0 1-.604.474H4.39c-1.054 0-1.784.716-2.036 1.527s-.064 1.81.767 2.44l3.071 2.327a.73.73 0 0 1 .241.798l-.123.397-3.958 3.928a.75.75 0 0 0 1.057 1.065L20.501 3.532a.75.75 0 1 0-1.056-1.064L15 6.878zM17.236 8.017a.75.75 0 0 0 0 1.5h2.372c.291 0 .514.18.605.473.091.295.015.604-.242.798l-3.07 2.328a2.23 2.23 0 0 0-.768 2.44l1.173 3.765a.71.71 0 0 1-.241.798.57.57 0 0 1-.726 0l-3.07-2.327a2.09 2.09 0 0 0-2.539 0l-3.07 2.327a.56.56 0 0 1-.553.096.7.7 0 0 1-.415-.428.75.75 0 1 0-1.418.49c.424 1.226 1.996 2.02 3.291 1.038l3.071-2.328a.59.59 0 0 1 .726 0l3.071 2.328c.843.638 1.852.52 2.538 0a2.205 2.205 0 0 0 .767-2.44l-1.173-3.766a.73.73 0 0 1 .241-.798l3.072-2.327c.83-.63 1.019-1.63.767-2.44-.253-.81-.982-1.527-2.037-1.527z" })); const ForwardRef = forwardRef(StarSlashIcon); export default ForwardRef;