UNPKG

@rneui/base

Version:
10 lines (9 loc) 458 B
import { StyleProp, ViewStyle, ColorValue } from 'react-native'; import { ImageProps } from '../Image'; import { IconProps } from '../Icon'; import { InlinePressableProps, RneFunctionComponent } from '../helpers'; export declare type AccessoryProps = Partial<IconProps> & Partial<ImageProps> & InlinePressableProps & { underlayColor?: ColorValue; style?: StyleProp<ViewStyle>; }; export declare const Accessory: RneFunctionComponent<AccessoryProps>;