import React from "react";
export default function StarIcon(props) {
return (
<svg
width="8"
height="8"
{...props}
className={`open-iconic open-iconic-star-icon ${props.className}`}
>
<path d="M4 0L3 3H0l2.5 2-1 3L4 6l2.5 2-1-3L8 3H5L4 0z" />
</svg>
);
}