@sanity/icons
Version:
The Sanity icons.
24 lines (23 loc) • 709 B
JavaScript
import { jsx } from "react/jsx-runtime";
/**
* @public
*/
function PlugIcon(props) {
return /* @__PURE__ */ jsx("svg", {
"data-sanity-icon": "plug",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: /* @__PURE__ */ jsx("path", {
d: "M13.25 8.5L16.75 5M16.25 11.5L19.75 8M9.25 15.5L5.25 19.5M7.75 14L9.75 12C8.25 10 8.75 9 9.75 8C10.15 7.6 11.25 6.5 11.25 6.5L18.25 13.5C18.25 13.5 17.3825 14.3675 16.75 15C15.75 16 14.75 16.5 12.75 15L10.75 17L7.75 14Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})
});
}
export { PlugIcon, PlugIcon as default };
//# sourceMappingURL=Plug.js.map