react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 510 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgKey2Fill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m10.313 11.566 7.94-7.94 2.121 2.12-1.414 1.415 2.121 2.121-3.535 3.536-2.121-2.121-2.99 2.99a5.002 5.002 0 0 1-7.97 5.849 5 5 0 0 1 5.848-7.97m-.899 5.848a2 2 0 1 0-2.828-2.828 2 2 0 0 0 2.828 2.828" />
</Svg>
);
export default SvgKey2Fill;