Skip to content
Snippets Groups Projects
PersonOutline.tsx 430 B
Newer Older
  • Learn to ignore specific revisions
  • import { h } from "@stencil/core";
    
    function SvgPersonOutline(props) {
      return (
        <svg viewBox="0 0 1000 1000" {...props}>
          <path d="M500 226q34 0 58 23t23 57-23 57-58 24-57-24-24-57 24-57 57-23zm0-65q-40 0-73 19t-52 53-20 73 20 73 52 53 73 20 73-20 53-53 19-73-19-73-53-53-73-19zm84 355l84 145-84 145H416l-84-145 84-145h168zm39-64H381L258 661l119 210h242l120-210z" />
        </svg>
      );
    }
    
    export default SvgPersonOutline;