UNPKG

iconic-icons-rn

Version:

Iconic icons for React Native

8 lines (7 loc) 549 B
import * as React from "react"; import Svg, { Path } from "react-native-svg"; function SvgTriangle(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: "M4.969 16.354l5.236-10.497c.737-1.472 2.834-1.472 3.57 0l5.264 10.497c.665 1.33-.3 2.896-1.785 2.896h-10.5c-1.486 0-2.45-1.567-1.785-2.896z" }))); } export default SvgTriangle;