react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 391 B
JavaScript
import React from 'react';
export default function StarThreePointsOutlineIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-star-three-points-outline ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 9.5l1.2 4 2.8 3-4-.9-4.1.9 2.8-3 1.3-4m0-6.9l-3 9.8-7 7.5 10-2.3L22 20l-7-7.5-3-9.9z" />
</svg>
);
}