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="M15 14a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z" /><path d="M5 7c0-1.886 0-2.828.586-3.414C6.172 3 7.114 3 9 3h6c1.886 0 2.828 0 3.414.586C19 4.172 19 5.114 19 7v10c0 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 17V7ZM12 7.011V7" /></svg>;
export default SvgComponent;