UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

9 lines (8 loc) 654 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFilePlus(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: "M11.25 19.25h-3.5a2 2 0 01-2-2V6.75a2 2 0 012-2H14L18.25 9v2.25M17 14.75v4.5M19.25 17h-4.5" }), React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M18 9.25h-4.25V5" }))); } export default SvgFilePlus;