mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
13 lines
260 B
Svelte
13 lines
260 B
Svelte
<script lang="ts">
|
|
export let width: number = null;
|
|
</script>
|
|
|
|
<div
|
|
style={width ? `--p-col-width:${width?.toString()}` : ''}
|
|
class="table-thead-col"
|
|
role="columnheader">
|
|
<span class="eyebrow-heading-3">
|
|
<slot />
|
|
</span>
|
|
</div>
|