UNPKG

259 BTypeScriptView Raw
1import React from 'react';
2import { StyleProp, ViewStyle } from 'react-native';
3declare type TriangleProps = {
4 style?: StyleProp<ViewStyle>;
5 isDown?: boolean;
6};
7declare const Triangle: React.FunctionComponent<TriangleProps>;
8export default Triangle;