Skip to content
Snippets Groups Projects
Grid.tsx 435 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgGrid(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M903 290v-96h-97V97h-96v97H548V97h-96v97H290V97h-96v97H97v96h97v162H97v96h97v162H97v96h97v97h96v-97h162v97h96v-97h162v97h96v-97h97v-96h-97V548h97v-96h-97V290h97zm-613 0h162v162H290V290zm0 420V548h162v162H290zm420 0H548V548h162v162zm0-258H548V290h162v162z" />
        </svg>
      );
    }
    
    export default SvgGrid;