Skip to content
Snippets Groups Projects
FullScreen.tsx 398 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgFullScreen(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M65 65h290v96H242l161 162-80 80-162-161v113H65V65zm870 0H645v96h113L597 323l80 80 162-161v113h96V65zM65 935h290v-96H242l161-162-80-80-162 161V645H65v290zm870 0H645v-96h113L597 677l80-80 162 161V645h96v290z" />
        </svg>
      );
    }
    
    export default SvgFullScreen;