react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 505 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgDrinksFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M14 2H6.205a1.25 1.25 0 0 0-1.226 1.005L4.18 7H2v2h20V7h-2.18l-.8-3.995A1.25 1.25 0 0 0 17.796 2H16V0h-2zm5.66 9H4.34l1.141 9.893A1.25 1.25 0 0 0 6.723 22h10.554a1.25 1.25 0 0 0 1.242-1.107z" />
</Svg>
);
export default SvgDrinksFill;