@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 647 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function AsteriskIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "asterisk",
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 4V21M16.75 5.13879L8.25 19.8612M19.8612 8.25L5.13878 16.75M4.00002 12.5H21M5.13881 8.25L19.8612 16.75M8.25002 5.13879L16.75 19.8612",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { AsteriskIcon, AsteriskIcon as default };
//# sourceMappingURL=Asterisk.js.map