@sanity/icons
Version:
The Sanity icons.
29 lines (28 loc) • 740 B
JavaScript
import { jsx, jsxs } from "react/jsx-runtime";
/**
* @public
*/
function EnvelopeIcon(props) {
return /* @__PURE__ */ jsxs("svg", {
"data-sanity-icon": "envelope",
width: "1em",
height: "1em",
viewBox: "0 0 25 25",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
...props,
children: [/* @__PURE__ */ jsx("path", {
d: "M20.5 18.5H4.5V6.5H20.5V18.5Z",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
}), /* @__PURE__ */ jsx("path", {
d: "M20.5 18.5L17.75 15.5L15 12.5M4.5 18.5L10 12.5M20.5 6.5L12.5 15L4.5 6.5",
stroke: "currentColor",
strokeWidth: 1.2,
strokeLinejoin: "round"
})]
});
}
export { EnvelopeIcon, EnvelopeIcon as default };
//# sourceMappingURL=Envelope.js.map