import { h } from "@stencil/core"; function SvgPerson(props) { return ( <svg viewBox="0 0 1000 1000" {...props}> <path d="M645 306q0-39-19-73t-53-53-73-19-73 19-52 53-20 73 20 73 52 53 73 20 73-20 53-53 19-73zm-22 146H377L258 661l119 210h246l119-210z" /> </svg> ); } export default SvgPerson;