/// import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { IconPropsType } from './PropsType'; export interface IconProps extends IconPropsType { style?: StyleProp; size?: 'xxs' | 'xs' | 'sm' | 'md' | 'lg' | number; } export default class Icon extends React.Component { static defaultProps: { size: string; color: string; }; render(): JSX.Element; }