mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
1import React from 'react'
2import {GestureResponderEvent, View} from 'react-native'
3import {IconProp} from '@fortawesome/fontawesome-svg-core'
4
5type OnPress = ((event: GestureResponderEvent) => void) | undefined
6export const FAB = (_opts: {icon: IconProp; onPress: OnPress}) => {
7 return <View />
8}