react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 335 B
JavaScript
import React from 'react';
export default function StarThreePointsIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-star-three-points ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M12 2.6l-3 9.8-7 7.5 10-2.3L22 20l-7-7.5-3-9.9z" />
</svg>
);
}