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="M20 20c-2.21 2.21-7.582.418-12-4S1.79 6.21 4 4c2.21-2.21 7.582-.418 12 4s6.21 9.79 4 12Z" /><path d="M4 20c-2.21-2.21-.418-7.582 4-12s9.79-6.21 12-4c2.21 2.21.418 7.582-4 12s-9.79 6.21-12 4Z" /><path d="M14 12a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z" /></svg>;
export default SvgComponent;