UNPKG

@metamask/design-system-react

Version:
7 lines 423 B
import * as React from "react"; import { forwardRef } from "react"; const SvgSend = (props, ref) => React.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", ref: ref, ...props }, React.createElement("path", { d: "M3 20V4l19 8zm2-3 11.85-5L5 7v3.5l6 1.5-6 1.5z" })); const ForwardRef = forwardRef(SvgSend); export default ForwardRef; //# sourceMappingURL=Send.mjs.map