blob: 6b46893546888cd55f3c7cefc962221377cb63c1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
import logo from "./png/logo.png";
import { LoginIcon as Login } from "./svgs/steam.tsx";
import img1 from "./png/1.png";
import img2 from "./png/2.png";
import img3 from "./png/3.png";
import img4 from "./png/4.png";
import img5 from "./png/5.png";
import img6 from "./png/6.png";
import img7 from "./png/7.png";
import img8 from "./png/8.png";
import img9 from "./png/9.png";
import img10 from "./png/10.png";
import img11 from "./png/11.png";
import img12 from "./png/12.png";
import img13 from "./png/13.png";
import img14 from "./png/14.png";
import img15 from "./png/15.png";
import img16 from "./png/16.png";
import img17 from "./png/17.png";
import img18 from "./png/18.png";
import img19 from "./png/19.png";
import img20 from "./png/20.png";
import img21 from "./png/21.png";
export const LogoIcon = logo;
export const LoginIcon = Login;
export const SearchIcon = img1;
export const HomeIcon = img2;
export const NewsIcon = img3;
export const PortalIcon = img4;
export const FlagIcon = img5;
export const ChatIcon = img6;
export const TableIcon = img7;
export const BookIcon = img8;
export const HelpIcon = img9;
export const UserIcon = img10;
export const ExitIcon = img11;
export const DownloadIcon = img12;
export const ThreedotIcon = img13;
export const StatisticsIcon = img14;
export const TwitchIcon = img15;
export const YouTubeIcon = img16;
export const SteamIcon = img17;
export const HistoryIcon = img18;
export const SortIcon = img19;
export const UploadIcon = img20;
export const DeleteIcon = img21;
|