UNPKG

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) 461 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgContactsBookUploadLine = (props) => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" {...props} > <Path d="M19.005 2C20.107 2 21 2.898 21 3.99v16.02c0 1.099-.893 1.99-1.995 1.99H3V2zM7 4H5v16h2zm12 0H9v16h10zm-5 4 4 4h-3v4h-2v-4h-3zm10 4v4h-2v-4zm0-6v4h-2V6z" /> </Svg> ); export default SvgContactsBookUploadLine;