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 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" /><path d="M17 12a5.001 5.001 0 0 1-3.053 4.607C12.93 17.037 12 16.105 12 15V9c0-1.105.93-2.037 1.947-1.607A5.001 5.001 0 0 1 17 12Z" /></svg>;
export default SvgComponent;