// @flow import * as React from 'react'; import {View} from 'react-native'; import type {ViewStyle} from 'react-native/Libraries/StyleSheet/StyleSheet'; type PropsType = { style?: ViewStyle | null, size: number, color: string, }; export default class SpeechArrow extends React.Component { static defaultProps = { style: null, }; shouldComponentUpdate(): boolean { return false; } render(): React.Node { const {props} = this; return ( ); } }