diff --git a/typings/components/Avatar.d.ts b/typings/components/Avatar.d.ts index 38e23699b6..04555f286a 100644 --- a/typings/components/Avatar.d.ts +++ b/typings/components/Avatar.d.ts @@ -16,7 +16,7 @@ export interface ImageProps { source: ImageSourcePropType; size?: number; style?: any; - them?: ThemeShape; + theme?: ThemeShape; } export declare class Image extends React.Component {} @@ -30,3 +30,9 @@ export interface TextProps { } export declare class Text extends React.Component {} + +export declare class Avatar { + static Icon: Icon; + static Image: Image; + static Text: Text; +} diff --git a/typings/components/Card.d.ts b/typings/components/Card.d.ts index a11684d6fd..11e815fd21 100644 --- a/typings/components/Card.d.ts +++ b/typings/components/Card.d.ts @@ -1,7 +1,6 @@ import * as React from 'react'; import { ImageProps, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native'; -import { StyledProps } from 'types/styled-components'; import { ThemeShape } from '../types'; diff --git a/typings/components/ProgressBar.d.ts b/typings/components/ProgressBar.d.ts index 4a9ae3f081..9b22cf2d72 100644 --- a/typings/components/ProgressBar.d.ts +++ b/typings/components/ProgressBar.d.ts @@ -3,6 +3,8 @@ import { ThemeShape } from '../types'; export interface ProgressBarProps { progress: number; + animating?: boolean; + indeterminate?: boolean; color?: string; style?: any; theme?: ThemeShape;