UNPKG

@astraicons/react

Version:

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

27 lines 1.26 kB
import * as React from "react"; function StarSlashIcon({ 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", { fillRule: "evenodd", d: "M13.466 3.112a1.524 1.524 0 0 0-2.933 0L9.229 7.296c-.206.663-.799 1.112-1.467 1.112H3.545c-1.495 0-2.116 1.994-.907 2.91l3.412 2.586c.42.318.086-.522.071 0L14.225 5.8zm2.273 5.21L5.82 18.24l-.513 1.647c-.462 1.482 1.165 2.715 2.374 1.799l3.412-2.587c.54-.41 1.272-.41 1.813 0l3.412 2.587c1.209.916 2.835-.317 2.373-1.8l-1.303-4.183a1.65 1.65 0 0 1 .56-1.8l3.413-2.585c1.208-.916.587-2.91-.907-2.91h-4.218q-.26-.001-.498-.086", clipRule: "evenodd" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M18.798 2.202a.69.69 0 0 1 0 .975L3.177 18.798a.69.69 0 1 1-.975-.974L17.824 2.201a.69.69 0 0 1 .974 0", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(StarSlashIcon); export default ForwardRef;