@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 760 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function PinRemovedIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "pin-removed",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M7.39787 14C8.51075 16.2897 10.5054 18.5054 12.5 20.5C14.4946 18.5054 16.4892 16.2897 17.6021 14M6.52009 11C6.50681 10.8334 6.5 10.6667 6.5 10.5C6.5 7 9 4.5 12.5 4.5C16 4.5 18.5 7 18.5 10.5C18.5 10.6667 18.4932 10.8334 18.4799 11M3 12.5H22",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { PinRemovedIcon, PinRemovedIcon as default };
//# sourceMappingURL=PinRemoved.js.map