You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
830 B

import React from 'react';
import { StyleProp, ViewStyle, ColorValue } from 'react-native';
import { ImageProps } from '../image/Image';
import { IconProps } from '../icons/Icon';
export declare type AccessoryProps = Partial<IconProps> & Partial<ImageProps> & {
underlayColor?: ColorValue;
style?: StyleProp<ViewStyle>;
};
declare const _default: React.FunctionComponent<Omit<Partial<IconProps> & Partial<ImageProps> & {
underlayColor?: ColorValue;
style?: StyleProp<ViewStyle>;
} & Partial<import("../config").ThemeProps<AccessoryProps>>, keyof import("../config").ThemeProps<T>>> | React.ForwardRefExoticComponent<Partial<IconProps> & Partial<ImageProps> & {
underlayColor?: ColorValue;
style?: StyleProp<ViewStyle>;
} & Partial<import("../config").ThemeProps<AccessoryProps>>>;
export default _default;