UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 593 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgLockUnlocked(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-.657c0-1.228-.05-2.544.674-3.537C9 5.517 10.057 4.75 12 4.75c2 0 3.25 1.5 3.25 1.5" }))); } export default SvgLockUnlocked;