@rneui/base
Version:
Cross Platform React Native UI Toolkit
10 lines (9 loc) • 458 B
TypeScript
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>;