react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 418 B
JavaScript
import React from 'react';
export default function AsteriskIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-asterisk ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M10 2h4l-.79 7.91 6.45-4.64 2 3.46L14.42 12l7.24 3.27-2 3.46-6.45-4.64L14 22h-4l.79-7.91-6.45 4.64-2-3.46L9.58 12 2.34 8.73l2-3.46 6.45 4.64L10 2z" />
</svg>
);
}