-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_kor.html
38 lines (32 loc) · 1.51 KB
/
test_kor.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<script src="
https://cdn.jsdelivr.net/npm/@kor-ui/[email protected]/index.min.js
"></script>
<link href="
https://cdn.jsdelivr.net/npm/@kor-ui/[email protected]/kor-styles.min.css
" rel="stylesheet">
</head>
<body>
<kor-tabs style="width: fit-content;">
<kor-tab-item label="Disabled" disabled></kor-tab-item>
<kor-tab-item label="Idle"></kor-tab-item>
<kor-tab-item label="Active" active></kor-tab-item>
</kor-tabs>
<kor-button label="Primary"></kor-button>
<kor-button label="Secondary" color="secondary"></kor-button>
<kor-button label="Tertiary" color="tertiary"></kor-button>
<kor-slider label="Label and value 0" value="0"></kor-slider>
<kor-switch-item label="Label" icon="train" active="true"></kor-switch-item>
<kor-input style="width: 320px;" label="Label" value="Value" icon="email" type="text"></kor-input>
<kor-textarea style="width: 320px;" label="Label" value="Value" rows="2"></kor-textarea>
<kor-toggle label="Label"></kor-toggle>
<kor-modal label="Label" icon="train" width="320px" visible="true" flex-direction="Column">fdsqfds</kor-modal>
<kor-radio-button label="Small label"></kor-radio-button>
<kor-radio-button
label="This is a quite long label that gets truncated because of its length"
></kor-radio-button>
<kor-spinner></kor-spinner>
</body>
</html>