Skip to content
Snippets Groups Projects
Home.tsx 555 B
Newer Older
  • Learn to ignore specific revisions
  • import {h} from '@stencil/core';
    
    
    function SvgHome(props) {
      return (
    
    Tuukka Turu's avatar
    Tuukka Turu committed
        <svg viewBox="0 0 1000 1000" {...props} stroke="black" stroke-width="1">
    
          <path
            d="M345.3,998.7c-30.3,0-55.4-25.2-55.4-55.6c0-30.4,25.1-55.6,55.4-55.6h479.9l0-509.9L500,114.2L174.8,377.6
    		v565.5c0,30.4-25.1,55.6-55.4,55.6c-30.3,0-55.4-25.2-55.4-55.6l0-567.6c0-31.5,14.6-61.9,38.7-81.9L434.1,25
    
    Tuukka Turu's avatar
    Tuukka Turu committed
        c37.7-30.4,93-30.4,130.7,0l332.5,268.6c25.1,19.9,38.7,49.3,38.7,81.9v568.7c0,29.4-25.1,54.6-55.4,54.6L345.3,998.7z"
    
        </svg>
      );
    }
    
    export default SvgHome;