@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
34 lines (31 loc) • 1.24 kB
JavaScript
import React from 'react';
var __defProp = Object.defineProperty;
var __getOwnPropSymbols = Object.getOwnPropertySymbols;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __propIsEnum = Object.prototype.propertyIsEnumerable;
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
var __spreadValues = (a, b) => {
for (var prop in b || (b = {}))
if (__hasOwnProp.call(b, prop))
__defNormalProp(a, prop, b[prop]);
if (__getOwnPropSymbols)
for (var prop of __getOwnPropSymbols(b)) {
if (__propIsEnum.call(b, prop))
__defNormalProp(a, prop, b[prop]);
}
return a;
};
function StarIcon(props) {
return /* @__PURE__ */ React.createElement("svg", __spreadValues({
viewBox: "0 0 24 24",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, props), /* @__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";
export { StarIcon };
//# sourceMappingURL=StarIcon.js.map