<script>
import DelayedCountdown from './DelayedCountdown.svelte'
const handleEnd = () => {
console.log("Countdown timer is over");
};
</script>
<DelayedCountdown delay={5} countdown={20} on:end={handleEnd} />
<style>
:global(body) {
color: #3c3c3c;
background: #d7f5f7;
}
:global(.visually-hidden:not(:focus):not(:active)) {
clip: rect(0 0 0 0);
clip-path: inset(50%);
height: 1px;
width: 1px;
overflow: hidden;
position: absolute;
white-space: nowrap;
}
</style>