iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 625 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgLock(props) {
return (React.createElement(Svg, { width: 24, height: 24, fill: "none", viewBox: "0 0 24 24", color: "white", ...props },
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M5.75 11.75a1 1 0 011-1h10.5a1 1 0 011 1v5.5a2 2 0 01-2 2h-8.5a2 2 0 01-2-2v-5.5zM7.75 10.5v-.157c0-1.562-.094-3.302.996-4.42C9.368 5.288 10.374 4.75 12 4.75c1.626 0 2.632.537 3.254 1.174 1.09 1.117.996 2.857.996 4.419v.157" })));
}
export default SvgLock;