UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

24 lines (21 loc) 682 B
'use client'; import React from '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"; export { StarIcon }; //# sourceMappingURL=StarIcon.mjs.map