react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 461 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAngularjsFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m12 2 9.3 3.32-1.418 12.31L12 22 4.12 17.63 2.7 5.32zm0 2.21L6.186 17.26h2.168l1.169-2.92h4.935l1.168 2.92h2.168zm1.698 8.33h-3.396L12 8.45z" />
</Svg>
);
export default SvgAngularjsFill;