iconic-icons-rn
Version:
Iconic icons for React Native
9 lines (8 loc) • 687 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgFolderMinus(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-5.5a2 2 0 01-2-2v-9.5h12.5a2 2 0 012 2v2.5" }),
React.createElement(Path, { stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 1.5, d: "M13.5 7.5l-.931-1.708a2 2 0 00-1.756-1.042H6.75a2 2 0 00-2 2V11M19.25 17h-3.5" })));
}
export default SvgFolderMinus;