@zh5/react-native-remix-icon
Version:
Remix Icon for React Native
9 lines (8 loc) • 439 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLoginCircleLine = props => (
<Svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<Path d="M10 11V8l5 4-5 4v-3H1v-2h9Zm-7.542 4h2.124A8.003 8.003 0 0 0 20 12 8 8 0 0 0 4.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;