mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
10 lines
270 B
Svelte
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>
|