UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 633 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgKey(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: "M15 13.25a4.25 4.25 0 10-4.154-3.346L4.75 16v3.25H8l.75-.75v-1.75h1.75l1.25-1.25v-1.75h1.75l.596-.596c.291.063.594.096.904.096z" }), React.createElement(Path, { stroke: "currentColor", d: "M16.5 8a.5.5 0 11-1 0 .5.5 0 011 0z" }))); } export default SvgKey;