remix-icons-rn
Version:
React native implementation for the popular [RemixIcon](https://remixicon.com) open source library. This library is a fork of (https://github.com/ajayesivan/react-native-remix-icon) since it seemed to be no longer maintained for my use case.
14 lines (13 loc) • 485 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDrinks2Fill = (props) => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
{...props}
>
<Path d="M7.323 2H4V0h4.677l2 5H21v2h-2.118l-.827 14.059a1 1 0 0 1-.998.941H6.943a1 1 0 0 1-.998-.941L5.118 7H3V5h5.523zm-.202 5 .178 3.025c2.672.11 3.969.605 5.061 1.042 1.051.42 1.92.786 4.227.9L16.879 7z" />
</Svg>
);
export default SvgDrinks2Fill;