react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 460 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgLockUnlockFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="M7 10h13a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1h1V9a7 7 0 0 1 13.262-3.131l-1.789.894A5 5 0 0 0 7 9zm3 5v2h4v-2z" />
</Svg>
);
export default SvgLockUnlockFill;