21 lines
560 B
TypeScript
21 lines
560 B
TypeScript
import React from 'react';
|
|
import { ImageStyle, ImageSourcePropType } from 'react-native';
|
|
export interface IconProps {
|
|
style?: ImageStyle;
|
|
type?: string;
|
|
size?: number | string | null | undefined;
|
|
tintColor?: string | null | undefined;
|
|
source?: ImageSourcePropType;
|
|
}
|
|
export declare class Icon extends React.Component<IconProps, any> {
|
|
static displayName: string;
|
|
static defaultProps: {
|
|
type: string;
|
|
size: number;
|
|
style: {};
|
|
tintColor: any;
|
|
source: any;
|
|
};
|
|
render(): JSX.Element;
|
|
}
|