UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

10 lines (9 loc) 904 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFaceId(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: "M9.25 4.75h-.5a4 4 0 00-4 4v.5M9.25 19.25h-.5a4 4 0 01-4-4v-.5M14.75 4.75h.5a4 4 0 014 4v.5M14.75 19.25h.5a4 4 0 004-4v-.5" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", d: "M10.5 10a.5.5 0 11-1 0 .5.5 0 011 0zM14.5 10a.5.5 0 11-1 0 .5.5 0 011 0z" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M8.75 12.75s.25 2.5 3.25 2.5 3.25-2.5 3.25-2.5" }))); } export default SvgFaceId;