-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathindex.js
64 lines (62 loc) · 1.25 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// import './scss/main.scss'
import Button from './components/Button.svelte'
import Collapse from './components/Collapse.svelte'
import Dialog from './components/Dialog'
import Field from './components/Field.svelte'
import Icon from './components/Icon.svelte'
import Input from './components/Input.svelte'
import Message from './components/Message.svelte'
import Modal, {ModalCard} from './components/Modal'
import Notification from './components/Notification'
import Progress from './components/Progress.svelte'
import Select from './components/Select.svelte'
import Snackbar from './components/Snackbar'
import Switch from './components/Switch.svelte'
import { Tabs, Tab } from './components/Tabs'
import Toast from './components/Toast'
import Tooltip from './components/Tooltip.svelte'
import { Tag, Taglist } from './components/Tag'
export {
Button,
Collapse,
Dialog,
Field,
Icon,
Input,
Message,
Notification,
Progress,
Modal,
ModalCard,
Select,
Snackbar,
Switch,
Tabs,
Tab,
Tag,
Taglist,
Toast,
Tooltip,
}
export const Svelma = {
Button,
Collapse,
Dialog,
Icon,
Input,
Field,
Message,
Modal,
ModalCard,
Notification,
Progress,
Select,
Snackbar,
Switch,
Tabs,
Tab,
Tag,
Taglist,
Toast,
Tooltip,
}