Files
console/src/lib/elements/table/cellText.svelte
T
2022-10-11 10:43:50 +02:00

10 lines
270 B
Svelte

<script lang="ts">
import { Trim } from '$lib/components';
export let title: string;
export let showOverflow = false;
</script>
<div class="table-col " class:u-overflow-visible={showOverflow} data-title={title} role="cell">
<Trim><slot /></Trim>
</div>