import React from "react";
export default function ResizeHeightIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-resize-height-icon ${
props.className
}`}
>
<path d="M3.5 0L1 3h2v2H1l2.5 3L6 5H4V3h2L3.5 0z" />
</svg>
);
}