UNPKG

swiftui-react-native

Version:

A React Native component library inspired by SwiftUI

13 lines (12 loc) 395 B
import { NativeSyntheticEvent, StyleProp, ViewStyle } from 'react-native'; import { NativeModifiersProp } from '../../utils/modifiers'; export type NativeSpacerProps = { modifiers?: NativeModifiersProp; style?: StyleProp<ViewStyle>; onEvent?: (e: NativeSyntheticEvent<{ [key: string]: any; }>) => void; }; export type SpacerProps = { style?: StyleProp<ViewStyle>; };