import React from "react";
export default function ChevronRightIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-chevron-right-icon ${
props.className
}`}
>
<path d="M2.5 0L1 1.5 3.5 4 1 6.5 2.5 8l4-4-4-4z" />
</svg>
);
}