UNPKG

react-native-unicons

Version:
9 lines (8 loc) 395 B
import * as React from 'react'; import Svg, { Path } from 'react-native-svg'; function SvgTriangle(props) { return (<Svg viewBox="0 0 24 24" width={24} height={24} {...props}> <Path d="M21.87 19.29l-9-15.58a1 1 0 00-1.74 0l-9 15.58a1 1 0 000 1 1 1 0 00.87.5h18a1 1 0 00.87-.5 1 1 0 000-1zm-17.14-.5L12 6.21l7.27 12.58z" fill="currentColor"/> </Svg>); } export default SvgTriangle;