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="M9 6a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1h-8a1 1 0 0 1-1-1V6Z" opacity={0.1} stroke="none" fill="currentColor" /><path d="M9 18V6a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v12M9 9h10M5 18a2 2 0 1 1 4 0 2 2 0 1 1-4 0Z" /><path d="M15 18a2 2 0 1 1 4 0 2 2 0 1 1-4 0Z" /></svg>;
export default SvgComponent;