@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 680 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function StarFilledIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "star-filled",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M12.5 5L14.3956 9.89092L19.6329 10.1824L15.5672 13.4966L16.9084 18.5676L12.5 15.725L8.09161 18.5676L9.43284 13.4966L5.36708 10.1824L10.6044 9.89092L12.5 5Z",
fill: "currentColor",
stroke: "currentColor",
strokeLinejoin: "round"
})
});
}
export { StarFilledIcon, StarFilledIcon as default };
//# sourceMappingURL=StarFilled.js.map