@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 748 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function UnlinkIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "unlink",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M15 13.5L17.5 11C18.281 10.219 18.281 8.78105 17.5 8L17 7.5C16.2189 6.71895 14.781 6.71895 14 7.5L11.5 10M10 11.5L7.5 14C6.71896 14.781 6.71895 16.219 7.5 17L8 17.5C8.78105 18.281 10.2189 18.281 11 17.5L13.5 15M9.5 8V5M8 9.5H5M17 15.5H20M15.5 17V20",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { UnlinkIcon, UnlinkIcon as default };
//# sourceMappingURL=Unlink.js.map