30 lines
No EOL
767 B
HTML
30 lines
No EOL
767 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Web Component Demo</title>
|
|
<script type="module" src="./src/status-indicator.ts"></script>
|
|
</head>
|
|
<body>
|
|
<status-indicator status="positive">
|
|
All systems operational
|
|
</status-indicator>
|
|
<br />
|
|
<status-indicator status="negative">
|
|
Something's wrong
|
|
</status-indicator>
|
|
<br />
|
|
<status-indicator status="active">
|
|
It's just fine; carry on
|
|
</status-indicator>
|
|
<br />
|
|
<status-indicator>
|
|
Nothing matters
|
|
</status-indicator>
|
|
<br />
|
|
<status-indicator status="intermediary">
|
|
Slow down...
|
|
</status-indicator>
|
|
</body>
|
|
</html> |