react-native-remix-icons
Version:
Remix Icon for React Native
14 lines (13 loc) • 402 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgAnthropicLine = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M14.122 5h2.146L22.1 20h-2.146zM7.66 5h2.681l5.77 15h-2.144l-1.538-4H5.572l-1.539 4H1.891zm4 9L9 7.086 6.341 14z" />
</Svg>
);
export default SvgAnthropicLine;