/** * Created by rouge on 11/09/2019. * Converted to Functional component. on 21/09/2021 */ import React from 'react'; import { StyleSheet, View } from 'react-native'; export const defaultEmptyDotSize = 3; const EmptyDot: React.FC<{ sizeRatio: number; }> = (props) => { return ( ); }; const styles = StyleSheet.create({ base: { backgroundColor: 'white', opacity: 0.0, }, }); export default EmptyDot;