Skip to content
Snippets Groups Projects
Images.tsx 515 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgImages(props) {
      return (
        <svg viewBox="0 0 1125 1000" {...props}>
          <path d="M1063 125h-63V62q0-25-18-44T938 0H63Q37 0 19 18T0 62v750q0 26 19 45t44 18h62v62q0 26 19 45t44 18h875q25 0 44-18t18-45V187q0-25-18-44t-44-18zm-938 62v625H63V62l875 1v62H188q-26 0-44 18t-19 44zm938 750H188V187l874 1v749h1zM938 344q0 39-27 66t-67 27-66-27-28-66 28-67 66-27 67 27 27 67zm62 531H250V750l219-375 250 312h62l219-187v375z" />
        </svg>
      );
    }
    
    export default SvgImages;