UNPKG

react-native-remix-icon

Version:
14 lines (11 loc) 502 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgLoginCircleLine(props) { return ( <Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}> <Path fill="none" d="M0 0h24v24H0z" /> <Path d="M10 11V8l5 4-5 4v-3H1v-2h9zm-7.542 4h2.124A8.003 8.003 0 0020 12 8 8 0 004.582 9H2.458C3.732 4.943 7.522 2 12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10c-4.478 0-8.268-2.943-9.542-7z" /> </Svg> ); } export default SvgLoginCircleLine;