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 18V6a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v12M5 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 0ZM9 9h10" /></svg>;
export default SvgComponent;