react-material-icon-svg
Version:
React material icon jsx version
16 lines (14 loc) • 416 B
JavaScript
import React from 'react';
export default function ZodiacSagittariusIcon(props) {
return (
<svg
width="24"
height="24"
{...props}
className={`rmi rmi-zodiac-sagittarius ${props.className}`}
viewBox="0 0 24 24"
>
<path d="M22 2v10h-2V5.41L10.41 15l2.3 2.29-1.42 1.42L9 16.41l-5.29 5.3-1.42-1.42L7.59 15l-2.3-2.29 1.42-1.42L9 13.59 18.59 4H12V2h10z" />
</svg>
);
}