import React from "react";
export default function ArrowThickLeftIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-arrow-thick-left-icon ${
props.className
}`}
>
<path d="M3 1L0 4.03 3 7V5h5V3H3V1z" />
</svg>
);
}