import React from "react";
export default function ArrowThickRightIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-arrow-thick-right-icon ${
props.className
}`}
>
<path d="M5 1v2H0v2h5v2l3-3.03L5 1z" />
</svg>
);
}