import * as React from "react";
const SvgComponent = props => <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" stroke="currentColor" fill="none" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}><path d="M19 10a7 7 0 1 1-14 0 7 7 0 0 1 14 0Z" /><path d="M15 10a3 3 0 1 1-6 0 3 3 0 0 1 6 0ZM15 17l1.5 2c.618.824.03 2-1 2h-7c-1.03 0-1.618-1.176-1-2L9 17" /></svg>;
export default SvgComponent;