sinProject-Inc/talk

View on GitHub
src/lib/components/tab.svelte

Summary

Maintainability
Test Coverage
<script lang="ts">
    export let active = false
</script>

<div class:active class="flex h-full items-center">
    <slot />
</div>

<style lang="postcss">
    .active {
        @apply border-b border-secondary pt-[1px] dark:border-secondary-dark;
    }
</style>