@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.18 kB
JavaScript
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",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19 2 2 19M14.28 5.721l-.813-2.61a1.524 1.524 0 0 0-2.934 0L9.23 7.297c-.207.663-.799 1.112-1.467 1.112H3.545c-1.494 0-2.115 1.994-.906 2.91C3.689 12.113 5.06 13.258 6 14",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M16.237 8.407h4.218c1.494 0 2.115 1.995.906 2.91l-3.412 2.587a1.65 1.65 0 0 0-.56 1.799l1.303 4.184c.462 1.482-1.165 2.715-2.373 1.798L12.907 19.1a1.49 1.49 0 0 0-1.813 0L7.68 21.685c-1.208.917-2.835-.316-2.373-1.798l.446-1.293"
}));
}
const ForwardRef = React.forwardRef(StarSlashIcon);
export default ForwardRef;