@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 792 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function LinkIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "link",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M11 12.5L12.5 14C13.281 14.781 14.719 14.781 15.5 14L18.5 11C19.281 10.219 19.281 8.78105 18.5 8L18 7.5C17.2189 6.71895 15.781 6.71895 15 7.5L13 9.5M12 15.5L10 17.5C9.21895 18.281 7.78105 18.281 7 17.5L6.5 17C5.71895 16.219 5.71896 14.781 6.5 14L9.50001 11C10.2811 10.219 11.719 10.2189 12.5 11L14 12.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { LinkIcon, LinkIcon as default };
//# sourceMappingURL=Link.js.map