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="M13 15a1 1 0 1 1-2 0 1 1 0 0 1 2 0Z" /><path d="M15 9c1.886 0 2.828 0 3.414.586C19 10.172 19 11.114 19 13v4c0 1.886 0 2.828-.586 3.414C17.828 21 16.886 21 15 21H9c-1.886 0-2.828 0-3.414-.586C5 19.828 5 18.886 5 17v-4c0-1.886 0-2.828.586-3.414C6.172 9 7.114 9 9 9h6ZM9 9V5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v4" /></svg>;
export default SvgComponent;