// @flow import * as React from 'react'; import {View} from "react-native"; import type {ViewStyle} from "react-native/Libraries/StyleSheet/StyleSheet"; type Props = { style?: ViewStyle, size: number, color: string, } export default class SpeechArrow extends React.Component { render() { return ( ); } }