UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 443 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgInputField = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M8 5h3v14H8v2h8v-2h-3V5h3V3H8zM2 7a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6v-2H3V9h5V7zm14 2h5v6h-5v2h6a1 1 0 0 0 1-1V8a1 1 0 0 0-1-1h-6z" /> </Svg> ); export default SvgInputField;