contentz-tech/build

View on GitHub
src/components/icons/file.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import { jsx } from "@emotion/core";

export default () =>
  jsx(
    "svg",
    {
      width: 19,
      height: 19,
      fill: "none"
    },
    jsx("path", {
      d:
        "M10 8C8.34 8 7 6.66 7 5V1H3c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h9c1.1 0 2-.9 2-2V8h-4zM8 5c0 1.1.9 2 2 2h3.59L8 1.41V5zM3 0h5l7 7v9c0 1.66-1.34 3-3 3H3c-1.66 0-3-1.34-3-3V3c0-1.66 1.34-3 3-3z",
      fill: "#000"
    })
  );