@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.15 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const StarSlashIcon = ({
title,
titleId,
...props
}, ref) => /*#__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: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M14.493 7.766 13.32 4a1.371 1.371 0 0 0-2.64 0L9.507 7.766c-.186.597-.719 1-1.32 1H4.39c-1.345 0-1.904 1.796-.816 2.62l3.07 2.328c.487.368.69 1.022.505 1.618l-.147.471m10.471-7.036h2.135c1.345 0 1.904 1.795.816 2.62l-3.07 2.326a1.48 1.48 0 0 0-.505 1.62l1.173 3.765c.416 1.334-1.048 2.443-2.136 1.619l-3.071-2.327a1.34 1.34 0 0 0-1.632 0l-3.07 2.327c-.762.577-1.708.207-2.064-.525"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19.973 3 2.881 19.966"
}));
const ForwardRef = forwardRef(StarSlashIcon);
module.exports = ForwardRef;