diff --git a/src/HUD/MatchBar/TeamLogo.tsx b/src/HUD/MatchBar/TeamLogo.tsx index 89cc88d..b3d4ef8 100644 --- a/src/HUD/MatchBar/TeamLogo.tsx +++ b/src/HUD/MatchBar/TeamLogo.tsx @@ -1,6 +1,7 @@ import { Team } from 'csgogsi'; import * as I from '../../API/types'; import { apiUrl } from './../../API'; +import { LogoCT, LogoT } from './../../assets/Icons'; const TeamLogo = ({team, height, width }: { team?: Team | I.Team | null, height?: number, width?: number}) => { if(!team) return null; @@ -13,10 +14,10 @@ const TeamLogo = ({team, height, width }: { team?: Team | I.Team | null, height? } return (
- { logo && id ? {'Team : ''} + {'Team
); } -export default TeamLogo; \ No newline at end of file +export default TeamLogo;