iconic-icons-rn
Version:
Iconic icons for React Native
8 lines (7 loc) • 504 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
function SvgBank(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: "M18.25 11.5v7.75m-12.5 0V11.5m4 7.75V11.5m4.5 7.75V11.5M12 4.75l7.25 6.5H4.75L12 4.75zM4.75 19.25h14.5" })));
}
export default SvgBank;