@vector-im/compound-design-tokens
Version:
Compound design tokens
19 lines • 602 B
JavaScript
import { forwardRef } from "react";
import { jsx as _jsx } from "react/jsx-runtime";
function EmailIcon(props, ref) {
return /*#__PURE__*/_jsx("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: "1em",
height: "1em",
fill: "currentColor",
viewBox: "0 0 24 24",
ref: ref,
...props,
children: /*#__PURE__*/_jsx("path", {
d: "M2 6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm2 0v1.412l8 4.444 8-4.444V6zm0 3.7V18h16V9.7l-7.514 4.174a1 1 0 0 1-.972 0z"
})
});
}
;
EmailIcon.displayName = "EmailIcon";
export default forwardRef(EmailIcon);