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="M3 12a9 9 0 1 1 18 0 9 9 0 0 1-18 0Z" clipRule="evenodd" opacity={0.1} stroke="none" fill="currentColor" /><path d="M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" /><path d="M7 12a5 5 0 0 1 5-5M13 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0ZM12 12l4-4" /></svg>;
export default SvgComponent;