import React from "react";
export default function ArrowThickBottomIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-arrow-thick-bottom-icon ${
props.className
}`}
>
<path d="M3 0v5H1l3.03 3L7 5H5V0H3z" />
</svg>
);
}