@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
27 lines • 1.24 kB
JavaScript
const React = require("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", {
d: "M16.237 8.408h4.218c1.494 0 2.115 1.994.906 2.91l-3.412 2.586a1.65 1.65 0 0 0-.56 1.799l1.303 4.184c.462 1.482-1.165 2.715-2.373 1.799l-3.412-2.587a1.49 1.49 0 0 0-1.814 0l-3.412 2.587c-1.208.916-2.835-.317-2.373-1.8l.326-1.045M16.237 8.408q-.12 0-.237-.02m.237.02L16 8.388M14.444 6.25l-.326-1.046-.325-1.046-.326-1.046a1.524 1.524 0 0 0-2.934 0L9.23 7.296c-.207.663-.799 1.112-1.467 1.112H3.545c-1.494 0-2.115 1.994-.906 2.91l3.412 2.586a1.6 1.6 0 0 1 .56.804M16 8.388a1.5 1.5 0 0 1-.212-.05z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19 2 2 19"
}));
}
const ForwardRef = React.forwardRef(StarSlashIcon);
module.exports = ForwardRef;