18 lines
253 B
Svelte
18 lines
253 B
Svelte
<script>
|
|
export let value;
|
|
</script>
|
|
|
|
<div>
|
|
{value}
|
|
</div>
|
|
|
|
<style>
|
|
div {
|
|
/* max-width: 128px; */
|
|
max-height: 24px;
|
|
text-overflow: ellipsis;
|
|
/* white-space: nowrap; */
|
|
overflow: hidden;
|
|
}
|
|
</style>
|