Skip to content
Snippets Groups Projects
HorizontalResize.tsx 323 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgHorizontalResize(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M363 119v358H194V360L0 518l194 156V557h169v358h80V119h-80zm273 796V557h169v117l195-158-195-156v117H636V119h-80v796h80z" />
        </svg>
      );
    }
    
    export default SvgHorizontalResize;