UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 683 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgMouse(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 11.25v-3.5a3 3 0 013-3h1.75a3 3 0 013 3v9.5a2 2 0 002 2h.5" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M4.75 10.75a3 3 0 013-3h2.5a3 3 0 013 3v5.5a3 3 0 01-3 3h-2.5a3 3 0 01-3-3v-5.5z" }))); } export default SvgMouse;