react-native-feather
Version:
React Native component for Feather icons
9 lines (8 loc) • 415 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgCoffee(props) {
return (<Svg width={24} height={24} viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth={2} strokeLinecap="round" strokeLinejoin="round" {...props}>
<Path d="M18 8h1a4 4 0 010 8h-1M2 8h16v9a4 4 0 01-4 4H6a4 4 0 01-4-4V8zM6 1v3M10 1v3M14 1v3"/>
</Svg>);
}
export default SvgCoffee;