This commit is contained in:
DS Boyce
2026-07-31 11:46:54 -07:00
parent 9093ee0819
commit 5038a7cce1
+2 -2
View File
@@ -1,4 +1,4 @@
import {type ComponentProps, type JSX} from 'react'
import {type ComponentProps} from 'react'
import {
type GestureResponderEvent,
type Pressable,
@@ -18,7 +18,7 @@ import {IS_WEB} from '#/env'
export interface FABProps extends ComponentProps<typeof Pressable> {
testID?: string
icon: JSX.Element
icon: React.JSX.Element
style?: StyleProp<ViewStyle>
}