@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
25 lines (24 loc) • 728 B
JavaScript
"use client";
import { jsx } from "react/jsx-runtime";
//#region packages/@mantine/core/src/components/Rating/StarSymbol/StarIcon.tsx
function StarIcon(props) {
const { width, height, style, ...others } = props;
return /* @__PURE__ */ 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__ */ 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
export { StarIcon };
//# sourceMappingURL=StarIcon.mjs.map