blob: c956ca9bcfb6b670e4f069ec104951e2be0db721 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script lang="ts">
import RookIcon from "./icons/RookIcon.svelte";
export let color: "white" | "black";
</script>
<header>
<RookIcon color={color === "black" ? "white" : "black"} />
</header>
<style>
header {
padding: 5rem;
box-sizing: border-box;
position: absolute;
width: 100%;
}
</style>
|