import React from 'react' import {GestureResponderEvent, StyleSheet, TouchableOpacity} from 'react-native' import LinearGradient from 'react-native-linear-gradient' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {IconProp} from '@fortawesome/fontawesome-svg-core' import {colors, gradients} from '../../lib/styles' import * as zIndex from '../../lib/z-index' type OnPress = ((event: GestureResponderEvent) => void) | undefined export function FAB({icon, onPress}: {icon: IconProp; onPress: OnPress}) { return ( ) } const styles = StyleSheet.create({ outer: { position: 'absolute', zIndex: zIndex.FAB, right: 20, bottom: 10, width: 50, height: 50, borderRadius: 25, shadowColor: '#000', shadowOpacity: 0.3, shadowOffset: {width: 0, height: 1}, }, inner: { width: 50, height: 50, borderRadius: 25, justifyContent: 'center', alignItems: 'center', }, icon: {}, })