This repository has been archived by the owner on Apr 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathindex.js
49 lines (48 loc) · 1.88 KB
/
index.js
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
import * as TheAlert from './Alert'
export { default as Amount } from './Amount'
import * as TheBlock from './Block'
export { default as BoxSelector } from './BoxSelector'
import * as TheButton from './Button'
import * as TheChecklist from './Checklist'
import * as TheContextMenu from './ContextMenu'
import * as TheDialog from './Dialog'
export { default as Dropdown } from './Dropdown'
export { default as Field } from './Field'
export { default as Fieldset } from './Fieldset'
import * as TheIconButton from './IconButton'
import * as TheIcons from './icons'
export { default as Input } from './Input'
export { default as Label } from './Label'
export { default as Link } from './Link'
export { default as Loader } from './Loader'
import * as TheMenu from './Menu'
import * as TheParagraph from './Paragraph'
import * as ThePreview from './Preview'
export { default as ProgressBar } from './ProgressBar'
export { default as Radio } from './Radio'
import * as TheSelector from './Selector'
export { default as Subtitle } from './Subtitle'
import * as TheSwitch from './Switch'
import * as TheTemplates from './templates'
import * as TheTermsBanner from './TermsBanner'
import * as TheText from './Text'
export { default as TextLabel } from './TextLabel'
import * as TheTitle from './Title'
export { default as Tooltip } from './Tooltip'
export const Alert = TheAlert
export const Block = TheBlock
export const Button = TheButton
export const Checklist = TheChecklist
export const ContextMenu = TheContextMenu
export const Dialog = TheDialog
export const IconButton = TheIconButton
export const icons = TheIcons
export const Menu = TheMenu
export const Paragraph = TheParagraph
export const Preview = ThePreview
export const Selector = TheSelector
export const Switch = TheSwitch
export const templates = TheTemplates
export const TermsBanner = TheTermsBanner
export const Text = TheText
export const Title = TheTitle