@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.68 kB
JavaScript
const React = require("react");
function Star02Icon({
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: "M11.306 3.207c.228-.396.342-.594.49-.66a.5.5 0 01.408 0c.148.066.262.264.49.66l1.955 3.402c.084.147.126.22.185.273a.5.5 0 00.181.105c.076.024.16.024.33.024l3.923-.008c.457-.001.685-.002.817.094a.5.5 0 01.204.353c.016.162-.098.36-.327.754l-1.97 3.394c-.084.147-.126.22-.143.297a.5.5 0 000 .21c.017.077.06.15.144.296l1.969 3.395c.229.395.343.592.327.754a.5.5 0 01-.204.353c-.132.096-.36.095-.817.094l-3.924-.008c-.169 0-.253 0-.329.024a.5.5 0 00-.18.104c-.06.054-.102.127-.186.273l-1.955 3.403c-.228.396-.342.594-.49.66a.5.5 0 01-.408 0c-.148-.066-.262-.264-.49-.66L9.351 17.39c-.084-.147-.126-.22-.185-.273a.5.5 0 00-.18-.105c-.076-.024-.161-.024-.33-.024l-3.924.008c-.457.001-.685.002-.817-.094a.5.5 0 01-.203-.353c-.017-.162.097-.36.326-.754l1.97-3.395c.084-.146.126-.219.143-.297a.5.5 0 000-.208c-.017-.078-.059-.151-.144-.298L4.038 8.204c-.229-.395-.343-.592-.326-.754a.5.5 0 01.203-.353c.132-.096.36-.095.817-.094l3.924.008c.169 0 .254 0 .33-.024a.5.5 0 00.18-.105c.059-.053.101-.126.185-.273l1.955-3.402z"
}));
}
const ForwardRef = React.forwardRef(Star02Icon);
module.exports = ForwardRef;