const PlusIcon = ( {width = '26', height = '26'} ) => (
	<svg
		width={width}
		height={height}
		viewBox="0 0 26 26"
		fill="none"
		xmlns="http://www.w3.org/2000/svg"
		style={{display: 'block'}}
	>
		<line x1="13" y1="0" x2="13" y2="26" stroke="currentColor" strokeWidth="6" strokeLinecap="butt"/>
		<line x1="0" y1="13" x2="26" y2="13" stroke="currentColor" strokeWidth="6" strokeLinecap="butt"/>
	</svg>
);

export default PlusIcon;
