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="M16 21c1.886 0 3.828 0 4.414-.586C21 19.828 21 18.886 21 17v-6c0-1.886 0-2.828-.586-3.414C19.828 7 17.886 7 16 7v14ZM8 21V7c-1.886 0-3.828 0-4.414.586C3 8.172 3 9.114 3 11v6c0 1.886 0 2.828.586 3.414C4.172 21 6.114 21 8 21Z" opacity={0.1} stroke="none" fill="currentColor" /><path d="M8 21V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v16" /><path d="M3 11c0-1.886 0-2.828.586-3.414C4.172 7 5.114 7 7 7h10c1.886 0 2.828 0 3.414.586C21 8.172 21 9.114 21 11v6c0 1.886 0 2.828-.586 3.414C19.828 21 18.886 21 17 21H7c-1.886 0-2.828 0-3.414-.586C3 19.828 3 18.886 3 17v-6Z" /></svg>;
export default SvgComponent;