UNPKG

react-native-remix-icon

Version:
16 lines (15 loc) 452 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; const SvgExternalLinkLine = props => ( <Svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" width={24} height={24} {...props} > <Path d="M10 6v2H5v11h11v-5h2v6a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V7a1 1 0 0 1 1-1zm11-3v8h-2V6.413l-7.793 7.794-1.414-1.414L17.585 5H13V3z" /> </Svg> ); export default SvgExternalLinkLine;