CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/frontend/art.ts
Views: 687
1
/*
2
* This file is part of CoCalc: Copyright © 2020 Sagemath, Inc.
3
* License: MS-RSL – see LICENSE.md for details
4
*/
5
6
// @ts-ignore
7
import APP_ICON from "@cocalc/assets/cocalc-icon.svg";
8
// @ts-ignore
9
import APP_ICON_WHITE from "@cocalc/assets/cocalc-icon-white.svg";
10
// @ts-ignore
11
import APP_LOGO from "@cocalc/assets/cocalc-logo.svg";
12
// @ts-ignore
13
import APP_LOGO_WHITE from "@cocalc/assets/cocalc-icon-white-transparent.svg";
14
// @ts-ignore
15
import APP_LOGO_NAME from "@cocalc/assets/cocalc-font-black.svg";
16
// @ts-ignore
17
import APP_LOGO_NAME_WHITE from "@cocalc/assets/cocalc-font-white.svg";
18
19
export {
20
APP_ICON,
21
APP_ICON_WHITE,
22
APP_LOGO,
23
APP_LOGO_WHITE,
24
APP_LOGO_NAME,
25
APP_LOGO_NAME_WHITE,
26
};
27
28