@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
26 lines (22 loc) • 708 B
JavaScript
'use client';
;
var React = require('react');
function StarIcon(props) {
const { width, height, style, ...others } = props;
return /* @__PURE__ */ React.createElement(
"svg",
{
viewBox: "0 0 24 24",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
style: { width, height, ...style },
...others
},
/* @__PURE__ */ React.createElement("path", { d: "M12 17.75l-6.172 3.245l1.179 -6.873l-5 -4.867l6.9 -1l3.086 -6.253l3.086 6.253l6.9 1l-5 4.867l1.179 6.873z" })
);
}
StarIcon.displayName = "@mantine/core/StarIcon";
exports.StarIcon = StarIcon;
//# sourceMappingURL=StarIcon.cjs.map