react-native-remix-icon
Version:
Remix Icon for React Native
14 lines (11 loc) • 482 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgAngularjsFill(props) {
return (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path fill="none" d="M0 0h24v24H0z" />
<Path d="M12 2l9.3 3.32-1.418 12.31L12 22l-7.882-4.37L2.7 5.32 12 2zm0 2.21L6.186 17.26h2.168l1.169-2.92h4.934l1.17 2.92h2.167L12 4.21zm1.698 8.33h-3.396L12 8.45l1.698 4.09z" />
</Svg>
);
}
export default SvgAngularjsFill;