@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
26 lines (25 loc) • 847 B
JavaScript
"use client";
require("../../../_virtual/_rolldown/runtime.cjs");
let react_jsx_runtime = require("react/jsx-runtime");
//#region packages/@mantine/core/src/components/Rating/StarSymbol/StarIcon.tsx
function StarIcon(props) {
const { width, height, style, ...others } = props;
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("svg", {
viewBox: "0 0 24 24",
strokeLinecap: "round",
strokeLinejoin: "round",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
style: {
width,
height,
...style
},
...others,
children: /* @__PURE__ */ (0, react_jsx_runtime.jsx)("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";
//#endregion
exports.StarIcon = StarIcon;
//# sourceMappingURL=StarIcon.cjs.map