@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 722 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function SparkleIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "sparkle",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M10.5 10.5C8.5 12.5 5 12.5 5 12.5C5 12.5 8.5 12.5 10.5 14.5C12.5 16.5 12.5 20 12.5 20C12.5 20 12.5 16.5 14.5 14.5C16.5 12.5 20 12.5 20 12.5C20 12.5 16.5 12.5 14.5 10.5C12.5 8.5 12.5 5 12.5 5C12.5 5 12.5 8.5 10.5 10.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { SparkleIcon, SparkleIcon as default };
//# sourceMappingURL=Sparkle.js.map