Skip to content
Snippets Groups Projects
SVGs.tsx 1019 B
Newer Older
import React from "react";
tommy's avatar
tommy committed
import SVG1 from "./SVG/svg1.svg";

export default [ // Collection of Artworks that will be displayed
tommy's avatar
tommy committed
  SVG1,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"red"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"pink"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"black"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"brown"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"purple"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"yellow"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"green"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"gray"} />
  </svg>,
  <svg viewBox={"0 0 200 80"}>
    <rect width={"200"} height={80} fill={"teal"} />
  </svg>,
  // TODO: ADD SVGS IN HERE
];