react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 564 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgKey2Line = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m10.758 11.828 7.849-7.849 1.414 1.414-1.414 1.415 2.474 2.474-1.414 1.415-2.475-2.475-1.414 1.414 2.121 2.121-1.414 1.415-2.121-2.122-2.192 2.192a5.002 5.002 0 0 1-7.708 6.293 5 5 0 0 1 6.294-7.707m-.637 6.293A3 3 0 1 0 5.88 13.88a3 3 0 0 0 4.242 4.242" />
</Svg>
);
export default SvgKey2Line;