Newer
Older
import { h } from "@stencil/core";
function SvgPeople(props) {
return (
<svg viewBox="0 0 1000 1000" {...props}>
<path d="M484 306q0-39-19-73t-53-53-73-19-73 19-53 53-19 73 19 73 53 53 73 20 73-20 53-53 19-73zm-23 146H216L97 661l119 210h245l120-210zm378 32q0-41-28-69t-69-28-69 28-28 69 28 69 69 28 69-28 28-69zm-16 97H661l-80 145 80 145h162l80-145z" />
</svg>
);
}
export default SvgPeople;