@metamask/design-system-react
Version:
Design system react ui components
7 lines • 784 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const SvgPrint = (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: "M16 8V5H8v3H6V3h12v5zm2 4.5q.424 0 .713-.287c.288-.287.287-.43.287-.713s-.096-.52-.287-.712-.43-.288-.713-.288-.52.096-.712.288-.288.429-.288.712.096.52.288.713.429.287.712.287M16 19v-4H8v4zm2 2H6v-4H2v-6q0-1.275.875-2.137C3.75 8 4.167 8 5 8h14q1.275 0 2.138.863C22 9.726 22 10.15 22 11v6h-4zm2-6v-4q0-.424-.287-.712C19.425 9.999 19.283 10 19 10H5q-.424 0-.712.288C3.998 10.575 4 10.717 4 11v4h2v-2h12v2z" }));
const ForwardRef = forwardRef(SvgPrint);
export default ForwardRef;
//# sourceMappingURL=Print.mjs.map