UNPKG

@metamask/design-system-react

Version:
7 lines 445 B
import * as React from "react"; import { forwardRef } from "react"; const SvgFirstPage = (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: "M5.8 18V6h2v12zm11 0-6-6 6-6 1.4 1.4-4.6 4.6 4.6 4.6z" })); const ForwardRef = forwardRef(SvgFirstPage); export default ForwardRef; //# sourceMappingURL=FirstPage.mjs.map