-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.ts
More file actions
49 lines (36 loc) · 1.36 KB
/
index.ts
File metadata and controls
49 lines (36 loc) · 1.36 KB
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
49
/*
* Components include:
* ArrowLink
* Button (The normal button)
* Branding (Icons used for branding purposes)
* IconTitle (Heading preceded by an icon)
* SocialButton (Round Button with only an Icon as content and refering to external link)
* Spacer (A stylized line spacer)
* Typography (All text components)
* Container (All special div components)
* */
export { default as Button } from "./Button";
export * from "./Button";
export { default as ArrowLink } from "./ArrowLink";
export * from "./ArrowLink";
export { default as Logo } from "./Branding";
export * from "./Branding";
export { default as IconTitle } from "./IconTitle";
export * from "./IconTitle";
export { default as SocialButton } from "./SocialButton";
export * from "./SocialButton";
export { default as Spacer } from "./Spacer";
export * from "./Spacer";
export * from "./Typography";
export { default as Container } from "./Container";
export * from "./Container";
export { default as PhoneScreen } from "./PhoneScreen";
export * from "./PhoneScreen";
export { default as LaptopScreen } from "./LaptopScreen";
export * from "./LaptopScreen";
export { default as UserPicture } from "./UserPictures";
export * from "./UserPictures";
export { default as TextBox } from "./TextBox";
export * from "./TextBox";
export { default as TextBalloon } from "./TextBalloon";
export * from "./TextBalloon";