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/next/pages/features/icons.tsx
Views: 687
1
/* Show all our icons.
2
3
See frontend/components/iconfont.cn/README.md for how to add anything from
4
the massive https://www.iconfont.cn/?lang=us
5
*/
6
7
import IconSelect from "@cocalc/frontend/components/icon-select";
8
import Head from "components/landing/head";
9
10
export default function Icons() {
11
return (
12
<div style={{ margin: "60px" }}>
13
<Head title={"CoCalc Icons"} />
14
<h1>CoCalc Icons</h1>
15
<IconSelect style={{ fontSize: "36pt" }} />
16
</div>
17
);
18
}
19
20