UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 572 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgLinkedinBoxLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M4 3h16a1 1 0 011 1v16a1 1 0 01-1 1H4a1 1 0 01-1-1V4a1 1 0 011-1zm1 2v14h14V5H5zm2.5 4a1.5 1.5 0 110-3 1.5 1.5 0 010 3zm-1 1h2v7.5h-2V10zm5.5.43c.584-.565 1.266-.93 2-.93 2.071 0 3.5 1.679 3.5 3.75v4.25h-2v-4.25a1.75 1.75 0 00-3.5 0v4.25h-2V10h2v.43z" /> </Svg> ); } export default SvgLinkedinBoxLine;