Skip to content

Commit

Permalink
chore: update type
Browse files Browse the repository at this point in the history
  • Loading branch information
wangshunnn committed Nov 26, 2024
1 parent 9513052 commit daa7891
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import { StyleSheet, View, ViewStyle } from 'react-native'
import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native'

type OverlayProps = {
itemHeight: number
overlayItemStyle?: ViewStyle
overlayContainerStyle?: ViewStyle
overlayItemStyle?: StyleProp<ViewStyle>
overlayContainerStyle?: StyleProp<ViewStyle>
}

const Overlay = ({ itemHeight, overlayItemStyle, overlayContainerStyle }: OverlayProps) => {
Expand Down

0 comments on commit daa7891

Please sign in to comment.