UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 492 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgFlag(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: "M5.75 19.25v-6m0 0v-7.5S8.5 3.5 12 5.75s6.25 0 6.25 0v7.5s-2.75 2.25-6.25 0-6.25 0-6.25 0z" }))); } export default SvgFlag;