import React from 'react';
export default function StarFourPointsIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-star-four-points ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 1L9 9l-8 3 8 3 3 8 3-8 8-3-8-3-3-8z" />
</svg>
);
}