import React from 'react'; import Icon from '../../base/icons/components/Icon'; import BaseTheme from '../../base/ui/components/BaseTheme'; import { INACTIVE_TAB_COLOR } from '../constants'; interface IProps { /** * Is the tab focused? */ focused?: boolean; /** * The ImageSource to be rendered as image. */ src: Function; /** * The component's external style. */ style?: Object; } const TabIcon = ({ focused, src, style }: IProps) => ( ); export default TabIcon;