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="M21 8a5 5 0 1 1-10 0 5 5 0 0 1 10 0ZM10 15.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0ZM19 18.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0Z" /></svg>;
export default SvgComponent;