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="M12 15h4.5a1.5 1.5 0 0 1 0 3 1.5 1.5 0 0 1-1.5-1.5v-9a1.5 1.5 0 0 1 3 0A1.5 1.5 0 0 1 16.5 9h-9a1.5 1.5 0 1 1 0-3A1.5 1.5 0 0 1 9 7.5v9a1.5 1.5 0 0 1-3 0A1.5 1.5 0 0 1 7.5 15H12Z" /></svg>;
export default SvgComponent;