@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 665 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function TargetIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "target",
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 3V10M22 12.5H15M12.5 22V15M3 12.5H10M19 12.5C19 16.0899 16.0899 19 12.5 19C8.91015 19 6 16.0899 6 12.5C6 8.91015 8.91015 6 12.5 6C16.0899 6 19 8.91015 19 12.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { TargetIcon, TargetIcon as default };
//# sourceMappingURL=Target.js.map