Skip to content

Instantly share code, notes, and snippets.

@gHashTag
Created November 3, 2021 07:10
Show Gist options
  • Save gHashTag/43a45670dccbf72cb72757389cff51f8 to your computer and use it in GitHub Desktop.
Save gHashTag/43a45670dccbf72cb72757389cff51f8 to your computer and use it in GitHub Desktop.
import { StyleProp, ViewStyle, TextStyle } from 'react-native'
type sizeType = 'xLarge' | 'large' | 'medium' | 'small'
interface AvatarT {
loading: boolean
avatar: string
onPress?: () => void
size?: sizeType
viewStyle?: StyleProp<ViewStyle>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment