import React from "react";
export default function ArrowThickTopIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-arrow-thick-top-icon ${
props.className
}`}
>
<path d="M3.97 0L1 3h2v5h2V3h2L3.97 0z" />
</svg>
);
}