react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 462 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAnthropicFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M16.765 5h-3.308l5.923 15h3.23zM7.226 5 1.38 20h3.308l1.307-3.154h6.154l1.23 3.077h3.309L10.688 5H7.226m-.308 9.077 2-5.308 2.077 5.308H6.918" />
</Svg>
);
export default SvgAnthropicFill;