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="M6 7V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v2M7 17c-1.886 0-2.828 0-3.414-.586C3 15.828 3 14.886 3 13v-2c0-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 11v2c0 1.886 0 2.828-.586 3.414C19.828 17 18.886 17 17 17" /><path d="M7 17c0-1.886 0-2.828.586-3.414C8.172 13 9.114 13 11 13h2c1.886 0 2.828 0 3.414.586C17 14.172 17 15.114 17 17c0 1.886 0 2.828-.586 3.414C15.828 21 14.886 21 13 21h-2c-1.886 0-2.828 0-3.414-.586C7 19.828 7 18.886 7 17Z" /></svg>;
export default SvgComponent;