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 fillRule="evenodd" d="M12 17a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm0-10.25a3.25 3.25 0 1 0 0 6.5 3.25 3.25 0 0 0 0-6.5Z" clipRule="evenodd" opacity={0.1} stroke="none" fill="currentColor" /><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;