Update compose prompts for web

This commit is contained in:
Paul Frazee 2023-01-26 23:04:38 -06:00
parent cd96c94d3a
commit e6b63e3f53
5 changed files with 77 additions and 6 deletions

View file

@ -0,0 +1,8 @@
import React from 'react'
import {GestureResponderEvent, View} from 'react-native'
import {IconProp} from '@fortawesome/fontawesome-svg-core'
type OnPress = ((event: GestureResponderEvent) => void) | undefined
export const FAB = (_opts: {icon: IconProp; onPress: OnPress}) => {
return <View />
}