Skip to content
Snippets Groups Projects
List.tsx 266 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgList(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M97 806h806v97H97v-97zm0-225h806v96H97v-96zm0-226h806v97H97v-97zm0-226h806v97H97v-97z" />
        </svg>
      );
    }
    
    export default SvgList;