iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 646 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFileMinus(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: "M12.25 19.25h-4.5a2 2 0 01-2-2V6.75a2 2 0 012-2H14L18.25 9v4.25M19.25 17.25h-3.5" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M18 9.25h-4.25V5" })));
}
export default SvgFileMinus;