react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 427 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLetterSpacing2 = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M6.2 14h2.154l1.2-3h4.892l1.2 3H17.8L13 2h-2zM12 4.885 13.646 9h-3.292zM3 16v6h2v-2h14v2h2v-6h-2v2H5v-2z" />
</Svg>
);
export default SvgLetterSpacing2;